@mittwald/api-client 1.0.0-alpha.16 → 1.0.0-alpha.17
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/README.md +2 -2
- package/dist/generated/v2/client.d.ts +55 -4
- package/dist/generated/v2/client.js +7 -1
- package/dist/generated/v2/descriptors.d.ts +15 -7
- package/dist/generated/v2/descriptors.js +27 -3
- package/dist/generated/v2/types.d.ts +177 -3
- package/dist/v2.js +1 -1
- package/dist-cjs/generated/v2/client.d.ts +5995 -0
- package/dist-cjs/generated/v2/client.js +712 -0
- package/dist-cjs/generated/v2/descriptors.d.ts +637 -0
- package/dist-cjs/generated/v2/descriptors.js +1905 -0
- package/dist-cjs/index.d.ts +1 -0
- package/dist-cjs/index.js +2 -0
- package/dist-cjs/v2.d.ts +10 -0
- package/dist-cjs/v2.js +58 -0
- package/package.json +19 -13
|
@@ -0,0 +1,637 @@
|
|
|
1
|
+
/// <reference types="./types.d.ts" />
|
|
2
|
+
import { Simplify } from "@mittwald/api-client-commons/types";
|
|
3
|
+
import { Request } from "@mittwald/api-client-commons/types";
|
|
4
|
+
import { Response } from "@mittwald/api-client-commons/types";
|
|
5
|
+
import { OpenAPIOperation } from "@mittwald/api-client-commons/types";
|
|
6
|
+
/** execute a runtime concerning action on a specific `AppInstallation` */
|
|
7
|
+
export declare const appExecuteAction: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdActionsAction.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdActionsAction.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdActionsAction.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdActionsAction.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdActionsAction.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
8
|
+
/** get a specific `App` */
|
|
9
|
+
export declare const appGetApp: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppsAppId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppsAppId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2AppsAppId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppsAppId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppsAppId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
10
|
+
/** get a specific `AppInstallation` */
|
|
11
|
+
export declare const appGetAppinstallation: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
12
|
+
/** start uninstallation process for a specific `AppInstallation` */
|
|
13
|
+
export declare const appUninstallAppinstallation: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
14
|
+
/** patch desired properties of a specific `AppInstallation` */
|
|
15
|
+
export declare const appPatchAppinstallation: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Patch.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
16
|
+
/** get a specific `AppVersion` */
|
|
17
|
+
export declare const appGetAppversion: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
18
|
+
/** get a specific `SystemSoftware` */
|
|
19
|
+
export declare const appGetSystemsoftware: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwaresSystemSoftwareId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwaresSystemSoftwareId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SystemsoftwaresSystemSoftwareId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SystemsoftwaresSystemSoftwareId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2SystemsoftwaresSystemSoftwareId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
20
|
+
/** get a specific `SystemSoftwareVersion` */
|
|
21
|
+
export declare const appGetSystemsoftwareversion: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
22
|
+
/** create linkage between an `AppInstallation` and a `Database` */
|
|
23
|
+
export declare const appLinkDatabase: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabases.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabases.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabases.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabases.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabases.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
24
|
+
/** get all `AppInstallations` inside a specific `Project` */
|
|
25
|
+
export declare const appListAppinstallations: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
26
|
+
/** request a new `AppInstallation` */
|
|
27
|
+
export declare const appRequestAppinstallation: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
28
|
+
/** get all available `Apps` */
|
|
29
|
+
export declare const appListApps: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Apps.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Apps.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Apps.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2Apps.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
30
|
+
/** get all `AppVersions` of a specific `App` */
|
|
31
|
+
export declare const appListAppversions: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersions.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2AppsAppIdVersions.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppsAppIdVersions.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
32
|
+
/** get all available `SystemSoftware` */
|
|
33
|
+
export declare const appListSystemsoftwares: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
34
|
+
/** get all available `SystemSoftwareVersions` of a specific `SystemSoftware` */
|
|
35
|
+
export declare const appListSystemsoftwareversions: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
36
|
+
/** get runtime status of a specific `AppInstallation` */
|
|
37
|
+
export declare const appRetrieveStatus: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
38
|
+
/** create linkage between an `AppInstallation` and `DatabaseUsers` */
|
|
39
|
+
export declare const appSetDatabaseUsers: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
40
|
+
/** remove linkage between an `AppInstallation` and a `Database` */
|
|
41
|
+
export declare const appUnlinkDatabase: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
42
|
+
/** trigger `AppInstallation` to retrieve current installation status based on an appJob */
|
|
43
|
+
export declare const appUpdateStatus: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsUpdateStatus.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsUpdateStatus.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsUpdateStatus.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsUpdateStatus.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsUpdateStatus.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
44
|
+
/** Get an Article. */
|
|
45
|
+
export declare const articleGetArticle: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
46
|
+
/** List Articles. */
|
|
47
|
+
export declare const articleListArticles: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Articles.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Articles.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Articles.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2Articles.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
48
|
+
/** Export a ProjectBackup for download. */
|
|
49
|
+
export declare const backupCreateProjectBackupExport: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExport.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExport.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExport.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExport.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExport.Post.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExport.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExport.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
50
|
+
/** Delete a ProjectBackupExport. */
|
|
51
|
+
export declare const backupDeleteProjectBackupExport: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExport.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExport.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExport.Delete.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExport.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExport.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
52
|
+
/** List BackupSchedules belonging to a given Project. */
|
|
53
|
+
export declare const backupListProjectBackupSchedules: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackupSchedules.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackupSchedules.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackupSchedules.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackupSchedules.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
54
|
+
/** Create a BackupSchedule for a Project. */
|
|
55
|
+
export declare const backupCreateProjectBackupSchedule: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackupSchedules.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackupSchedules.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackupSchedules.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackupSchedules.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackupSchedules.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackupSchedules.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackupSchedules.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
56
|
+
/** List Backups for a given Project. */
|
|
57
|
+
export declare const backupListProjectBackups: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackups.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackups.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackups.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackups.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
58
|
+
/** Create a Backup of a Project. */
|
|
59
|
+
export declare const backupCreateProjectBackup: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackups.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackups.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackups.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackups.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackups.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackups.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdBackups.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
60
|
+
/** Get a ProjectBackupSchedule. */
|
|
61
|
+
export declare const backupGetProjectBackupSchedule: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Get.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
62
|
+
/** Delete a ProjectBackupSchedule. */
|
|
63
|
+
export declare const backupDeleteProjectBackupSchedule: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Delete.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
64
|
+
/** Update a ProjectBackupSchedule. */
|
|
65
|
+
export declare const backupUpdateProjectBackupSchedule: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Patch.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Patch.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupSchedulesProjectBackupScheduleId.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
66
|
+
/** Get a ProjectBackup. */
|
|
67
|
+
export declare const backupGetProjectBackup: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
68
|
+
/** Delete a ProjectBackup. */
|
|
69
|
+
export declare const backupDeleteProjectBackup: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
70
|
+
/** Change the description of a ProjectBackup. */
|
|
71
|
+
export declare const backupUpdateProjectBackupDescription: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
72
|
+
/** Schedule the Termination of a ContractItem. */
|
|
73
|
+
export declare const contractTerminateContractItem: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
74
|
+
/** Cancel the Termination for the referred ContractItem. */
|
|
75
|
+
export declare const contractCancelContractItemTermination: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Delete.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTermination.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
76
|
+
/** Cancel the TariffChange for the referred ContractItem. */
|
|
77
|
+
export declare const contractCancelContractTariffChange: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTariffChange.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTariffChange.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTariffChange.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTariffChange.Delete.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTariffChange.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTariffChange.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdTariffChange.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
78
|
+
/** Schedule the Termination of a Contract. */
|
|
79
|
+
export declare const contractTerminateContract: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
80
|
+
/** Cancel the Termination for the referred Contract. */
|
|
81
|
+
export declare const contractCancelContractTermination: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
82
|
+
/** Return the BaseItem of the Contract with the given ID. */
|
|
83
|
+
export declare const contractGetBaseItemOfContract: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
84
|
+
/** Return the Contract for the given Domain. */
|
|
85
|
+
export declare const contractGetDetailOfContractByDomain: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
86
|
+
/** Return the Contract for the given Project. */
|
|
87
|
+
export declare const contractGetDetailOfContractByProject: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
88
|
+
/** Return the Contract for the given Server. */
|
|
89
|
+
export declare const contractGetDetailOfContractByServer: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdContract.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ServersServerIdContract.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerIdContract.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerIdContract.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerIdContract.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
90
|
+
/** Get the ContractItem with the given ID. */
|
|
91
|
+
export declare const contractGetDetailOfContractItem: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
92
|
+
/** Returns the Contract with the given ID. */
|
|
93
|
+
export declare const contractGetDetailOfContract: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
94
|
+
/** Return the next TerminationDate for the ContractItem with the given ID. */
|
|
95
|
+
export declare const contractGetNextTerminationDateForItem: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
96
|
+
/** Return a list of Contracts for the given Customer. */
|
|
97
|
+
export declare const contractListContracts: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
98
|
+
/** Get all conversation the authenticated user has created or has access to. */
|
|
99
|
+
export declare const conversationListConversations: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Conversations.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Conversations.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Conversations.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2Conversations.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
100
|
+
/** Create a conversation. */
|
|
101
|
+
export declare const conversationCreateConversation: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2Conversations.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Conversations.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Conversations.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Conversations.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2Conversations.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2Conversations.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
102
|
+
/** Get all message of the conversation. */
|
|
103
|
+
export declare const conversationListMessagesByConversation: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Get.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
104
|
+
/** Send a new message in the conversation. */
|
|
105
|
+
export declare const conversationCreateMessage: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Post.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
106
|
+
/** Get a specific conversation category. */
|
|
107
|
+
export declare const conversationGetCategory: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
108
|
+
/** Get a support conversation. */
|
|
109
|
+
export declare const conversationGetConversation: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
110
|
+
/** Update the basic properties of the conversation. */
|
|
111
|
+
export declare const conversationUpdateConversation: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
112
|
+
/** Get all conversation categories. */
|
|
113
|
+
export declare const conversationListCategories: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
114
|
+
/** Request a file upload token for the conversation. */
|
|
115
|
+
export declare const conversationRequestFileUpload: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFiles.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFiles.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFiles.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdFiles.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdFiles.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdFiles.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
116
|
+
/** Update the status of a conversation. */
|
|
117
|
+
export declare const conversationSetConversationStatus: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdStatus.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdStatus.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdStatus.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdStatus.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdStatus.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdStatus.Put.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdStatus.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdStatus.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
118
|
+
/** Update the content of the message */
|
|
119
|
+
export declare const conversationUpdateMessage: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
120
|
+
/** Abort a CronjobExecution. */
|
|
121
|
+
export declare const cronjobAbortExecution: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
122
|
+
/** List Cronjobs belonging to a Project. */
|
|
123
|
+
export declare const cronjobListCronjobs: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
124
|
+
/** Create a Cronjob. */
|
|
125
|
+
export declare const cronjobCreateCronjob: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Post.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
126
|
+
/** List CronjobExecutions belonging to a Cronjob. */
|
|
127
|
+
export declare const cronjobListExecutions: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
128
|
+
/** Trigger a Cronjob. */
|
|
129
|
+
export declare const cronjobCreateExecution: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
130
|
+
/** Get a Cronjob. */
|
|
131
|
+
export declare const cronjobGetCronjob: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
132
|
+
/** Delete a Cronjob. */
|
|
133
|
+
export declare const cronjobDeleteCronjob: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
134
|
+
/** Update a Cronjob. */
|
|
135
|
+
export declare const cronjobUpdateCronjob: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
136
|
+
/** Get a CronjobExecution. */
|
|
137
|
+
export declare const cronjobGetExecution: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
138
|
+
/** Update a Cronjob's app id. */
|
|
139
|
+
export declare const cronjobUpdateCronjobAppId: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
140
|
+
/** Accept a CustomerInvite. */
|
|
141
|
+
export declare const customerAcceptCustomerInvite: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsAccept.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsAccept.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsAccept.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsAccept.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsAccept.Post.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsAccept.Post.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsAccept.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
142
|
+
/** Get all customer categories. */
|
|
143
|
+
export declare const customerListOfCustomerCategoriesDeprecated: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Customercategories.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Customercategories.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Customercategories.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2Customercategories.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
144
|
+
/** Create a new customer category. */
|
|
145
|
+
export declare const customerCreateCategoryDeprecated: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2Customercategories.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Customercategories.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Customercategories.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Customercategories.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2Customercategories.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2Customercategories.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
146
|
+
/** Get all customer categories. */
|
|
147
|
+
export declare const customerListOfCustomerCategories: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerCategories.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerCategories.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerCategories.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerCategories.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
148
|
+
/** Create a new customer category. */
|
|
149
|
+
export declare const customerCreateCategory: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomerCategories.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerCategories.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerCategories.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerCategories.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerCategories.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerCategories.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
150
|
+
/** Create a CustomerInvite. */
|
|
151
|
+
export declare const customerCreateCustomerInvite: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomerCustomerIdInvites.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerCustomerIdInvites.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerCustomerIdInvites.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerCustomerIdInvites.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerCustomerIdInvites.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerCustomerIdInvites.Post.Responses.$409.Content.ApplicationJson, 409, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerCustomerIdInvites.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
152
|
+
/** Get all customer profiles the authenticated user has access to. */
|
|
153
|
+
export declare const customerListCustomers: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Customers.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Customers.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Customers.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2Customers.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
154
|
+
/** Create a new customer profile. */
|
|
155
|
+
export declare const customerCreateCustomer: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2Customers.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Customers.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Customers.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Customers.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2Customers.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2Customers.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
156
|
+
/** Decline a CustomerInvite. */
|
|
157
|
+
export declare const customerDeclineCustomerInvite: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsDecline.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsDecline.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsDecline.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsDecline.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
158
|
+
/** Get a customer category. */
|
|
159
|
+
export declare const customerDetailOfCustomerCategoryDeprecated: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
160
|
+
/** Update a customer category. */
|
|
161
|
+
export declare const customerUpdateCategoryDeprecated: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
162
|
+
/** Delete a customer category. */
|
|
163
|
+
export declare const customerDeleteCategoryDeprecated: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Delete.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomercategoriesCategoryId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
164
|
+
/** Get a customer category. */
|
|
165
|
+
export declare const customerGetCustomerCategory: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
166
|
+
/** Update a customer category. */
|
|
167
|
+
export declare const customerUpdateCategory: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
168
|
+
/** Delete a customer category. */
|
|
169
|
+
export declare const customerDeleteCategory: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Delete.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerCategoriesCategoryId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
170
|
+
/** Get a CustomerInvite. */
|
|
171
|
+
export declare const customerGetCustomerInvite: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerInvitesInviteId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerInvitesInviteId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerInvitesInviteId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
172
|
+
/** Delete a CustomerInvite. */
|
|
173
|
+
export declare const customerDeleteCustomerInvite: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerInvitesInviteId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
174
|
+
/** Get a CustomerMembership. */
|
|
175
|
+
export declare const customerGetCustomerMembership: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerMembershipsMembershipId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerMembershipsMembershipId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerMembershipsMembershipId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerMembershipsMembershipId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerMembershipsMembershipId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
176
|
+
/** Delete a CustomerMembership. */
|
|
177
|
+
export declare const customerDeleteCustomerMembership: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerMembershipsMembershipId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerMembershipsMembershipId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerMembershipsMembershipId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
178
|
+
/** Update a CustomerMembership. */
|
|
179
|
+
export declare const customerUpdateCustomerMembership: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomerMembershipsMembershipId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerMembershipsMembershipId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerMembershipsMembershipId.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerMembershipsMembershipId.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
180
|
+
/** Get a customer profile. */
|
|
181
|
+
export declare const customerGetCustomer: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
182
|
+
/** Update a customer profile. */
|
|
183
|
+
export declare const customerUpdateCustomer: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerId.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerId.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerId.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerId.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
184
|
+
/** Delete a customer profile. */
|
|
185
|
+
export declare const customerDeleteCustomer: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
186
|
+
/** Get a CustomerInvite by token. */
|
|
187
|
+
export declare const customerGetCustomerTokenInvite: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
188
|
+
/** Check if the customer profile has a valid contract partner configured. */
|
|
189
|
+
export declare const customerIsCustomerLegallyCompetent: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
190
|
+
/** Leave a Customer. */
|
|
191
|
+
export declare const customerLeaveCustomer: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomerCustomerIdActionsLeave.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerCustomerIdActionsLeave.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerCustomerIdActionsLeave.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerCustomerIdActionsLeave.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
192
|
+
/** List all CustomerInvites for the executing user. */
|
|
193
|
+
export declare const customerListCustomerInvites: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
194
|
+
/** List all CustomerMemberships for the executing user. */
|
|
195
|
+
export declare const customerListCustomerMemberships: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerMemberships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerMemberships.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerMemberships.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerMemberships.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerMemberships.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
196
|
+
/** List all invites for a Customer. */
|
|
197
|
+
export declare const customerListInvitesForCustomer: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvites.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvites.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvites.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvites.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvites.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
198
|
+
/** List all memberships belonging to a Customer. */
|
|
199
|
+
export declare const customerListMembershipsForCustomer: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdMemberships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdMemberships.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdMemberships.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdMemberships.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdMemberships.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
200
|
+
/** Request a new avatar upload for the customer profile. */
|
|
201
|
+
export declare const customerRequestAvatarUpload: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Post.Responses.$401.Content.ApplicationJson, 401, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Post.Responses.$500.Content.ApplicationJson, 500, "application/json">>;
|
|
202
|
+
/** Remove the avatar picture of the customer profile. */
|
|
203
|
+
export declare const customerRemoveAvatar: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$401.Content.ApplicationJson, 401, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$500.Content.ApplicationJson, 500, "application/json">>;
|
|
204
|
+
/** Resend the mail for a CustomerInvite. */
|
|
205
|
+
export declare const customerResendCustomerInviteMail: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsResend.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsResend.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsResend.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsResend.Post.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomerInvitesInviteIdActionsResend.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
206
|
+
/** List MySQLDatabases belonging to a Project. */
|
|
207
|
+
export declare const databaseListMysqlDatabases: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
208
|
+
/** Create a MySQLDatabase with an optional MySQLUser */
|
|
209
|
+
export declare const databaseCreateMysqlDatabase: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Post.Responses.$202.Content.ApplicationJson, 202, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
210
|
+
/** List MySQLUsers belonging to a database. */
|
|
211
|
+
export declare const databaseListMysqlUsers: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
212
|
+
/** Create a MySQLUser. */
|
|
213
|
+
export declare const databaseCreateMysqlUser: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
214
|
+
/** List RedisDatabases belonging to a project. */
|
|
215
|
+
export declare const databaseListRedisDatabases: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
216
|
+
/** Create a RedisDatabase. */
|
|
217
|
+
export declare const databaseCreateRedisDatabase: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
218
|
+
/** Get a MySQLDatabase. */
|
|
219
|
+
export declare const databaseGetMysqlDatabase: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Get.Responses.$500.Content.ApplicationJson, 500, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
220
|
+
/** Delete a MySQLDatabase. */
|
|
221
|
+
export declare const databaseDeleteMysqlDatabase: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Delete.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Delete.Responses.$500.Content.ApplicationJson, 500, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Delete.Responses.$503.Content.ApplicationJson, 503, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
222
|
+
/** Get a MySQLUser. */
|
|
223
|
+
export declare const databaseGetMysqlUser: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlUsersId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersId.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
224
|
+
/** Update a MySQLUser. */
|
|
225
|
+
export declare const databaseUpdateMysqlUser: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersId.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlUsersId.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersId.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersId.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
226
|
+
/** Delete a MySQLUser. */
|
|
227
|
+
export declare const databaseDeleteMysqlUser: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlUsersId.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersId.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
228
|
+
/** Get a RedisDatabase. */
|
|
229
|
+
export declare const databaseGetRedisDatabase: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2RedisDatabasesId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisDatabasesId.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisDatabasesId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisDatabasesId.Get.Responses.$500.Content.ApplicationJson, 500, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisDatabasesId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
230
|
+
/** Delete a RedisDatabase. */
|
|
231
|
+
export declare const databaseDeleteRedisDatabase: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2RedisDatabasesId.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisDatabasesId.Delete.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisDatabasesId.Delete.Responses.$500.Content.ApplicationJson, 500, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisDatabasesId.Delete.Responses.$503.Content.ApplicationJson, 503, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisDatabasesId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
232
|
+
/** Disable a MySQLUser. */
|
|
233
|
+
export declare const databaseDisableMysqlUser: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdActionsDisable.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdActionsDisable.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdActionsDisable.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlUsersIdActionsDisable.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersIdActionsDisable.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersIdActionsDisable.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
234
|
+
/** Enable a MySQLUser. */
|
|
235
|
+
export declare const databaseEnableMysqlUser: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdActionsEnable.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdActionsEnable.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdActionsEnable.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlUsersIdActionsEnable.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersIdActionsEnable.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersIdActionsEnable.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
236
|
+
/** Get a MySQLUser's PhpMyAdmin-URL. */
|
|
237
|
+
export declare const databaseGetMysqlUserPhpMyAdminUrl: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
238
|
+
/** List available MySQL character sets and collations, optionally filtered by a MySQLVersion. */
|
|
239
|
+
export declare const databaseListMysqlCharsets: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
240
|
+
/** List available MySQLVersions. */
|
|
241
|
+
export declare const databaseListMysqlVersions: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
242
|
+
/** List available Redis versions. */
|
|
243
|
+
export declare const databaseListRedisVersions: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2RedisVersions.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisVersions.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisVersions.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisVersions.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
244
|
+
/** Update a MySQLDatabase's default character settings. */
|
|
245
|
+
export declare const databaseUpdateMysqlDatabaseDefaultCharset: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
246
|
+
/** Update a MySQLDatabase's description. */
|
|
247
|
+
export declare const databaseUpdateMysqlDatabaseDescription: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDescription.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDescription.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDescription.Patch.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDescription.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
248
|
+
/** Update a MySQLUser's password. */
|
|
249
|
+
export declare const databaseUpdateMysqlUserPassword: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPassword.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPassword.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPassword.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MysqlUsersIdPassword.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersIdPassword.Patch.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2MysqlUsersIdPassword.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
250
|
+
/** Update a RedisDatabase's description. */
|
|
251
|
+
export declare const databaseUpdateRedisDatabaseDescription: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
252
|
+
/** Return the Contract for the given Domain. */
|
|
253
|
+
export declare const deprecatedContractGetDetailOfContractByDomain: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContracts.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContracts.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainIdContracts.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdContracts.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdContracts.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdContracts.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
254
|
+
/** Return the Contract for the given Project. */
|
|
255
|
+
export declare const deprecatedContractGetDetailOfContractByProject: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContracts.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContracts.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdContracts.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdContracts.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdContracts.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdContracts.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
256
|
+
/** Return the Contract for the given Server. */
|
|
257
|
+
export declare const deprecatedContractGetDetailOfContractByServer: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdContracts.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdContracts.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ServersServerIdContracts.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerIdContracts.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerIdContracts.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerIdContracts.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
258
|
+
/** Get InvoiceSettings of a Customer. */
|
|
259
|
+
export declare const deprecatedInvoiceInvoiceSettings: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
260
|
+
/** Update InvoiceSettings of a Customer. */
|
|
261
|
+
export declare const deprecatedInvoiceUpdateInvoiceSettings: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesettings.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
262
|
+
/** getting the subscription status of the subscription */
|
|
263
|
+
export declare const deprecatedNewsletterGetInfo: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsEmail.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsEmail.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsEmail.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsEmail.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
264
|
+
/** Unsubscribe a user from the mStudio newsletter. */
|
|
265
|
+
export declare const deprecatedNewsletterUnsubscribeUser: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsEmail.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsEmail.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsEmail.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
266
|
+
/** subscribe a user to the mStudio newsletter */
|
|
267
|
+
export declare const deprecatedNewsletterSubscribeUser: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
268
|
+
/** Request a new avatar upload */
|
|
269
|
+
export declare const deprecatedUserServiceAvatarRequestUpload: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UserUserIdAvatar.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UserUserIdAvatar.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UserUserIdAvatar.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UserUserIdAvatar.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserIdAvatar.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserIdAvatar.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
270
|
+
/** Remove Avatar */
|
|
271
|
+
export declare const deprecatedUserServiceAvatarRemove: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UserUserIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UserUserIdAvatar.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UserUserIdAvatar.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserIdAvatar.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
272
|
+
/** Returns your submitted feedback */
|
|
273
|
+
export declare const deprecatedUserServiceFeedbackList: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UserFeedback.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UserFeedback.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UserFeedback.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserFeedback.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
274
|
+
/** Submit user feedback */
|
|
275
|
+
export declare const deprecatedUserServiceFeedbackCreate: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UserFeedback.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UserFeedback.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UserFeedback.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UserFeedback.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserFeedback.Post.Responses.$401.Content.ApplicationJson, 401, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserFeedback.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserFeedback.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
276
|
+
/** create a new issue */
|
|
277
|
+
export declare const deprecatedUserServiceIssueNew: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UserIssues.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UserIssues.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UserIssues.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UserIssues.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
278
|
+
/** Get profile information for the specified user if the user is related to the executing user */
|
|
279
|
+
export declare const deprecatedUserServiceUserGet: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UserUserId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UserUserId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UserUserId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserId.Get.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserId.Get.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
280
|
+
/** Change your personal information */
|
|
281
|
+
export declare const deprecatedUserServicePersonalInformationUpdate: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UserUserId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UserUserId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UserUserId.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UserUserId.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserId.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
282
|
+
/** Get personalized settings for the user executing the request */
|
|
283
|
+
export declare const deprecatedUserServicePersonalizedSettingsGet: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UserSettings.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UserSettings.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UserSettings.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserSettings.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
284
|
+
/** update personalized settings */
|
|
285
|
+
export declare const deprecatedUserServicePersonalizedSettingsUpdate: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UserSettings.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UserSettings.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UserSettings.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UserSettings.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserSettings.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
286
|
+
/** Add phone number and init verification process */
|
|
287
|
+
export declare const deprecatedUserServicePhoneNumberAdd: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UserUserIdPhone.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UserUserIdPhone.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UserUserIdPhone.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UserUserIdPhone.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserIdPhone.Post.Responses.$409.Content.ApplicationJson, 409, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserIdPhone.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
288
|
+
/** remove your PhoneNumber */
|
|
289
|
+
export declare const deprecatedUserServicePhoneNumberRemove: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UserUserIdPhone.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UserUserIdPhone.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UserUserIdPhone.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserIdPhone.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
290
|
+
/** Verify phone number */
|
|
291
|
+
export declare const deprecatedUserServicePhoneNumberVerify: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UserUserIdPhoneVerify.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UserUserIdPhoneVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UserUserIdPhoneVerify.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UserUserIdPhoneVerify.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserIdPhoneVerify.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserIdPhoneVerify.Post.Responses.$409.Content.ApplicationJson, 409, "application/json"> | Response<MittwaldAPIV2.Paths.V2UserUserIdPhoneVerify.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
292
|
+
/** Get profile information for the executing user */
|
|
293
|
+
export declare const deprecatedUserServiceUserGetOwn: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2User.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2User.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2User.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2User.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
294
|
+
/** updates a-records for a specific zone */
|
|
295
|
+
export declare const dnsRecordAsetCustom: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedCustom.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedCustom.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedCustom.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedCustom.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedCustom.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
296
|
+
/** set a-records managed by ingress for a specific zone */
|
|
297
|
+
export declare const dnsRecordAsetManagedByIngress: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedManagedIngress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedManagedIngress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedManagedIngress.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedManagedIngress.Post.Responses.$204.Content.ApplicationJson, 204, "application/json"> | Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedManagedIngress.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedManagedIngress.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
298
|
+
/** updates cname-record for a specific zone */
|
|
299
|
+
export declare const dnsRecordCnameSet: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetCname.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetCname.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetCname.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetCname.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetCname.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
300
|
+
/** updates mx-records for a specific zone */
|
|
301
|
+
export declare const dnsRecordMxSetCustom: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
302
|
+
/** sets mx-records to managed for a specific zone */
|
|
303
|
+
export declare const dnsRecordMxSetManaged: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
304
|
+
/** updates txt-records for a specific zone */
|
|
305
|
+
export declare const dnsRecordTxtSet: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
306
|
+
/** gets a specific zone */
|
|
307
|
+
export declare const dnsZoneGetSpecific: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
308
|
+
/** gets all dns zones by project id */
|
|
309
|
+
export declare const dnsZonesForProject: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDnsZones.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDnsZones.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdDnsZones.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdDnsZones.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdDnsZones.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
310
|
+
/** Abort a declare process. */
|
|
311
|
+
export declare const domainAbortDeclareProcess: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarations.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarations.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarations.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarations.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarations.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
312
|
+
/** Change the ownerC of a domain. */
|
|
313
|
+
export declare const domainChangeOwnercOfDomain: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdHandlesOwnerc.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdHandlesOwnerc.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdHandlesOwnerc.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainIdHandlesOwnerc.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdHandlesOwnerc.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdHandlesOwnerc.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdHandlesOwnerc.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
314
|
+
/** Change the Project relation of a Domain. */
|
|
315
|
+
export declare const domainChangeProjectOfDomain: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdProjectId.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
316
|
+
/** Check if a Domain is available to register. */
|
|
317
|
+
export declare const domainCheckDomainAvailability: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2Domains.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Domains.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Domains.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Domains.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2Domains.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2Domains.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
318
|
+
/** Create an AuthCode for a Domains transfer out process. */
|
|
319
|
+
export declare const domainCreateAuthcodeForDomain: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
320
|
+
/** Create an AuthCode2. */
|
|
321
|
+
export declare const domainCreateAuthcode2ForDomain: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode2.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode2.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode2.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode2.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode2.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsCreateAuthcode2.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
322
|
+
/** Change all nameservers of a Domain. */
|
|
323
|
+
export declare const domainDeclareNameservers: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdNameservers.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdNameservers.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdNameservers.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainIdNameservers.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdNameservers.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdNameservers.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
324
|
+
/** Update an AuthCode. */
|
|
325
|
+
export declare const domainDeclareProcessChangeAuthcode: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsAuthcode.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsAuthcode.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsAuthcode.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsAuthcode.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsAuthcode.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsAuthcode.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsAuthcode.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
326
|
+
/** Update a Domain's OwnerC handle. */
|
|
327
|
+
export declare const domainDeclareProcessChangeHandles: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsHandles.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsHandles.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsHandles.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsHandles.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsHandles.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsHandles.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdDeclarationsHandles.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
328
|
+
/** Get a Domain. */
|
|
329
|
+
export declare const domainGetDomain: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
330
|
+
/** Delete a Domain. */
|
|
331
|
+
export declare const domainDeleteDomain: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
332
|
+
/** Get a HandleSchema. */
|
|
333
|
+
export declare const domainGetHandleFields: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsHandleSchemaDomainName.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsHandleSchemaDomainName.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsHandleSchemaDomainName.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsHandleSchemaDomainName.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
334
|
+
/** Get a domain ownership. */
|
|
335
|
+
export declare const domainGetSpecificDomainOwnership: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
336
|
+
/** Verify a domain ownership. */
|
|
337
|
+
export declare const domainVerifyDomainOwnership: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
338
|
+
/** Get a toplevel domain. */
|
|
339
|
+
export declare const domainGetToplevelDomain: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ToplevelDomainsTld.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ToplevelDomainsTld.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ToplevelDomainsTld.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ToplevelDomainsTld.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ToplevelDomainsTld.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ToplevelDomainsTld.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
340
|
+
/** List all domain ownerships of a project. */
|
|
341
|
+
export declare const domainListDomainOwnerships: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
342
|
+
/** List Domains belonging to a Project. */
|
|
343
|
+
export declare const domainListDomains: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomains.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomains.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomains.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomains.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomains.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
344
|
+
/** List all supported toplevel domains. */
|
|
345
|
+
export declare const domainListToplevelDomains: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ToplevelDomains.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ToplevelDomains.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ToplevelDomains.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ToplevelDomains.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ToplevelDomains.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
346
|
+
/** Resend a domain email. */
|
|
347
|
+
export declare const domainResendDomainEmail: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
348
|
+
/** Create a File. */
|
|
349
|
+
export declare const fileCreateFile: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Files.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2Files.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2Files.Post.Responses.$500.Content.ApplicationJson, 500, "application/json"> | Response<MittwaldAPIV2.Paths.V2Files.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
350
|
+
/** Get a File's meta. */
|
|
351
|
+
export declare const fileGetFileMeta: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FilesIdMeta.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FilesIdMeta.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2FilesIdMeta.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2FilesIdMeta.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2FilesIdMeta.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
352
|
+
/** Get a Token's upload rules. */
|
|
353
|
+
export declare const fileGetFileTokenRules: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Responses.$500.Content.ApplicationJson, 500, "application/json"> | Response<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
354
|
+
/** Get a Type's upload rules. */
|
|
355
|
+
export declare const fileGetFileTypeRules: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Responses.$500.Content.ApplicationJson, 500, "application/json"> | Response<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
356
|
+
/** Get a File. */
|
|
357
|
+
export declare const fileGetFile: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FilesId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FilesId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2FilesId.Get.Responses.$200.Content.ApplicationOctetStream, 200, "application/octet-stream"> | Response<MittwaldAPIV2.Paths.V2FilesId.Get.Responses.$200.Content.Base64, 200, "base64"> | Response<MittwaldAPIV2.Paths.V2FilesId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2FilesId.Get.Responses.$500.Content.ApplicationJson, 500, "application/json"> | Response<MittwaldAPIV2.Paths.V2FilesId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
358
|
+
/** Create an Ingress. */
|
|
359
|
+
export declare const ingressCreate: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Ingresses.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2Ingresses.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2Ingresses.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
360
|
+
/** Get an Ingress. */
|
|
361
|
+
export declare const ingressGetSpecific: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
362
|
+
/** Delete an Ingress. */
|
|
363
|
+
export declare const ingressDelete: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
364
|
+
/** List Ingresses the user has access to. */
|
|
365
|
+
export declare const ingressListAccessible: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Ingresses.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2Ingresses.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2Ingresses.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
366
|
+
/** List Ingresses belonging to a project. */
|
|
367
|
+
export declare const ingressListForProject: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdIngresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdIngresses.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdIngresses.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdIngresses.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdIngresses.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
368
|
+
/** Update an Ingresses paths. */
|
|
369
|
+
export declare const ingressPaths: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
370
|
+
/** Update an Ingresses tls settings. */
|
|
371
|
+
export declare const ingressTls: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
372
|
+
/** Get details of an Invoice. */
|
|
373
|
+
export declare const invoiceDetailOfInvoice: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
374
|
+
/** Get InvoiceSettings of a Customer. */
|
|
375
|
+
export declare const invoiceGetDetailOfInvoiceSettings: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
376
|
+
/** Update InvoiceSettings of a Customer. */
|
|
377
|
+
export declare const invoiceUpdateInvoiceSettings: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
378
|
+
/** List Invoices of a Customer. */
|
|
379
|
+
export declare const invoiceListCustomerInvoices: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
380
|
+
/** Get all deliveryboxes by project ID */
|
|
381
|
+
export declare const mailServiceDeliveryboxList: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryboxes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryboxes.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryboxes.Get.Responses.$200.Content.ApplicationJson, 200, "application/json">>;
|
|
382
|
+
/** Create a new deliverybox */
|
|
383
|
+
export declare const mailServiceDeliveryboxCreate: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryboxes.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryboxes.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryboxes.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryboxes.Post.Responses.$201.Content.ApplicationJson, 201, "application/json">>;
|
|
384
|
+
/** Get a specific deliverybox */
|
|
385
|
+
export declare const mailServiceDeliveryboxGetSpecific: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DeliveryboxesId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DeliveryboxesId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2DeliveryboxesId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json">>;
|
|
386
|
+
/** Delete a specific deliverybox */
|
|
387
|
+
export declare const mailServiceDeliveryboxDelete: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DeliveryboxesId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DeliveryboxesId.Delete.Parameters.Header>>>;
|
|
388
|
+
/** Update the description of an deliverybox */
|
|
389
|
+
export declare const mailServiceDeliveryboxUpdateDescription: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DeliveryboxesIdDescription.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DeliveryboxesIdDescription.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DeliveryboxesIdDescription.Put.Parameters.Header>>>;
|
|
390
|
+
/** Update the password for a specific deliverybox */
|
|
391
|
+
export declare const mailServiceDeliveryboxUpdatePassword: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2DeliveryboxesIdPassword.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DeliveryboxesIdPassword.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DeliveryboxesIdPassword.Put.Parameters.Header>>>;
|
|
392
|
+
/** Get all mail addresses for a project ID */
|
|
393
|
+
export declare const mailServiceMailaddressList: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailaddresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailaddresses.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailaddresses.Get.Responses.$200.Content.ApplicationJson, 200, "application/json">>;
|
|
394
|
+
/** Create a new mail address */
|
|
395
|
+
export declare const mailServiceMailaddressCreate: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailaddresses.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailaddresses.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailaddresses.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailaddresses.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailaddresses.Post.Responses.$400.Content.ApplicationJson, 400, "application/json">>;
|
|
396
|
+
/** Get a specific mail address */
|
|
397
|
+
export declare const mailServiceMailaddressGetSpecific: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MailaddressesId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json">>;
|
|
398
|
+
/** Delete a specific mail address */
|
|
399
|
+
export declare const mailServiceMailaddressDelete: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesId.Delete.Parameters.Header>>>;
|
|
400
|
+
/** Update mail-address */
|
|
401
|
+
export declare const mailServiceMailaddressUpdateAddress: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdAddress.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdAddress.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdAddress.Put.Parameters.Header>>>;
|
|
402
|
+
/** Update the auto responder of a mail address */
|
|
403
|
+
export declare const mailServiceMailaddressUpdateAutoresponder: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdAutoResponder.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdAutoResponder.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdAutoResponder.Put.Parameters.Header>>>;
|
|
404
|
+
/** Enable or disable the catchAll flag for a specific mail address */
|
|
405
|
+
export declare const mailServiceMailaddressUpdateCatchall: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdCatchAll.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdCatchAll.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdCatchAll.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2MailaddressesIdCatchAll.Put.Responses.$400.Content.ApplicationJson, 400, "application/json">>;
|
|
406
|
+
/** Update the addresses an email is forwarded to */
|
|
407
|
+
export declare const mailServiceMailaddressUpdateForwardaddresses: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdForwardaddresses.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdForwardaddresses.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdForwardaddresses.Put.Parameters.Header>>>;
|
|
408
|
+
/** Update the password for a specific mail address */
|
|
409
|
+
export declare const mailServiceMailaddressUpdatePassword: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdPassword.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdPassword.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdPassword.Put.Parameters.Header>>>;
|
|
410
|
+
/** Update the quota of a mailbox */
|
|
411
|
+
export declare const mailServiceMailaddressUpdateQuota: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdQuota.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdQuota.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdQuota.Put.Parameters.Header>>>;
|
|
412
|
+
/** Update the spamprotection of a mailbox */
|
|
413
|
+
export declare const mailServiceMailaddressUpdateSpamprotection: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdSpamprotection.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdSpamprotection.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailaddressesIdSpamprotection.Put.Parameters.Header>>>;
|
|
414
|
+
/** Get settings for a given project ID */
|
|
415
|
+
export declare const mailServiceProjectsettingGetSpecific: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettings.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettings.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettings.Get.Responses.$200.Content.ApplicationJson, 200, "application/json">>;
|
|
416
|
+
/** Update blacklist for a given project ID */
|
|
417
|
+
export declare const mailServiceProjectsettingUpdateBlacklist: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsBlacklist.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsBlacklist.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsBlacklist.Put.Parameters.Header>>>;
|
|
418
|
+
/** Update whitelist for a given project ID */
|
|
419
|
+
export declare const mailServiceProjectsettingUpdateWhitelist: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsWhitelist.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsWhitelist.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsWhitelist.Put.Parameters.Header>>>;
|
|
420
|
+
/** Getting the subscription status of the subscription. */
|
|
421
|
+
export declare const newsletterGetInfo: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
422
|
+
/** Unsubscribe a user from the mStudio newsletter. */
|
|
423
|
+
export declare const newsletterUnsubscribeUser: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
424
|
+
/** Subscribe a user to the mStudio newsletter. */
|
|
425
|
+
export declare const newsletterSubscribeUser: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
426
|
+
/** Get the counts for unread notifications of the user. */
|
|
427
|
+
export declare const notificationsCountUnreadNotifications: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
428
|
+
/** List all unread notifications */
|
|
429
|
+
export declare const notificationsListNotifications: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Notifications.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Notifications.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Notifications.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2Notifications.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
430
|
+
/** Mark all notifications as read. */
|
|
431
|
+
export declare const notificationsReadAllNotifications: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2NotificationsStatus.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2NotificationsStatus.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NotificationsStatus.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2NotificationsStatus.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2NotificationsStatus.Put.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2NotificationsStatus.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
432
|
+
/** Mark notification as read. */
|
|
433
|
+
export declare const notificationsReadNotification: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2NotificationsMessageIdStatus.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2NotificationsMessageIdStatus.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NotificationsMessageIdStatus.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2NotificationsMessageIdStatus.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2NotificationsMessageIdStatus.Put.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2NotificationsMessageIdStatus.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
434
|
+
/** Create an Order. */
|
|
435
|
+
export declare const orderCreateOrder: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2Orders.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Orders.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Orders.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Orders.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2Orders.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2Orders.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
436
|
+
/** Create TariffChange Order. */
|
|
437
|
+
export declare const orderCreateTariffChange: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2TariffChanges.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2TariffChanges.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2TariffChanges.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2TariffChanges.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2TariffChanges.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2TariffChanges.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
438
|
+
/** Get Order for Customer. */
|
|
439
|
+
export declare const orderGetOrder: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2OrdersOrderId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2OrdersOrderId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2OrdersOrderId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2OrdersOrderId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
440
|
+
/** Get list of Orders of a Customer. */
|
|
441
|
+
export declare const orderListCustomerOrders: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdOrders.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdOrders.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdOrders.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2CustomersCustomerIdOrders.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
442
|
+
/** Get list of Orders of a Project. */
|
|
443
|
+
export declare const orderListProjectOrders: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdOrders.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdOrders.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdOrders.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdOrders.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
444
|
+
/** Preview Order. */
|
|
445
|
+
export declare const orderPreviewOrder: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2OrderPreviews.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2OrderPreviews.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2OrderPreviews.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2OrderPreviews.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2OrderPreviews.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2OrderPreviews.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
446
|
+
/** Preview TariffChange. */
|
|
447
|
+
export declare const orderPreviewTariffChange: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
448
|
+
/** Get a password policy. */
|
|
449
|
+
export declare const passwordValidationServiceGetPasswordPolicy: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPath.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPath.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2PasswordPoliciesPath.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2PasswordPoliciesPath.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
450
|
+
/** Accept a ProjectInvite. */
|
|
451
|
+
export declare const projectAcceptProjectInvite: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
452
|
+
/** Create a ProjectInvite. */
|
|
453
|
+
export declare const projectCreateProjectInvite: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectProjectIdInvites.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectProjectIdInvites.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectProjectIdInvites.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectProjectIdInvites.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectProjectIdInvites.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectProjectIdInvites.Post.Responses.$409.Content.ApplicationJson, 409, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectProjectIdInvites.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
454
|
+
/** Create a Project belonging to a Server. */
|
|
455
|
+
export declare const projectCreateProject: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
456
|
+
/** Decline a ProjectInvite. */
|
|
457
|
+
export declare const projectDeclineProjectInvite: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsDecline.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsDecline.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsDecline.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsDecline.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
458
|
+
/** Request a Project avatar upload. */
|
|
459
|
+
export declare const projectRequestProjectAvatarUpload: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
460
|
+
/** Delete a Project's avatar. */
|
|
461
|
+
export declare const projectDeleteProjectAvatar: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
462
|
+
/** Get a ProjectInvite. */
|
|
463
|
+
export declare const projectGetProjectInvite: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectInvitesInviteId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectInvitesInviteId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectInvitesInviteId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
464
|
+
/** Delete a ProjectInvite. */
|
|
465
|
+
export declare const projectDeleteProjectInvite: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectInvitesInviteId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
466
|
+
/** Get a ProjectMembership */
|
|
467
|
+
export declare const projectGetProjectMembership: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsMembershipId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsMembershipId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectMembershipsMembershipId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectMembershipsMembershipId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectMembershipsMembershipId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
468
|
+
/** Delete a ProjectMembership. */
|
|
469
|
+
export declare const projectDeleteProjectMembership: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsMembershipId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsMembershipId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectMembershipsMembershipId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
470
|
+
/** Update a ProjectMembership. */
|
|
471
|
+
export declare const projectUpdateProjectMembership: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsMembershipId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsMembershipId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectMembershipsMembershipId.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectMembershipsMembershipId.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
472
|
+
/** Delete a Project. */
|
|
473
|
+
export declare const projectDeleteProject: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Responses.$500.Content.ApplicationJson, 500, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
474
|
+
/** Request a Server avatar upload. */
|
|
475
|
+
export declare const projectRequestServerAvatarUpload: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
476
|
+
/** Delete a Server's avatar. */
|
|
477
|
+
export declare const projectDeleteServerAvatar: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
478
|
+
/** List the directories of a Project. */
|
|
479
|
+
export declare const projectFileSystemGetDirectories: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Responses.$503.Content.ApplicationJson, 503, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
480
|
+
/** Get a Project directory filesystem usage. */
|
|
481
|
+
export declare const projectFileSystemGetDiskUsage: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Responses.$503.Content.ApplicationJson, 503, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
482
|
+
/** Get a Project file's content. */
|
|
483
|
+
export declare const projectFileSystemGetFileContent: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Responses.$200.Content.TextPlain, 200, "text/plain"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Responses.$503.Content.ApplicationJson, 503, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
484
|
+
/** Get a Project's file/filesystem authorization token. */
|
|
485
|
+
export declare const projectFileSystemGetJwt: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$503.Content.ApplicationJson, 503, "application/json">>;
|
|
486
|
+
/** Get a Project file's information. */
|
|
487
|
+
export declare const projectFileSystemListFiles: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$503.Content.ApplicationJson, 503, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
488
|
+
/** Get a ProjectInvite by token. */
|
|
489
|
+
export declare const projectGetProjectTokenInvite: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectTokenInvite.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectTokenInvite.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectTokenInvite.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectTokenInvite.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectTokenInvite.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
490
|
+
/** Get a Project. */
|
|
491
|
+
export declare const projectGetProject: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
492
|
+
/** Get the executing user's membership in a Project. */
|
|
493
|
+
export declare const projectGetSelfMembershipForProject: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
494
|
+
/** Get a Server. */
|
|
495
|
+
export declare const projectGetServer: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
496
|
+
/** Leave a Project. */
|
|
497
|
+
export declare const projectLeaveProject: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLeave.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLeave.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLeave.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdLeave.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
498
|
+
/** List all invites belonging to a Project. */
|
|
499
|
+
export declare const projectListInvitesForProject: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdInvites.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdInvites.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdInvites.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdInvites.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdInvites.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
500
|
+
/** List all memberships for a Project. */
|
|
501
|
+
export declare const projectListMembershipsForProject: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
502
|
+
/** List all ProjectInvites for the executing user. */
|
|
503
|
+
export declare const projectListProjectInvites: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
504
|
+
/** List ProjectMemberships belonging to the executing user. */
|
|
505
|
+
export declare const projectListProjectMemberships: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectMemberships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectMemberships.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectMemberships.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectMemberships.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectMemberships.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
506
|
+
/** List Project's for an Organization or Server. */
|
|
507
|
+
export declare const projectListProjects: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Projects.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Projects.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Projects.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2Projects.Get.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2Projects.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
508
|
+
/** List Servers for an Organization or User. */
|
|
509
|
+
export declare const projectListServers: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Servers.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Servers.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Servers.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2Servers.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
510
|
+
/** Resend the mail for a ProjectInvite. */
|
|
511
|
+
export declare const projectResendProjectInviteMail: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsResend.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsResend.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsResend.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsResend.Post.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsResend.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
512
|
+
/** Update a Project's description. */
|
|
513
|
+
export declare const projectUpdateProjectDescription: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsIdDescription.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsIdDescription.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsIdDescription.Patch.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsIdDescription.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
514
|
+
/** Update a Servers's description. */
|
|
515
|
+
export declare const projectUpdateServerDescription: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdDescription.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ServersServerIdDescription.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json">>;
|
|
516
|
+
/** Relocate an external Project to mittwald. */
|
|
517
|
+
export declare const redirectusCreateRelocation: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2Relocation.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Relocation.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Relocation.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2Relocation.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2Relocation.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
518
|
+
/** Create an SFTPUser for a Project. */
|
|
519
|
+
export declare const sftpUserCreateSftpUser: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdSftpUsers.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdSftpUsers.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdSftpUsers.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdSftpUsers.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdSftpUsers.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdSftpUsers.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
520
|
+
/** Get an SFTPUser. */
|
|
521
|
+
export declare const sftpUserGetSftpUser: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
522
|
+
/** Delete an SFTPUser. */
|
|
523
|
+
export declare const sftpUserDeleteSftpUser: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
524
|
+
/** Update an SFTPUser. */
|
|
525
|
+
export declare const sftpUserUpdateSftpUser: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SftpUsersSftpUserId.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
526
|
+
/** Get all SFTPUsers for a Project. */
|
|
527
|
+
export declare const sftpUserListSftpUsers: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectProjectIdSftpUsers.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectProjectIdSftpUsers.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectProjectIdSftpUsers.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectProjectIdSftpUsers.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectProjectIdSftpUsers.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
528
|
+
/** Get all SSHUsers for a Project. */
|
|
529
|
+
export declare const sshUserListSshUsers: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdSshUsers.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdSshUsers.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdSshUsers.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdSshUsers.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdSshUsers.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
530
|
+
/** Create an SSHUser for a Project. */
|
|
531
|
+
export declare const sshUserCreateSshUser: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdSshUsers.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdSshUsers.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdSshUsers.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdSshUsers.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdSshUsers.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2ProjectsProjectIdSshUsers.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
532
|
+
/** Get an SSHUser. */
|
|
533
|
+
export declare const sshUserGetSshUser: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
534
|
+
/** Delete an SSHUser. */
|
|
535
|
+
export declare const sshUserDeleteSshUser: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
536
|
+
/** Update an SSHUser. */
|
|
537
|
+
export declare const sshUserUpdateSshUser: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
538
|
+
/** Add phone number and start verification process. */
|
|
539
|
+
export declare const userAddPhoneNumber: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$409.Content.ApplicationJson, 409, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
540
|
+
/** Remove phone number. */
|
|
541
|
+
export declare const userRemovePhoneNumber: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
542
|
+
/** Authenticate yourself to get an access token. */
|
|
543
|
+
export declare const userAuthenticate: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupAuthentication.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupAuthentication.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupAuthentication.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupAuthentication.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupAuthentication.Post.Responses.$202.Content.ApplicationJson, 202, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupAuthentication.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupAuthentication.Post.Responses.$401.Content.ApplicationJson, 401, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupAuthentication.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
544
|
+
/** Validate your second factor. */
|
|
545
|
+
export declare const userAuthenticateMfa: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupAuthenticationMfa.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupAuthenticationMfa.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupAuthenticationMfa.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupAuthenticationMfa.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupAuthenticationMfa.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupAuthenticationMfa.Post.Responses.$408.Content.ApplicationJson, 408, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupAuthenticationMfa.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
546
|
+
/** Get your primary verified Email-Address */
|
|
547
|
+
export declare const userGetEmail: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupEmail.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupEmail.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupEmail.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupEmail.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupEmail.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
548
|
+
/** Change your Email-Address */
|
|
549
|
+
export declare const userChangeEmail: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupEmail.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupEmail.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupEmail.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupEmail.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupEmail.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
550
|
+
/** The timestamp of your latest password change */
|
|
551
|
+
export declare const userGetPasswordUpdatedAt: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupPassword.Get.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupPassword.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupPassword.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupPassword.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupPassword.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
552
|
+
/** Change your password */
|
|
553
|
+
export declare const userChangePassword: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupPassword.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupPassword.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupPassword.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupPassword.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupPassword.Put.Responses.$202.Content.ApplicationJson, 202, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupPassword.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupPassword.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
554
|
+
/** Get your profile information */
|
|
555
|
+
export declare const userGetOwnProfile: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupProfile.Get.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupProfile.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupProfile.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupProfile.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupProfile.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
556
|
+
/** Change your profile information */
|
|
557
|
+
export declare const userChangeProfile: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupProfile.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupProfile.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupProfile.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupProfile.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupProfile.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
558
|
+
/** Delete your profile and all your personal data */
|
|
559
|
+
export declare const userDeleteProfile: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupProfile.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupProfile.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupProfile.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupProfile.Delete.Responses.$202.Content.ApplicationJson, 202, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupProfile.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupProfile.Delete.Responses.$409.Content.ApplicationJson, 409, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupProfile.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
560
|
+
/** Check a token for validity */
|
|
561
|
+
export declare const userCheckToken: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupTokenCheck.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupTokenCheck.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupTokenCheck.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupTokenCheck.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupTokenCheck.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupTokenCheck.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
562
|
+
/** Confirm Multi Factor Authentication */
|
|
563
|
+
export declare const userConfirmMfa: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupMfaConfirm.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupMfaConfirm.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupMfaConfirm.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupMfaConfirm.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupMfaConfirm.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupMfaConfirm.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
564
|
+
/** Confirm password reset */
|
|
565
|
+
export declare const userConfirmPasswordReset: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupPasswordResetConfirm.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupPasswordResetConfirm.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupPasswordResetConfirm.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupPasswordResetConfirm.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupPasswordResetConfirm.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
566
|
+
/** List all ApiTokens of the user */
|
|
567
|
+
export declare const userListApiTokens: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupTokenApi.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupTokenApi.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupTokenApi.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupTokenApi.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
568
|
+
/** Store a new ApiToken */
|
|
569
|
+
export declare const userCreateApiToken: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupTokenApi.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupTokenApi.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupTokenApi.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupTokenApi.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupTokenApi.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupTokenApi.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
570
|
+
/** Submit your user feedback. */
|
|
571
|
+
export declare const userCreateFeedback: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UsersSelfFeedback.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfFeedback.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfFeedback.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UsersSelfFeedback.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersSelfFeedback.Post.Responses.$401.Content.ApplicationJson, 401, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersSelfFeedback.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersSelfFeedback.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
572
|
+
/** Create a new issue. */
|
|
573
|
+
export declare const userCreateIssue: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UsersSelfIssues.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfIssues.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfIssues.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UsersSelfIssues.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
574
|
+
/** Get your stored ssh keys */
|
|
575
|
+
export declare const userListSshKeys: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupSsh.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupSsh.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupSsh.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupSsh.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
576
|
+
/** Store a new SSH key */
|
|
577
|
+
export declare const userCreateSshKey: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupSsh.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupSsh.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupSsh.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupSsh.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupSsh.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
578
|
+
/** Get a specific ApiToken */
|
|
579
|
+
export declare const userGetApiToken: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
580
|
+
/** Update an existing `ApiToken` */
|
|
581
|
+
export declare const userEditApiToken: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
582
|
+
/** Deletes an ApiToken */
|
|
583
|
+
export declare const userDeleteApiToken: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupTokenApiApiTokenId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
584
|
+
/** Get a specific stored SshKey */
|
|
585
|
+
export declare const userGetSshKey: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
586
|
+
/** Edit a stored SshKey */
|
|
587
|
+
export declare const userEditSshKey: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
588
|
+
/** Remove a SSH-key */
|
|
589
|
+
export declare const userDeleteSshKey: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupSshSshKeyId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
590
|
+
/** Get your current multi factor auth status */
|
|
591
|
+
export declare const userGetMfaStatus: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupMfa.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupMfa.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupMfa.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupMfa.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
592
|
+
/** Initialize Multi Factor Authentication. If successfull, it needs to be confirmed, before usage of mfa. */
|
|
593
|
+
export declare const userInitMfa: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupMfa.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupMfa.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupMfa.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupMfa.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupMfa.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupMfa.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
594
|
+
/** Disable Multi Factor Authentication. */
|
|
595
|
+
export declare const userDisableMfa: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupMfa.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupMfa.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupMfa.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupMfa.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupMfa.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
596
|
+
/** Get personalized settings. */
|
|
597
|
+
export declare const userGetPersonalizedSettings: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdSettings.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdSettings.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UsersUserIdSettings.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserIdSettings.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
598
|
+
/** Update personalized GUI settings. */
|
|
599
|
+
export declare const userUpdatePersonalizedSettings: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdSettings.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdSettings.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdSettings.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UsersUserIdSettings.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserIdSettings.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
600
|
+
/** Get a specific Session */
|
|
601
|
+
export declare const userGetSession: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupSessionsTokenId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupSessionsTokenId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupSessionsTokenId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupSessionsTokenId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupSessionsTokenId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
602
|
+
/** Terminate a specific Session */
|
|
603
|
+
export declare const userTerminateSession: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupSessionsTokenId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupSessionsTokenId.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupSessionsTokenId.Delete.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupSessionsTokenId.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
604
|
+
/** Get profile information for a user. */
|
|
605
|
+
export declare const userGetUser: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UsersUserId.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserId.Get.Responses.$403.Content.ApplicationJson, 403, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserId.Get.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserId.Get.Responses.$412.Content.ApplicationJson, 412, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserId.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
606
|
+
/** Change personal information. */
|
|
607
|
+
export declare const userUpdatePersonalInformation: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserId.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UsersUserId.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserId.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
608
|
+
/** Initialize password reset process */
|
|
609
|
+
export declare const userInitPasswordReset: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupPasswordReset.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupPasswordReset.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupPasswordReset.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupPasswordReset.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupPasswordReset.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
610
|
+
/** Submitted feedback of the given user. */
|
|
611
|
+
export declare const userListFeedback: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdFeedback.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdFeedback.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UsersUserIdFeedback.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserIdFeedback.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
612
|
+
/** List all active sessions */
|
|
613
|
+
export declare const userListSessions: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupSessions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupSessions.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupSessions.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupSessions.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
614
|
+
/** Terminate all sessions, except the current Session */
|
|
615
|
+
export declare const userTerminateAllSessions: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupSessions.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupSessions.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupSessions.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
616
|
+
/** Terminate session and invalidate access token */
|
|
617
|
+
export declare const userLogout: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupLogout.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupLogout.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupLogout.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupLogout.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupLogout.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
618
|
+
/** Register with email and password. */
|
|
619
|
+
export declare const userRegister: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupRegistration.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupRegistration.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupRegistration.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupRegistration.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupRegistration.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupRegistration.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
620
|
+
/** Request a new avatar image upload. */
|
|
621
|
+
export declare const userRequestAvatarUpload: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Post.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
622
|
+
/** Remove Avatar. */
|
|
623
|
+
export declare const userRemoveAvatar: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
624
|
+
/** Resend the Email-Address verification email */
|
|
625
|
+
export declare const userResendVerificationEmail: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupEmailResend.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupEmailResend.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupEmailResend.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupEmailResend.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupEmailResend.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
626
|
+
/** Reset RecoveryCodes for MFA */
|
|
627
|
+
export declare const userResetRecoverycodes: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupMfaResetRecoverycodes.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupMfaResetRecoverycodes.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupMfaResetRecoverycodes.Put.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupMfaResetRecoverycodes.Put.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupMfaResetRecoverycodes.Put.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupMfaResetRecoverycodes.Put.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
628
|
+
/** Request a support code */
|
|
629
|
+
export declare const userSupportCodeRequest: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SignupSupportcode.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupSupportcode.Get.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupSupportcode.Get.Responses.$200.Content.ApplicationJson, 200, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupSupportcode.Get.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
630
|
+
/** Verify an added Email-Address */
|
|
631
|
+
export declare const userVerifyEmail: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupEmailVerify.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupEmailVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupEmailVerify.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupEmailVerify.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupEmailVerify.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupEmailVerify.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
632
|
+
/** Verify phone number. */
|
|
633
|
+
export declare const userVerifyPhoneNumber: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$409.Content.ApplicationJson, 409, "application/json"> | Response<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
634
|
+
/** Verify your registration */
|
|
635
|
+
export declare const userVerifyRegistration: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2SignupRegistrationVerification.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SignupRegistrationVerification.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SignupRegistrationVerification.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2SignupRegistrationVerification.Post.Responses.$400.Content.ApplicationJson, 400, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupRegistrationVerification.Post.Responses.$404.Content.ApplicationJson, 404, "application/json"> | Response<MittwaldAPIV2.Paths.V2SignupRegistrationVerification.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|
|
636
|
+
/** Register a tariff change for a legacy tariff. */
|
|
637
|
+
export declare const relocationCreateLegacyTariffChange: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2LegacyTariffChange.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2LegacyTariffChange.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LegacyTariffChange.Post.Parameters.Header>>, Response<MittwaldAPIV2.Paths.V2LegacyTariffChange.Post.Responses.$201.Content.ApplicationJson, 201, "application/json"> | Response<MittwaldAPIV2.Paths.V2LegacyTariffChange.Post.Responses.Default.Content.ApplicationJson, "default", "application/json">>;
|