@mittwald/api-client 4.195.0 → 4.197.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 +2 -2
- package/dist/esm/generated/v2/client.js +4 -4
- package/dist/esm/generated/v2/descriptors.js +12 -12
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +16 -13
- package/dist/types/generated/v2/client.d.ts +127 -117
- package/dist/types/generated/v2/descriptors.d.ts +5 -5
- package/dist/types/generated/v2/types.d.ts +143 -128
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -298,10 +298,10 @@ const buildMailApi = (baseClient) => ({
|
|
|
298
298
|
getDeliveryBox: new ApiCallAsyncResourceFactory(descriptors.mailGetDeliveryBox, baseClient.mail.getDeliveryBox).getApiResource,
|
|
299
299
|
/** Get a MailAddress. */
|
|
300
300
|
getMailAddress: new ApiCallAsyncResourceFactory(descriptors.mailGetMailAddress, baseClient.mail.getMailAddress).getApiResource,
|
|
301
|
-
/** List mail settings of a Project. */
|
|
302
|
-
listProjectMailSettings: new ApiCallAsyncResourceFactory(descriptors.mailListProjectMailSettings, baseClient.mail.listProjectMailSettings).getApiResource,
|
|
303
301
|
/** List backups belonging to a MailAddress. */
|
|
304
302
|
listBackupsForMailAddress: new ApiCallAsyncResourceFactory(descriptors.mailListBackupsForMailAddress, baseClient.mail.listBackupsForMailAddress).getApiResource,
|
|
303
|
+
/** List mail settings of a Project. */
|
|
304
|
+
listProjectMailSettings: new ApiCallAsyncResourceFactory(descriptors.mailListProjectMailSettings, baseClient.mail.listProjectMailSettings).getApiResource,
|
|
305
305
|
});
|
|
306
306
|
const buildMiscApi = (baseClient) => ({
|
|
307
307
|
/** Get a list of currently active llm models. */
|
|
@@ -575,8 +575,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
575
575
|
getMailAddress: this.requestFunctionFactory(descriptors.mailGetMailAddress),
|
|
576
576
|
/** Delete a MailAddress. */
|
|
577
577
|
deleteMailAddress: this.requestFunctionFactory(descriptors.mailDeleteMailAddress),
|
|
578
|
+
/** List backups belonging to a MailAddress. */
|
|
579
|
+
listBackupsForMailAddress: this.requestFunctionFactory(descriptors.mailListBackupsForMailAddress),
|
|
578
580
|
/** List mail settings of a Project. */
|
|
579
581
|
listProjectMailSettings: this.requestFunctionFactory(descriptors.mailListProjectMailSettings),
|
|
582
|
+
/** Recover emails for a MailAddress from a backup. */
|
|
583
|
+
recoverMailAddressEmails: this.requestFunctionFactory(descriptors.mailRecoverMailAddressEmails),
|
|
580
584
|
/** Update the description of a DeliveryBox. */
|
|
581
585
|
updateDeliveryBoxDescription: this.requestFunctionFactory(descriptors.mailUpdateDeliveryBoxDescription),
|
|
582
586
|
/** Update the password of a DeliveryBox. */
|
|
@@ -587,10 +591,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
587
591
|
updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
|
|
588
592
|
/** Update a mail setting of a Project. */
|
|
589
593
|
updateProjectMailSetting: this.requestFunctionFactory(descriptors.mailUpdateProjectMailSetting),
|
|
590
|
-
/** List backups belonging to a MailAddress. */
|
|
591
|
-
listBackupsForMailAddress: this.requestFunctionFactory(descriptors.mailListBackupsForMailAddress),
|
|
592
|
-
/** Recover emails for a MailAddress from a backup. */
|
|
593
|
-
recoverMailAddressEmails: this.requestFunctionFactory(descriptors.mailRecoverMailAddressEmails),
|
|
594
594
|
};
|
|
595
595
|
/** The notification API allows you to manage your notifications. */
|
|
596
596
|
notification = {
|
|
@@ -1612,12 +1612,24 @@ export const mailDeleteMailAddress = {
|
|
|
1612
1612
|
method: "DELETE",
|
|
1613
1613
|
operationId: "mail-delete-mail-address",
|
|
1614
1614
|
};
|
|
1615
|
+
/** List backups belonging to a MailAddress. */
|
|
1616
|
+
export const mailListBackupsForMailAddress = {
|
|
1617
|
+
path: "/v2/mail-addresses/{mailAddressId}/backups",
|
|
1618
|
+
method: "GET",
|
|
1619
|
+
operationId: "mail-list-backups-for-mail-address",
|
|
1620
|
+
};
|
|
1615
1621
|
/** List mail settings of a Project. */
|
|
1616
1622
|
export const mailListProjectMailSettings = {
|
|
1617
1623
|
path: "/v2/projects/{projectId}/mail-settings",
|
|
1618
1624
|
method: "GET",
|
|
1619
1625
|
operationId: "mail-list-project-mail-settings",
|
|
1620
1626
|
};
|
|
1627
|
+
/** Recover emails for a MailAddress from a backup. */
|
|
1628
|
+
export const mailRecoverMailAddressEmails = {
|
|
1629
|
+
path: "/v2/mail-addresses/{mailAddressId}/backups/{backupId}/recovery",
|
|
1630
|
+
method: "POST",
|
|
1631
|
+
operationId: "mail-recover-mail-address-emails",
|
|
1632
|
+
};
|
|
1621
1633
|
/** Update the description of a DeliveryBox. */
|
|
1622
1634
|
export const mailUpdateDeliveryBoxDescription = {
|
|
1623
1635
|
path: "/v2/delivery-boxes/{deliveryBoxId}/description",
|
|
@@ -2482,15 +2494,3 @@ export const verificationVerifyCompany = {
|
|
|
2482
2494
|
method: "POST",
|
|
2483
2495
|
operationId: "verification-verify-company",
|
|
2484
2496
|
};
|
|
2485
|
-
/** List backups belonging to a MailAddress. */
|
|
2486
|
-
export const mailListBackupsForMailAddress = {
|
|
2487
|
-
path: "/v2/mail-addresses/{mailAddressId}/backups",
|
|
2488
|
-
method: "GET",
|
|
2489
|
-
operationId: "mail-list-backups-for-mail-address",
|
|
2490
|
-
};
|
|
2491
|
-
/** Recover emails for a MailAddress from a backup. */
|
|
2492
|
-
export const mailRecoverMailAddressEmails = {
|
|
2493
|
-
path: "/v2/mail-addresses/{mailAddressId}/backups/{backupId}/recovery",
|
|
2494
|
-
method: "POST",
|
|
2495
|
-
operationId: "mail-recover-mail-address-emails",
|
|
2496
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.196.0';
|
|
@@ -30,17 +30,17 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
30
30
|
disabled: boolean;
|
|
31
31
|
id: string;
|
|
32
32
|
installationPath: string;
|
|
33
|
-
linkedDatabases
|
|
33
|
+
linkedDatabases: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[];
|
|
34
34
|
lockedBy?: {
|
|
35
35
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
|
|
36
36
|
} | undefined;
|
|
37
|
-
projectId
|
|
37
|
+
projectId: string;
|
|
38
38
|
screenshotId?: string | undefined;
|
|
39
39
|
screenshotRef?: string | undefined;
|
|
40
40
|
shortId: string;
|
|
41
|
-
systemSoftware
|
|
42
|
-
updatePolicy
|
|
43
|
-
userInputs
|
|
41
|
+
systemSoftware: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
42
|
+
updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
43
|
+
userInputs: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
|
|
44
44
|
}>;
|
|
45
45
|
/** Get an AppVersion. */
|
|
46
46
|
getAppversion: (conf: {
|
|
@@ -52,6 +52,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
52
52
|
} | undefined;
|
|
53
53
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
54
54
|
appId: string;
|
|
55
|
+
backendPathTemplate?: string | undefined;
|
|
55
56
|
breakingNote?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppBreakingNote | undefined;
|
|
56
57
|
databases?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDatabaseDependency[] | undefined;
|
|
57
58
|
docRoot: string;
|
|
@@ -2314,6 +2315,14 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2314
2315
|
receivingDisabled: boolean;
|
|
2315
2316
|
updatedAt: string;
|
|
2316
2317
|
}>;
|
|
2318
|
+
/** List backups belonging to a MailAddress. */
|
|
2319
|
+
listBackupsForMailAddress: (conf: {
|
|
2320
|
+
mailAddressId: string;
|
|
2321
|
+
headers?: {
|
|
2322
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2323
|
+
"x-access-token"?: string | undefined;
|
|
2324
|
+
} | undefined;
|
|
2325
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[]>;
|
|
2317
2326
|
/** List mail settings of a Project. */
|
|
2318
2327
|
listProjectMailSettings: (conf: {
|
|
2319
2328
|
projectId: string;
|
|
@@ -2326,14 +2335,6 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2326
2335
|
projectId: string;
|
|
2327
2336
|
whitelist: string[];
|
|
2328
2337
|
}>;
|
|
2329
|
-
/** List backups belonging to a MailAddress. */
|
|
2330
|
-
listBackupsForMailAddress: (conf: {
|
|
2331
|
-
mailAddressId: string;
|
|
2332
|
-
headers?: {
|
|
2333
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2334
|
-
"x-access-token"?: string | undefined;
|
|
2335
|
-
} | undefined;
|
|
2336
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[]>;
|
|
2337
2338
|
};
|
|
2338
2339
|
declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
|
|
2339
2340
|
/** Get a list of currently active llm models. */
|
|
@@ -2760,6 +2761,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2760
2761
|
statisticsBaseDomain?: string | undefined;
|
|
2761
2762
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
2762
2763
|
statusSetAt: string;
|
|
2764
|
+
supportedFeatures: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
2763
2765
|
webStorageUsageInBytes: number;
|
|
2764
2766
|
webStorageUsageInBytesSetAt: string;
|
|
2765
2767
|
}>;
|
|
@@ -2924,6 +2926,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2924
2926
|
shortId: string;
|
|
2925
2927
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
2926
2928
|
statusSetAt: string;
|
|
2929
|
+
supportedFeatures: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
2927
2930
|
webStorageUsageInBytes: number;
|
|
2928
2931
|
webStorageUsageInBytesSetAt: string;
|
|
2929
2932
|
}[]>;
|
|
@@ -120,17 +120,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
120
120
|
disabled: boolean;
|
|
121
121
|
id: string;
|
|
122
122
|
installationPath: string;
|
|
123
|
-
linkedDatabases
|
|
123
|
+
linkedDatabases: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[];
|
|
124
124
|
lockedBy?: {
|
|
125
125
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
|
|
126
126
|
} | undefined;
|
|
127
|
-
projectId
|
|
127
|
+
projectId: string;
|
|
128
128
|
screenshotId?: string | undefined;
|
|
129
129
|
screenshotRef?: string | undefined;
|
|
130
130
|
shortId: string;
|
|
131
|
-
systemSoftware
|
|
132
|
-
updatePolicy
|
|
133
|
-
userInputs
|
|
131
|
+
systemSoftware: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
132
|
+
updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
133
|
+
userInputs: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
|
|
134
134
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
135
135
|
[x: string]: unknown;
|
|
136
136
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -158,17 +158,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
158
158
|
disabled: boolean;
|
|
159
159
|
id: string;
|
|
160
160
|
installationPath: string;
|
|
161
|
-
linkedDatabases
|
|
161
|
+
linkedDatabases: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[];
|
|
162
162
|
lockedBy?: {
|
|
163
163
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
|
|
164
164
|
} | undefined;
|
|
165
|
-
projectId
|
|
165
|
+
projectId: string;
|
|
166
166
|
screenshotId?: string | undefined;
|
|
167
167
|
screenshotRef?: string | undefined;
|
|
168
168
|
shortId: string;
|
|
169
|
-
systemSoftware
|
|
170
|
-
updatePolicy
|
|
171
|
-
userInputs
|
|
169
|
+
systemSoftware: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
170
|
+
updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
171
|
+
userInputs: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
|
|
172
172
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
173
173
|
[x: string]: unknown;
|
|
174
174
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -319,6 +319,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
319
319
|
}>;
|
|
320
320
|
}, import("@mittwald/api-client-commons").Response<{
|
|
321
321
|
appId: string;
|
|
322
|
+
backendPathTemplate?: string | undefined;
|
|
322
323
|
breakingNote?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppBreakingNote | undefined;
|
|
323
324
|
databases?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDatabaseDependency[] | undefined;
|
|
324
325
|
docRoot: string;
|
|
@@ -351,6 +352,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
351
352
|
}>;
|
|
352
353
|
}, import("@mittwald/api-client-commons").Response<{
|
|
353
354
|
appId: string;
|
|
355
|
+
backendPathTemplate?: string | undefined;
|
|
354
356
|
breakingNote?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppBreakingNote | undefined;
|
|
355
357
|
databases?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDatabaseDependency[] | undefined;
|
|
356
358
|
docRoot: string;
|
|
@@ -8972,6 +8974,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8972
8974
|
[x: string]: unknown;
|
|
8973
8975
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8974
8976
|
[x: string]: unknown;
|
|
8977
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8978
|
+
[x: string]: unknown;
|
|
8975
8979
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
|
|
8976
8980
|
data: {
|
|
8977
8981
|
consentedScopes: string[];
|
|
@@ -9002,6 +9006,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9002
9006
|
[x: string]: unknown;
|
|
9003
9007
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9004
9008
|
[x: string]: unknown;
|
|
9009
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9010
|
+
[x: string]: unknown;
|
|
9005
9011
|
}, 429, "application/json">>>;
|
|
9006
9012
|
/** Remove an asset of an extension. */
|
|
9007
9013
|
extensionRemoveAsset: (request: {
|
|
@@ -17658,6 +17664,62 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17658
17664
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17659
17665
|
[x: string]: unknown;
|
|
17660
17666
|
}, 503, "application/json">>>;
|
|
17667
|
+
/** List backups belonging to a MailAddress. */
|
|
17668
|
+
listBackupsForMailAddress: (request: {
|
|
17669
|
+
mailAddressId: string;
|
|
17670
|
+
headers?: {
|
|
17671
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17672
|
+
"x-access-token"?: string | undefined;
|
|
17673
|
+
} | undefined;
|
|
17674
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17675
|
+
headers?: Partial<{
|
|
17676
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17677
|
+
}>;
|
|
17678
|
+
} & {
|
|
17679
|
+
pathParameters: {
|
|
17680
|
+
mailAddressId: string;
|
|
17681
|
+
};
|
|
17682
|
+
} & {
|
|
17683
|
+
headers: {
|
|
17684
|
+
"x-access-token"?: string | undefined;
|
|
17685
|
+
} & Partial<{
|
|
17686
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17687
|
+
}>;
|
|
17688
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17689
|
+
[x: string]: unknown;
|
|
17690
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17691
|
+
[x: string]: unknown;
|
|
17692
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17693
|
+
[x: string]: unknown;
|
|
17694
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17695
|
+
[x: string]: unknown;
|
|
17696
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17697
|
+
[x: string]: unknown;
|
|
17698
|
+
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17699
|
+
headers?: Partial<{
|
|
17700
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17701
|
+
}>;
|
|
17702
|
+
} & {
|
|
17703
|
+
pathParameters: {
|
|
17704
|
+
mailAddressId: string;
|
|
17705
|
+
};
|
|
17706
|
+
} & {
|
|
17707
|
+
headers: {
|
|
17708
|
+
"x-access-token"?: string | undefined;
|
|
17709
|
+
} & Partial<{
|
|
17710
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17711
|
+
}>;
|
|
17712
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17713
|
+
[x: string]: unknown;
|
|
17714
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17715
|
+
[x: string]: unknown;
|
|
17716
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17717
|
+
[x: string]: unknown;
|
|
17718
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17719
|
+
[x: string]: unknown;
|
|
17720
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17721
|
+
[x: string]: unknown;
|
|
17722
|
+
}, 500, "application/json">>>;
|
|
17661
17723
|
/** List mail settings of a Project. */
|
|
17662
17724
|
listProjectMailSettings: (request: {
|
|
17663
17725
|
projectId: string;
|
|
@@ -17726,6 +17788,57 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17726
17788
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17727
17789
|
[x: string]: unknown;
|
|
17728
17790
|
}, 503, "application/json">>>;
|
|
17791
|
+
/** Recover emails for a MailAddress from a backup. */
|
|
17792
|
+
recoverMailAddressEmails: (request: {
|
|
17793
|
+
mailAddressId: string;
|
|
17794
|
+
backupId: string;
|
|
17795
|
+
headers?: {
|
|
17796
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17797
|
+
"x-access-token"?: string | undefined;
|
|
17798
|
+
} | undefined;
|
|
17799
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17800
|
+
headers?: Partial<{
|
|
17801
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17802
|
+
}>;
|
|
17803
|
+
} & {
|
|
17804
|
+
pathParameters: {
|
|
17805
|
+
mailAddressId: string;
|
|
17806
|
+
backupId: string;
|
|
17807
|
+
};
|
|
17808
|
+
} & {
|
|
17809
|
+
headers: {
|
|
17810
|
+
"x-access-token"?: string | undefined;
|
|
17811
|
+
} & Partial<{
|
|
17812
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17813
|
+
}>;
|
|
17814
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17815
|
+
[x: string]: unknown;
|
|
17816
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17817
|
+
[x: string]: unknown;
|
|
17818
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17819
|
+
[x: string]: unknown;
|
|
17820
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17821
|
+
headers?: Partial<{
|
|
17822
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17823
|
+
}>;
|
|
17824
|
+
} & {
|
|
17825
|
+
pathParameters: {
|
|
17826
|
+
mailAddressId: string;
|
|
17827
|
+
backupId: string;
|
|
17828
|
+
};
|
|
17829
|
+
} & {
|
|
17830
|
+
headers: {
|
|
17831
|
+
"x-access-token"?: string | undefined;
|
|
17832
|
+
} & Partial<{
|
|
17833
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17834
|
+
}>;
|
|
17835
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17836
|
+
[x: string]: unknown;
|
|
17837
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17838
|
+
[x: string]: unknown;
|
|
17839
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17840
|
+
[x: string]: unknown;
|
|
17841
|
+
}, 429, "application/json">>>;
|
|
17729
17842
|
/** Update the description of a DeliveryBox. */
|
|
17730
17843
|
updateDeliveryBoxDescription: (request: {
|
|
17731
17844
|
data: {
|
|
@@ -18102,113 +18215,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18102
18215
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18103
18216
|
[x: string]: unknown;
|
|
18104
18217
|
}, 503, "application/json">>>;
|
|
18105
|
-
/** List backups belonging to a MailAddress. */
|
|
18106
|
-
listBackupsForMailAddress: (request: {
|
|
18107
|
-
mailAddressId: string;
|
|
18108
|
-
headers?: {
|
|
18109
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18110
|
-
"x-access-token"?: string | undefined;
|
|
18111
|
-
} | undefined;
|
|
18112
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18113
|
-
headers?: Partial<{
|
|
18114
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18115
|
-
}>;
|
|
18116
|
-
} & {
|
|
18117
|
-
pathParameters: {
|
|
18118
|
-
mailAddressId: string;
|
|
18119
|
-
};
|
|
18120
|
-
} & {
|
|
18121
|
-
headers: {
|
|
18122
|
-
"x-access-token"?: string | undefined;
|
|
18123
|
-
} & Partial<{
|
|
18124
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18125
|
-
}>;
|
|
18126
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18127
|
-
[x: string]: unknown;
|
|
18128
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18129
|
-
[x: string]: unknown;
|
|
18130
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18131
|
-
[x: string]: unknown;
|
|
18132
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18133
|
-
[x: string]: unknown;
|
|
18134
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18135
|
-
[x: string]: unknown;
|
|
18136
|
-
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18137
|
-
headers?: Partial<{
|
|
18138
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18139
|
-
}>;
|
|
18140
|
-
} & {
|
|
18141
|
-
pathParameters: {
|
|
18142
|
-
mailAddressId: string;
|
|
18143
|
-
};
|
|
18144
|
-
} & {
|
|
18145
|
-
headers: {
|
|
18146
|
-
"x-access-token"?: string | undefined;
|
|
18147
|
-
} & Partial<{
|
|
18148
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18149
|
-
}>;
|
|
18150
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18151
|
-
[x: string]: unknown;
|
|
18152
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18153
|
-
[x: string]: unknown;
|
|
18154
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18155
|
-
[x: string]: unknown;
|
|
18156
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18157
|
-
[x: string]: unknown;
|
|
18158
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18159
|
-
[x: string]: unknown;
|
|
18160
|
-
}, 500, "application/json">>>;
|
|
18161
|
-
/** Recover emails for a MailAddress from a backup. */
|
|
18162
|
-
recoverMailAddressEmails: (request: {
|
|
18163
|
-
mailAddressId: string;
|
|
18164
|
-
backupId: string;
|
|
18165
|
-
headers?: {
|
|
18166
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18167
|
-
"x-access-token"?: string | undefined;
|
|
18168
|
-
} | undefined;
|
|
18169
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18170
|
-
headers?: Partial<{
|
|
18171
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18172
|
-
}>;
|
|
18173
|
-
} & {
|
|
18174
|
-
pathParameters: {
|
|
18175
|
-
mailAddressId: string;
|
|
18176
|
-
backupId: string;
|
|
18177
|
-
};
|
|
18178
|
-
} & {
|
|
18179
|
-
headers: {
|
|
18180
|
-
"x-access-token"?: string | undefined;
|
|
18181
|
-
} & Partial<{
|
|
18182
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18183
|
-
}>;
|
|
18184
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18185
|
-
[x: string]: unknown;
|
|
18186
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18187
|
-
[x: string]: unknown;
|
|
18188
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18189
|
-
[x: string]: unknown;
|
|
18190
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18191
|
-
headers?: Partial<{
|
|
18192
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18193
|
-
}>;
|
|
18194
|
-
} & {
|
|
18195
|
-
pathParameters: {
|
|
18196
|
-
mailAddressId: string;
|
|
18197
|
-
backupId: string;
|
|
18198
|
-
};
|
|
18199
|
-
} & {
|
|
18200
|
-
headers: {
|
|
18201
|
-
"x-access-token"?: string | undefined;
|
|
18202
|
-
} & Partial<{
|
|
18203
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18204
|
-
}>;
|
|
18205
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18206
|
-
[x: string]: unknown;
|
|
18207
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18208
|
-
[x: string]: unknown;
|
|
18209
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18210
|
-
[x: string]: unknown;
|
|
18211
|
-
}, 429, "application/json">>>;
|
|
18212
18218
|
};
|
|
18213
18219
|
/** The notification API allows you to manage your notifications. */
|
|
18214
18220
|
readonly notification: {
|
|
@@ -24099,6 +24105,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24099
24105
|
statisticsBaseDomain?: string | undefined;
|
|
24100
24106
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
24101
24107
|
statusSetAt: string;
|
|
24108
|
+
supportedFeatures: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
24102
24109
|
webStorageUsageInBytes: number;
|
|
24103
24110
|
webStorageUsageInBytesSetAt: string;
|
|
24104
24111
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -24147,6 +24154,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24147
24154
|
statisticsBaseDomain?: string | undefined;
|
|
24148
24155
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
24149
24156
|
statusSetAt: string;
|
|
24157
|
+
supportedFeatures: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
24150
24158
|
webStorageUsageInBytes: number;
|
|
24151
24159
|
webStorageUsageInBytesSetAt: string;
|
|
24152
24160
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -24924,6 +24932,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24924
24932
|
shortId: string;
|
|
24925
24933
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
24926
24934
|
statusSetAt: string;
|
|
24935
|
+
supportedFeatures: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
24927
24936
|
webStorageUsageInBytes: number;
|
|
24928
24937
|
webStorageUsageInBytesSetAt: string;
|
|
24929
24938
|
}[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -24975,6 +24984,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24975
24984
|
shortId: string;
|
|
24976
24985
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
24977
24986
|
statusSetAt: string;
|
|
24987
|
+
supportedFeatures: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
24978
24988
|
webStorageUsageInBytes: number;
|
|
24979
24989
|
webStorageUsageInBytesSetAt: string;
|
|
24980
24990
|
}[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -450,7 +450,7 @@ export declare const extensionRegisterExtension: OpenAPIOperation<RequestType<Si
|
|
|
450
450
|
/** List Scopes. */
|
|
451
451
|
export declare const extensionListScopes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Scopes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Scopes.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Scopes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Scopes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Scopes.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Scopes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
452
452
|
/** Order Extension with saved payment method */
|
|
453
|
-
export declare const extensionOrderExtension: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
453
|
+
export declare const extensionOrderExtension: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdOrder.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
454
454
|
/** Remove an asset of an extension. */
|
|
455
455
|
export declare const extensionRemoveAsset: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
456
456
|
/** Add a logo to an extension. */
|
|
@@ -541,8 +541,12 @@ export declare const mailDeleteDeliveryBox: OpenAPIOperation<RequestType<Simplif
|
|
|
541
541
|
export declare const mailGetMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
542
542
|
/** Delete a MailAddress. */
|
|
543
543
|
export declare const mailDeleteMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
544
|
+
/** List backups belonging to a MailAddress. */
|
|
545
|
+
export declare const mailListBackupsForMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
544
546
|
/** List mail settings of a Project. */
|
|
545
547
|
export declare const mailListProjectMailSettings: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
548
|
+
/** Recover emails for a MailAddress from a backup. */
|
|
549
|
+
export declare const mailRecoverMailAddressEmails: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
546
550
|
/** Update the description of a DeliveryBox. */
|
|
547
551
|
export declare const mailUpdateDeliveryBoxDescription: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdDescription.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
548
552
|
/** Update the password of a DeliveryBox. */
|
|
@@ -831,7 +835,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
831
835
|
export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
832
836
|
/** Check if a company exists. */
|
|
833
837
|
export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
834
|
-
/** List backups belonging to a MailAddress. */
|
|
835
|
-
export declare const mailListBackupsForMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
836
|
-
/** Recover emails for a MailAddress from a backup. */
|
|
837
|
-
export declare const mailRecoverMailAddressEmails: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackupsBackupIdRecovery.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -1078,10 +1078,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1078
1078
|
type RequestData = InferredRequestData<typeof descriptors.mailDeleteMailAddress>;
|
|
1079
1079
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDeleteMailAddress, TStatus>;
|
|
1080
1080
|
}
|
|
1081
|
+
namespace MailListBackupsForMailAddress {
|
|
1082
|
+
type RequestData = InferredRequestData<typeof descriptors.mailListBackupsForMailAddress>;
|
|
1083
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListBackupsForMailAddress, TStatus>;
|
|
1084
|
+
}
|
|
1081
1085
|
namespace MailListProjectMailSettings {
|
|
1082
1086
|
type RequestData = InferredRequestData<typeof descriptors.mailListProjectMailSettings>;
|
|
1083
1087
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListProjectMailSettings, TStatus>;
|
|
1084
1088
|
}
|
|
1089
|
+
namespace MailRecoverMailAddressEmails {
|
|
1090
|
+
type RequestData = InferredRequestData<typeof descriptors.mailRecoverMailAddressEmails>;
|
|
1091
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRecoverMailAddressEmails, TStatus>;
|
|
1092
|
+
}
|
|
1085
1093
|
namespace MailUpdateDeliveryBoxDescription {
|
|
1086
1094
|
type RequestData = InferredRequestData<typeof descriptors.mailUpdateDeliveryBoxDescription>;
|
|
1087
1095
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateDeliveryBoxDescription, TStatus>;
|
|
@@ -1658,14 +1666,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1658
1666
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1659
1667
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1660
1668
|
}
|
|
1661
|
-
namespace MailListBackupsForMailAddress {
|
|
1662
|
-
type RequestData = InferredRequestData<typeof descriptors.mailListBackupsForMailAddress>;
|
|
1663
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListBackupsForMailAddress, TStatus>;
|
|
1664
|
-
}
|
|
1665
|
-
namespace MailRecoverMailAddressEmails {
|
|
1666
|
-
type RequestData = InferredRequestData<typeof descriptors.mailRecoverMailAddressEmails>;
|
|
1667
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRecoverMailAddressEmails, TStatus>;
|
|
1668
|
-
}
|
|
1669
1669
|
}
|
|
1670
1670
|
namespace Components {
|
|
1671
1671
|
namespace Schemas {
|
|
@@ -1721,17 +1721,17 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1721
1721
|
disabled: boolean;
|
|
1722
1722
|
id: string;
|
|
1723
1723
|
installationPath: string;
|
|
1724
|
-
linkedDatabases
|
|
1724
|
+
linkedDatabases: MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[];
|
|
1725
1725
|
lockedBy?: {
|
|
1726
1726
|
[k: string]: MittwaldAPIV2.Components.Schemas.AppLockPurpose;
|
|
1727
1727
|
};
|
|
1728
|
-
projectId
|
|
1728
|
+
projectId: string;
|
|
1729
1729
|
screenshotId?: string;
|
|
1730
1730
|
screenshotRef?: string;
|
|
1731
1731
|
shortId: string;
|
|
1732
|
-
systemSoftware
|
|
1733
|
-
updatePolicy
|
|
1734
|
-
userInputs
|
|
1732
|
+
systemSoftware: MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
1733
|
+
updatePolicy: MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
1734
|
+
userInputs: MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
|
|
1735
1735
|
}
|
|
1736
1736
|
/**
|
|
1737
1737
|
* The AppInstallationLifecycle can be used to express a specific point in the AppInstallation Lifecycle, e.g. while installing a new AppInstallation.
|
|
@@ -1742,6 +1742,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1742
1742
|
*/
|
|
1743
1743
|
interface AppAppVersion {
|
|
1744
1744
|
appId: string;
|
|
1745
|
+
backendPathTemplate?: string;
|
|
1745
1746
|
breakingNote?: MittwaldAPIV2.Components.Schemas.AppBreakingNote;
|
|
1746
1747
|
databases?: MittwaldAPIV2.Components.Schemas.AppDatabaseDependency[];
|
|
1747
1748
|
docRoot: string;
|
|
@@ -2165,6 +2166,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2165
2166
|
*/
|
|
2166
2167
|
username: string;
|
|
2167
2168
|
}
|
|
2169
|
+
type ContainerServiceSortOrder = "descriptionAsc" | "descriptionDesc";
|
|
2168
2170
|
interface ContainerStackResponse {
|
|
2169
2171
|
description: string;
|
|
2170
2172
|
disabled: boolean;
|
|
@@ -3853,6 +3855,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3853
3855
|
address: string;
|
|
3854
3856
|
forwardAddresses: string[];
|
|
3855
3857
|
}
|
|
3858
|
+
interface MailMailAddressBackup {
|
|
3859
|
+
name: string;
|
|
3860
|
+
}
|
|
3856
3861
|
interface MailMailAddress {
|
|
3857
3862
|
address: string;
|
|
3858
3863
|
autoResponder: {
|
|
@@ -4599,6 +4604,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4599
4604
|
name: string;
|
|
4600
4605
|
}
|
|
4601
4606
|
type ProjectDisableReason = "maliciousCode" | "illegalContent" | "maliciousConduct" | "suspended";
|
|
4607
|
+
type ProjectProjectFeature = "redis" | "node" | "container";
|
|
4602
4608
|
type ProjectProjectStatus = "pending" | "ready" | "preparingForVolumeMigration" | "migratingVolume" | "error" | "disabled";
|
|
4603
4609
|
interface ProjectProject {
|
|
4604
4610
|
backupStorageUsageInBytes: number;
|
|
@@ -4619,6 +4625,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4619
4625
|
disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
4620
4626
|
disabledAt?: string;
|
|
4621
4627
|
enabled: boolean;
|
|
4628
|
+
/**
|
|
4629
|
+
* @deprecated
|
|
4630
|
+
* Deprecated by 'supportedFeatures'.
|
|
4631
|
+
*/
|
|
4622
4632
|
features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
4623
4633
|
id: string;
|
|
4624
4634
|
imageRefId?: string;
|
|
@@ -4636,6 +4646,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4636
4646
|
statisticsBaseDomain?: string;
|
|
4637
4647
|
status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
4638
4648
|
statusSetAt: string;
|
|
4649
|
+
supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
4639
4650
|
webStorageUsageInBytes: number;
|
|
4640
4651
|
webStorageUsageInBytesSetAt: string;
|
|
4641
4652
|
}
|
|
@@ -5118,12 +5129,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5118
5129
|
result: MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
|
|
5119
5130
|
}
|
|
5120
5131
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5121
|
-
interface MailMailAddressBackup {
|
|
5122
|
-
name: string;
|
|
5123
|
-
}
|
|
5124
|
-
type ContainerServiceSortOrder = "descriptionAsc" | "descriptionDesc";
|
|
5125
5132
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5126
|
-
type ProjectProjectFeature = "redis" | "node" | "container";
|
|
5127
5133
|
interface CommonsAddress {
|
|
5128
5134
|
street: string;
|
|
5129
5135
|
houseNumber: string;
|
|
@@ -14356,9 +14362,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
14356
14362
|
};
|
|
14357
14363
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
14358
14364
|
type Query = {
|
|
14359
|
-
/**
|
|
14360
|
-
* Only for .de Domains.
|
|
14361
|
-
*/
|
|
14362
14365
|
transit?: boolean;
|
|
14363
14366
|
};
|
|
14364
14367
|
}
|
|
@@ -16449,6 +16452,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16449
16452
|
}
|
|
16450
16453
|
}
|
|
16451
16454
|
}
|
|
16455
|
+
namespace $412 {
|
|
16456
|
+
namespace Content {
|
|
16457
|
+
interface ApplicationJson {
|
|
16458
|
+
[k: string]: unknown;
|
|
16459
|
+
}
|
|
16460
|
+
}
|
|
16461
|
+
}
|
|
16452
16462
|
namespace $429 {
|
|
16453
16463
|
namespace Content {
|
|
16454
16464
|
interface ApplicationJson {
|
|
@@ -19128,6 +19138,66 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19128
19138
|
}
|
|
19129
19139
|
}
|
|
19130
19140
|
}
|
|
19141
|
+
namespace V2MailAddressesMailAddressIdBackups {
|
|
19142
|
+
namespace Get {
|
|
19143
|
+
namespace Parameters {
|
|
19144
|
+
type Path = {
|
|
19145
|
+
mailAddressId: string;
|
|
19146
|
+
};
|
|
19147
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
19148
|
+
type Query = {};
|
|
19149
|
+
}
|
|
19150
|
+
namespace Responses {
|
|
19151
|
+
namespace $200 {
|
|
19152
|
+
namespace Content {
|
|
19153
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[];
|
|
19154
|
+
}
|
|
19155
|
+
}
|
|
19156
|
+
namespace $400 {
|
|
19157
|
+
namespace Content {
|
|
19158
|
+
interface ApplicationJson {
|
|
19159
|
+
[k: string]: unknown;
|
|
19160
|
+
}
|
|
19161
|
+
}
|
|
19162
|
+
}
|
|
19163
|
+
namespace $403 {
|
|
19164
|
+
namespace Content {
|
|
19165
|
+
interface ApplicationJson {
|
|
19166
|
+
[k: string]: unknown;
|
|
19167
|
+
}
|
|
19168
|
+
}
|
|
19169
|
+
}
|
|
19170
|
+
namespace $404 {
|
|
19171
|
+
namespace Content {
|
|
19172
|
+
interface ApplicationJson {
|
|
19173
|
+
[k: string]: unknown;
|
|
19174
|
+
}
|
|
19175
|
+
}
|
|
19176
|
+
}
|
|
19177
|
+
namespace $429 {
|
|
19178
|
+
namespace Content {
|
|
19179
|
+
interface ApplicationJson {
|
|
19180
|
+
[k: string]: unknown;
|
|
19181
|
+
}
|
|
19182
|
+
}
|
|
19183
|
+
}
|
|
19184
|
+
namespace $500 {
|
|
19185
|
+
namespace Content {
|
|
19186
|
+
interface ApplicationJson {
|
|
19187
|
+
[k: string]: unknown;
|
|
19188
|
+
}
|
|
19189
|
+
}
|
|
19190
|
+
}
|
|
19191
|
+
namespace Default {
|
|
19192
|
+
namespace Content {
|
|
19193
|
+
interface ApplicationJson {
|
|
19194
|
+
[k: string]: unknown;
|
|
19195
|
+
}
|
|
19196
|
+
}
|
|
19197
|
+
}
|
|
19198
|
+
}
|
|
19199
|
+
}
|
|
19200
|
+
}
|
|
19131
19201
|
namespace V2ProjectsProjectIdMailsettings { }
|
|
19132
19202
|
namespace V2ProjectsProjectIdMailSettings {
|
|
19133
19203
|
namespace Get {
|
|
@@ -19200,6 +19270,53 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19200
19270
|
}
|
|
19201
19271
|
}
|
|
19202
19272
|
}
|
|
19273
|
+
namespace V2MailAddressesMailAddressIdBackupsBackupIdRecovery {
|
|
19274
|
+
namespace Post {
|
|
19275
|
+
namespace Parameters {
|
|
19276
|
+
type Path = {
|
|
19277
|
+
mailAddressId: string;
|
|
19278
|
+
backupId: string;
|
|
19279
|
+
};
|
|
19280
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
19281
|
+
type Query = {};
|
|
19282
|
+
}
|
|
19283
|
+
namespace Responses {
|
|
19284
|
+
namespace $204 {
|
|
19285
|
+
namespace Content {
|
|
19286
|
+
type Empty = unknown;
|
|
19287
|
+
}
|
|
19288
|
+
}
|
|
19289
|
+
namespace $400 {
|
|
19290
|
+
namespace Content {
|
|
19291
|
+
interface ApplicationJson {
|
|
19292
|
+
[k: string]: unknown;
|
|
19293
|
+
}
|
|
19294
|
+
}
|
|
19295
|
+
}
|
|
19296
|
+
namespace $404 {
|
|
19297
|
+
namespace Content {
|
|
19298
|
+
interface ApplicationJson {
|
|
19299
|
+
[k: string]: unknown;
|
|
19300
|
+
}
|
|
19301
|
+
}
|
|
19302
|
+
}
|
|
19303
|
+
namespace $429 {
|
|
19304
|
+
namespace Content {
|
|
19305
|
+
interface ApplicationJson {
|
|
19306
|
+
[k: string]: unknown;
|
|
19307
|
+
}
|
|
19308
|
+
}
|
|
19309
|
+
}
|
|
19310
|
+
namespace Default {
|
|
19311
|
+
namespace Content {
|
|
19312
|
+
interface ApplicationJson {
|
|
19313
|
+
[k: string]: unknown;
|
|
19314
|
+
}
|
|
19315
|
+
}
|
|
19316
|
+
}
|
|
19317
|
+
}
|
|
19318
|
+
}
|
|
19319
|
+
}
|
|
19203
19320
|
namespace V2DeliveryBoxesDeliveryBoxIdDescription {
|
|
19204
19321
|
namespace Patch {
|
|
19205
19322
|
namespace Parameters {
|
|
@@ -22099,6 +22216,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22099
22216
|
disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
22100
22217
|
disabledAt?: string;
|
|
22101
22218
|
enabled: boolean;
|
|
22219
|
+
/**
|
|
22220
|
+
* @deprecated
|
|
22221
|
+
* Deprecated by 'supportedFeatures'.
|
|
22222
|
+
*/
|
|
22102
22223
|
features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
22103
22224
|
id: string;
|
|
22104
22225
|
imageRefId?: string;
|
|
@@ -22113,6 +22234,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22113
22234
|
shortId: string;
|
|
22114
22235
|
status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
22115
22236
|
statusSetAt: string;
|
|
22237
|
+
supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
22116
22238
|
webStorageUsageInBytes: number;
|
|
22117
22239
|
webStorageUsageInBytesSetAt: string;
|
|
22118
22240
|
}[];
|
|
@@ -26140,112 +26262,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26140
26262
|
}
|
|
26141
26263
|
}
|
|
26142
26264
|
}
|
|
26143
|
-
namespace V2MailAddressesMailAddressIdBackups {
|
|
26144
|
-
namespace Get {
|
|
26145
|
-
namespace Parameters {
|
|
26146
|
-
type Path = {
|
|
26147
|
-
mailAddressId: string;
|
|
26148
|
-
};
|
|
26149
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
26150
|
-
type Query = {};
|
|
26151
|
-
}
|
|
26152
|
-
namespace Responses {
|
|
26153
|
-
namespace $200 {
|
|
26154
|
-
namespace Content {
|
|
26155
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[];
|
|
26156
|
-
}
|
|
26157
|
-
}
|
|
26158
|
-
namespace $400 {
|
|
26159
|
-
namespace Content {
|
|
26160
|
-
interface ApplicationJson {
|
|
26161
|
-
[k: string]: unknown;
|
|
26162
|
-
}
|
|
26163
|
-
}
|
|
26164
|
-
}
|
|
26165
|
-
namespace $403 {
|
|
26166
|
-
namespace Content {
|
|
26167
|
-
interface ApplicationJson {
|
|
26168
|
-
[k: string]: unknown;
|
|
26169
|
-
}
|
|
26170
|
-
}
|
|
26171
|
-
}
|
|
26172
|
-
namespace $404 {
|
|
26173
|
-
namespace Content {
|
|
26174
|
-
interface ApplicationJson {
|
|
26175
|
-
[k: string]: unknown;
|
|
26176
|
-
}
|
|
26177
|
-
}
|
|
26178
|
-
}
|
|
26179
|
-
namespace $429 {
|
|
26180
|
-
namespace Content {
|
|
26181
|
-
interface ApplicationJson {
|
|
26182
|
-
[k: string]: unknown;
|
|
26183
|
-
}
|
|
26184
|
-
}
|
|
26185
|
-
}
|
|
26186
|
-
namespace $500 {
|
|
26187
|
-
namespace Content {
|
|
26188
|
-
interface ApplicationJson {
|
|
26189
|
-
[k: string]: unknown;
|
|
26190
|
-
}
|
|
26191
|
-
}
|
|
26192
|
-
}
|
|
26193
|
-
namespace Default {
|
|
26194
|
-
namespace Content {
|
|
26195
|
-
interface ApplicationJson {
|
|
26196
|
-
[k: string]: unknown;
|
|
26197
|
-
}
|
|
26198
|
-
}
|
|
26199
|
-
}
|
|
26200
|
-
}
|
|
26201
|
-
}
|
|
26202
|
-
}
|
|
26203
|
-
namespace V2MailAddressesMailAddressIdBackupsBackupIdRecovery {
|
|
26204
|
-
namespace Post {
|
|
26205
|
-
namespace Parameters {
|
|
26206
|
-
type Path = {
|
|
26207
|
-
mailAddressId: string;
|
|
26208
|
-
backupId: string;
|
|
26209
|
-
};
|
|
26210
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
26211
|
-
type Query = {};
|
|
26212
|
-
}
|
|
26213
|
-
namespace Responses {
|
|
26214
|
-
namespace $204 {
|
|
26215
|
-
namespace Content {
|
|
26216
|
-
type Empty = unknown;
|
|
26217
|
-
}
|
|
26218
|
-
}
|
|
26219
|
-
namespace $400 {
|
|
26220
|
-
namespace Content {
|
|
26221
|
-
interface ApplicationJson {
|
|
26222
|
-
[k: string]: unknown;
|
|
26223
|
-
}
|
|
26224
|
-
}
|
|
26225
|
-
}
|
|
26226
|
-
namespace $404 {
|
|
26227
|
-
namespace Content {
|
|
26228
|
-
interface ApplicationJson {
|
|
26229
|
-
[k: string]: unknown;
|
|
26230
|
-
}
|
|
26231
|
-
}
|
|
26232
|
-
}
|
|
26233
|
-
namespace $429 {
|
|
26234
|
-
namespace Content {
|
|
26235
|
-
interface ApplicationJson {
|
|
26236
|
-
[k: string]: unknown;
|
|
26237
|
-
}
|
|
26238
|
-
}
|
|
26239
|
-
}
|
|
26240
|
-
namespace Default {
|
|
26241
|
-
namespace Content {
|
|
26242
|
-
interface ApplicationJson {
|
|
26243
|
-
[k: string]: unknown;
|
|
26244
|
-
}
|
|
26245
|
-
}
|
|
26246
|
-
}
|
|
26247
|
-
}
|
|
26248
|
-
}
|
|
26249
|
-
}
|
|
26250
26265
|
}
|
|
26251
26266
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.196.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.197.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "1ef64e61a75952d2fb1060b61c31c13c639c1ae6"
|
|
84
84
|
}
|