@mittwald/api-client 3.0.29 → 3.1.2

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.
@@ -6,47 +6,47 @@ import { ApiClientBase } from "@mittwald/api-client-commons";
6
6
  export class MittwaldAPIV2Client extends ApiClientBase {
7
7
  /** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
8
8
  app = {
9
- /** execute a runtime concerning action on a specific `AppInstallation` */
9
+ /** Execute a runtime concerning action on a specific `AppInstallation`. */
10
10
  executeAction: this.requestFunctionFactory(descriptors.appExecuteAction),
11
- /** get a specific `App` */
11
+ /** Get a specific `App`. */
12
12
  getApp: this.requestFunctionFactory(descriptors.appGetApp),
13
- /** get a specific `AppInstallation` */
13
+ /** Get a specific `AppInstallation`. */
14
14
  getAppinstallation: this.requestFunctionFactory(descriptors.appGetAppinstallation),
15
- /** start uninstallation process for a specific `AppInstallation` */
15
+ /** Start uninstallation process for a specific `AppInstallation`. */
16
16
  uninstallAppinstallation: this.requestFunctionFactory(descriptors.appUninstallAppinstallation),
17
- /** patch desired properties of a specific `AppInstallation` */
17
+ /** Patch desired properties of a specific `AppInstallation`. */
18
18
  patchAppinstallation: this.requestFunctionFactory(descriptors.appPatchAppinstallation),
19
- /** get a specific `AppVersion` */
19
+ /** Get a specific `AppVersion`. */
20
20
  getAppversion: this.requestFunctionFactory(descriptors.appGetAppversion),
21
- /** get the missing requirements of an appInstallation for a specific target AppVersion */
21
+ /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
22
22
  getMissingDependenciesForAppinstallation: this.requestFunctionFactory(descriptors.appGetMissingDependenciesForAppinstallation),
23
- /** get a specific `SystemSoftware` */
23
+ /** Get a specific `SystemSoftware`. */
24
24
  getSystemsoftware: this.requestFunctionFactory(descriptors.appGetSystemsoftware),
25
- /** get a specific `SystemSoftwareVersion` */
25
+ /** Get a specific `SystemSoftwareVersion`. */
26
26
  getSystemsoftwareversion: this.requestFunctionFactory(descriptors.appGetSystemsoftwareversion),
27
- /** create linkage between an `AppInstallation` and a `Database` */
27
+ /** Create linkage between an `AppInstallation` and a MySql-`Database`. */
28
28
  linkDatabase: this.requestFunctionFactory(descriptors.appLinkDatabase),
29
- /** get all `AppInstallations` inside a specific `Project` */
29
+ /** Get all `AppInstallations` inside a specific `Project`. */
30
30
  listAppinstallations: this.requestFunctionFactory(descriptors.appListAppinstallations),
31
- /** request a new `AppInstallation` */
31
+ /** Request a new `AppInstallation`. */
32
32
  requestAppinstallation: this.requestFunctionFactory(descriptors.appRequestAppinstallation),
33
- /** get all available `Apps` */
33
+ /** Get all available `Apps`. */
34
34
  listApps: this.requestFunctionFactory(descriptors.appListApps),
35
- /** get all `AppVersions` of a specific `App` */
35
+ /** Get all `AppVersions` of a specific `App`. */
36
36
  listAppversions: this.requestFunctionFactory(descriptors.appListAppversions),
37
- /** get all available `SystemSoftware` */
37
+ /** Get all available `SystemSoftware`. */
38
38
  listSystemsoftwares: this.requestFunctionFactory(descriptors.appListSystemsoftwares),
39
- /** get all available `SystemSoftwareVersions` of a specific `SystemSoftware` */
39
+ /** Get all available `SystemSoftwareVersions` of a specific `SystemSoftware`. */
40
40
  listSystemsoftwareversions: this.requestFunctionFactory(descriptors.appListSystemsoftwareversions),
41
- /** get all update candidates for a specific `AppVersion` */
41
+ /** Get all update candidates for a specific `AppVersion`. */
42
42
  listUpdateCandidatesForAppversion: this.requestFunctionFactory(descriptors.appListUpdateCandidatesForAppversion),
43
- /** request a copy of an `AppInstallation` */
43
+ /** Request a copy of an `AppInstallation`. */
44
44
  requestAppinstallationCopy: this.requestFunctionFactory(descriptors.appRequestAppinstallationCopy),
45
- /** get runtime status of a specific `AppInstallation` */
45
+ /** Get runtime status of a specific `AppInstallation`. */
46
46
  retrieveStatus: this.requestFunctionFactory(descriptors.appRetrieveStatus),
47
- /** create linkage between an `AppInstallation` and `DatabaseUsers` */
47
+ /** Create linkage between an `AppInstallation` and `DatabaseUsers`. */
48
48
  setDatabaseUsers: this.requestFunctionFactory(descriptors.appSetDatabaseUsers),
49
- /** remove linkage between an `AppInstallation` and a `Database` */
49
+ /** Remove linkage between an `AppInstallation` and a `Database`. */
50
50
  unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
51
51
  };
52
52
  /** The article API allows you to read article information. */
@@ -430,103 +430,17 @@ export class MittwaldAPIV2Client extends ApiClientBase {
430
430
  /** Update a mail setting of a Project. */
431
431
  updateProjectMailSetting: this.requestFunctionFactory(descriptors.mailUpdateProjectMailSetting),
432
432
  };
433
- /** The project API allows you to manage your projects, and also any kinds of user memberships concerning these projects. */
434
- project = {
435
- /** Accept a ProjectInvite. */
436
- acceptProjectInvite: this.requestFunctionFactory(descriptors.projectAcceptProjectInvite),
437
- /** Create a ProjectInvite. */
438
- createProjectInvite: this.requestFunctionFactory(descriptors.projectCreateProjectInvite),
439
- /** Create a Project belonging to a Server. */
440
- createProject: this.requestFunctionFactory(descriptors.projectCreateProject),
441
- /** Decline a ProjectInvite. */
442
- declineProjectInvite: this.requestFunctionFactory(descriptors.projectDeclineProjectInvite),
443
- /** Request a Project avatar upload. */
444
- requestProjectAvatarUpload: this.requestFunctionFactory(descriptors.projectRequestProjectAvatarUpload),
445
- /** Delete a Project's avatar. */
446
- deleteProjectAvatar: this.requestFunctionFactory(descriptors.projectDeleteProjectAvatar),
447
- /** Get a ProjectInvite. */
448
- getProjectInvite: this.requestFunctionFactory(descriptors.projectGetProjectInvite),
449
- /** Delete a ProjectInvite. */
450
- deleteProjectInvite: this.requestFunctionFactory(descriptors.projectDeleteProjectInvite),
451
- /** Get a ProjectMembership */
452
- getProjectMembership: this.requestFunctionFactory(descriptors.projectGetProjectMembership),
453
- /** Delete a ProjectMembership. */
454
- deleteProjectMembership: this.requestFunctionFactory(descriptors.projectDeleteProjectMembership),
455
- /** Update a ProjectMembership. */
456
- updateProjectMembership: this.requestFunctionFactory(descriptors.projectUpdateProjectMembership),
457
- /** Get a Project. */
458
- getProject: this.requestFunctionFactory(descriptors.projectGetProject),
459
- /** Delete a Project. */
460
- deleteProject: this.requestFunctionFactory(descriptors.projectDeleteProject),
461
- /** Request a Server avatar upload. */
462
- requestServerAvatarUpload: this.requestFunctionFactory(descriptors.projectRequestServerAvatarUpload),
463
- /** Delete a Server's avatar. */
464
- deleteServerAvatar: this.requestFunctionFactory(descriptors.projectDeleteServerAvatar),
465
- /** Get a ProjectInvite by token. */
466
- getProjectTokenInvite: this.requestFunctionFactory(descriptors.projectGetProjectTokenInvite),
467
- /** Get the executing user's membership in a Project. */
468
- getSelfMembershipForProject: this.requestFunctionFactory(descriptors.projectGetSelfMembershipForProject),
469
- /** Get a Server. */
470
- getServer: this.requestFunctionFactory(descriptors.projectGetServer),
471
- /** Leave a Project. */
472
- leaveProject: this.requestFunctionFactory(descriptors.projectLeaveProject),
473
- /** List Invites belonging to a Project. */
474
- listInvitesForProject: this.requestFunctionFactory(descriptors.projectListInvitesForProject),
475
- /** List Memberships belonging to a Project. */
476
- listMembershipsForProject: this.requestFunctionFactory(descriptors.projectListMembershipsForProject),
477
- /** List ProjectInvites belonging to the executing user. */
478
- listProjectInvites: this.requestFunctionFactory(descriptors.projectListProjectInvites),
479
- /** List ProjectMemberships belonging to the executing user. */
480
- listProjectMemberships: this.requestFunctionFactory(descriptors.projectListProjectMemberships),
481
- /** List Projects belonging to the executing user. */
482
- listProjects: this.requestFunctionFactory(descriptors.projectListProjects),
483
- /** List Servers belonging to the executing user. */
484
- listServers: this.requestFunctionFactory(descriptors.projectListServers),
485
- /** Resend the mail for a ProjectInvite. */
486
- resendProjectInviteMail: this.requestFunctionFactory(descriptors.projectResendProjectInviteMail),
487
- /** Update a Project's description. */
488
- updateProjectDescription: this.requestFunctionFactory(descriptors.projectUpdateProjectDescription),
489
- /** Update a Servers's description. */
490
- updateServerDescription: this.requestFunctionFactory(descriptors.projectUpdateServerDescription),
491
- };
492
- /** The filesystem API allows you to directly access the filesystem of your project. */
493
- projectFileSystem = {
494
- /** List directories belonging to a Project. */
495
- getDirectories: this.requestFunctionFactory(descriptors.projectFileSystemGetDirectories),
496
- /** Get a Project directory filesystem usage. */
497
- getDiskUsage: this.requestFunctionFactory(descriptors.projectFileSystemGetDiskUsage),
498
- /** Get a Project file's content. */
499
- getFileContent: this.requestFunctionFactory(descriptors.projectFileSystemGetFileContent),
500
- /** Get a Project's file/filesystem authorization token. */
501
- getJwt: this.requestFunctionFactory(descriptors.projectFileSystemGetJwt),
502
- /** Get a Project file's information. */
503
- listFiles: this.requestFunctionFactory(descriptors.projectFileSystemListFiles),
504
- };
505
- /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
506
- sshsftpUser = {
507
- /** Get all SFTPUsers for a Project. */
508
- sftpUserListSftpUsers: this.requestFunctionFactory(descriptors.sftpUserListSftpUsers),
509
- /** Create an SFTPUser for a Project. */
510
- sftpUserCreateSftpUser: this.requestFunctionFactory(descriptors.sftpUserCreateSftpUser),
511
- /** Get an SFTPUser. */
512
- sftpUserGetSftpUser: this.requestFunctionFactory(descriptors.sftpUserGetSftpUser),
513
- /** Delete an SFTPUser. */
514
- sftpUserDeleteSftpUser: this.requestFunctionFactory(descriptors.sftpUserDeleteSftpUser),
515
- /** Update an SFTPUser. */
516
- sftpUserUpdateSftpUser: this.requestFunctionFactory(descriptors.sftpUserUpdateSftpUser),
517
- /** Get all SSHUsers for a Project. */
518
- sshUserListSshUsers: this.requestFunctionFactory(descriptors.sshUserListSshUsers),
519
- /** Create an SSHUser for a Project. */
520
- sshUserCreateSshUser: this.requestFunctionFactory(descriptors.sshUserCreateSshUser),
521
- /** Get an SSHUser. */
522
- sshUserGetSshUser: this.requestFunctionFactory(descriptors.sshUserGetSshUser),
523
- /** Delete an SSHUser. */
524
- sshUserDeleteSshUser: this.requestFunctionFactory(descriptors.sshUserDeleteSshUser),
525
- /** Update an SSHUser. */
526
- sshUserUpdateSshUser: this.requestFunctionFactory(descriptors.sshUserUpdateSshUser),
433
+ /** The page insights API allows you to get page insights information. */
434
+ pageInsights = {
435
+ /** Get detailed performance data for a given domain and path. */
436
+ pageinsightsGetPerformanceData: this.requestFunctionFactory(descriptors.pageinsightsGetPerformanceData),
437
+ /** List websites (specified as domain and path) from a project where performance data is available. */
438
+ pageinsightsListPerformanceDataForProject: this.requestFunctionFactory(descriptors.pageinsightsListPerformanceDataForProject),
527
439
  };
528
440
  /** The user API allows you to manage your own user and access information of other users that might be visible to you. */
529
441
  user = {
442
+ /** Get a password policy. */
443
+ passwordValidationGetPasswordPolicy: this.requestFunctionFactory(descriptors.passwordValidationGetPasswordPolicy),
530
444
  /** Add phone number and start verification process. */
531
445
  addPhoneNumber: this.requestFunctionFactory(descriptors.userAddPhoneNumber),
532
446
  /** Remove phone number. */
@@ -624,5 +538,107 @@ export class MittwaldAPIV2Client extends ApiClientBase {
624
538
  /** Verify your registration. */
625
539
  verifyRegistration: this.requestFunctionFactory(descriptors.userVerifyRegistration),
626
540
  };
541
+ /** The project API allows you to manage your projects, and also any kinds of user memberships concerning these projects. */
542
+ project = {
543
+ /** Accept a ProjectInvite. */
544
+ acceptProjectInvite: this.requestFunctionFactory(descriptors.projectAcceptProjectInvite),
545
+ /** Create a ProjectInvite. */
546
+ createProjectInvite: this.requestFunctionFactory(descriptors.projectCreateProjectInvite),
547
+ /** Create a Project belonging to a Server. */
548
+ createProject: this.requestFunctionFactory(descriptors.projectCreateProject),
549
+ /** Decline a ProjectInvite. */
550
+ declineProjectInvite: this.requestFunctionFactory(descriptors.projectDeclineProjectInvite),
551
+ /** Request a Project avatar upload. */
552
+ requestProjectAvatarUpload: this.requestFunctionFactory(descriptors.projectRequestProjectAvatarUpload),
553
+ /** Delete a Project's avatar. */
554
+ deleteProjectAvatar: this.requestFunctionFactory(descriptors.projectDeleteProjectAvatar),
555
+ /** Get a ProjectInvite. */
556
+ getProjectInvite: this.requestFunctionFactory(descriptors.projectGetProjectInvite),
557
+ /** Delete a ProjectInvite. */
558
+ deleteProjectInvite: this.requestFunctionFactory(descriptors.projectDeleteProjectInvite),
559
+ /** Get a ProjectMembership */
560
+ getProjectMembership: this.requestFunctionFactory(descriptors.projectGetProjectMembership),
561
+ /** Delete a ProjectMembership. */
562
+ deleteProjectMembership: this.requestFunctionFactory(descriptors.projectDeleteProjectMembership),
563
+ /** Update a ProjectMembership. */
564
+ updateProjectMembership: this.requestFunctionFactory(descriptors.projectUpdateProjectMembership),
565
+ /** Get a Project. */
566
+ getProject: this.requestFunctionFactory(descriptors.projectGetProject),
567
+ /** Delete a Project. */
568
+ deleteProject: this.requestFunctionFactory(descriptors.projectDeleteProject),
569
+ /** Request a Server avatar upload. */
570
+ requestServerAvatarUpload: this.requestFunctionFactory(descriptors.projectRequestServerAvatarUpload),
571
+ /** Delete a Server's avatar. */
572
+ deleteServerAvatar: this.requestFunctionFactory(descriptors.projectDeleteServerAvatar),
573
+ /** Get a ProjectInvite by token. */
574
+ getProjectTokenInvite: this.requestFunctionFactory(descriptors.projectGetProjectTokenInvite),
575
+ /** Get the executing user's membership in a Project. */
576
+ getSelfMembershipForProject: this.requestFunctionFactory(descriptors.projectGetSelfMembershipForProject),
577
+ /** Get a Server. */
578
+ getServer: this.requestFunctionFactory(descriptors.projectGetServer),
579
+ /** Leave a Project. */
580
+ leaveProject: this.requestFunctionFactory(descriptors.projectLeaveProject),
581
+ /** List Invites belonging to a Project. */
582
+ listInvitesForProject: this.requestFunctionFactory(descriptors.projectListInvitesForProject),
583
+ /** List Memberships belonging to a Project. */
584
+ listMembershipsForProject: this.requestFunctionFactory(descriptors.projectListMembershipsForProject),
585
+ /** List ProjectInvites belonging to the executing user. */
586
+ listProjectInvites: this.requestFunctionFactory(descriptors.projectListProjectInvites),
587
+ /** List ProjectMemberships belonging to the executing user. */
588
+ listProjectMemberships: this.requestFunctionFactory(descriptors.projectListProjectMemberships),
589
+ /** List Projects belonging to the executing user. */
590
+ listProjects: this.requestFunctionFactory(descriptors.projectListProjects),
591
+ /** List Servers belonging to the executing user. */
592
+ listServers: this.requestFunctionFactory(descriptors.projectListServers),
593
+ /** Resend the mail for a ProjectInvite. */
594
+ resendProjectInviteMail: this.requestFunctionFactory(descriptors.projectResendProjectInviteMail),
595
+ /** Update a Project's description. */
596
+ updateProjectDescription: this.requestFunctionFactory(descriptors.projectUpdateProjectDescription),
597
+ /** Update a Servers's description. */
598
+ updateServerDescription: this.requestFunctionFactory(descriptors.projectUpdateServerDescription),
599
+ };
600
+ /** The filesystem API allows you to directly access the filesystem of your project. */
601
+ projectFileSystem = {
602
+ /** List directories belonging to a Project. */
603
+ getDirectories: this.requestFunctionFactory(descriptors.projectFileSystemGetDirectories),
604
+ /** Get a Project directory filesystem usage. */
605
+ getDiskUsage: this.requestFunctionFactory(descriptors.projectFileSystemGetDiskUsage),
606
+ /** Get a Project file's content. */
607
+ getFileContent: this.requestFunctionFactory(descriptors.projectFileSystemGetFileContent),
608
+ /** Get a Project's file/filesystem authorization token. */
609
+ getJwt: this.requestFunctionFactory(descriptors.projectFileSystemGetJwt),
610
+ /** Get a Project file's information. */
611
+ listFiles: this.requestFunctionFactory(descriptors.projectFileSystemListFiles),
612
+ };
613
+ /** The relocation API allows you to manage your relocations. */
614
+ relocation = {
615
+ /** Register a tariff change for a legacy tariff. */
616
+ createLegacyTariffChange: this.requestFunctionFactory(descriptors.relocationCreateLegacyTariffChange),
617
+ /** Relocate an external Project to mittwald. */
618
+ createRelocation: this.requestFunctionFactory(descriptors.relocationCreateRelocation),
619
+ };
620
+ /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
621
+ sshsftpUser = {
622
+ /** Get all SFTPUsers for a Project. */
623
+ sftpUserListSftpUsers: this.requestFunctionFactory(descriptors.sftpUserListSftpUsers),
624
+ /** Create an SFTPUser for a Project. */
625
+ sftpUserCreateSftpUser: this.requestFunctionFactory(descriptors.sftpUserCreateSftpUser),
626
+ /** Get an SFTPUser. */
627
+ sftpUserGetSftpUser: this.requestFunctionFactory(descriptors.sftpUserGetSftpUser),
628
+ /** Delete an SFTPUser. */
629
+ sftpUserDeleteSftpUser: this.requestFunctionFactory(descriptors.sftpUserDeleteSftpUser),
630
+ /** Update an SFTPUser. */
631
+ sftpUserUpdateSftpUser: this.requestFunctionFactory(descriptors.sftpUserUpdateSftpUser),
632
+ /** Get all SSHUsers for a Project. */
633
+ sshUserListSshUsers: this.requestFunctionFactory(descriptors.sshUserListSshUsers),
634
+ /** Create an SSHUser for a Project. */
635
+ sshUserCreateSshUser: this.requestFunctionFactory(descriptors.sshUserCreateSshUser),
636
+ /** Get an SSHUser. */
637
+ sshUserGetSshUser: this.requestFunctionFactory(descriptors.sshUserGetSshUser),
638
+ /** Delete an SSHUser. */
639
+ sshUserDeleteSshUser: this.requestFunctionFactory(descriptors.sshUserDeleteSshUser),
640
+ /** Update an SSHUser. */
641
+ sshUserUpdateSshUser: this.requestFunctionFactory(descriptors.sshUserUpdateSshUser),
642
+ };
627
643
  }
628
644
  export default MittwaldAPIV2Client;
@@ -3,47 +3,47 @@ import { RequestType } from "@mittwald/api-client-commons";
3
3
  import { Response } from "@mittwald/api-client-commons";
4
4
  import { OpenAPIOperation } from "@mittwald/api-client-commons";
5
5
  import { MittwaldAPIV2 } from "./types.js";
6
- /** execute a runtime concerning action on a specific `AppInstallation` */
6
+ /** Execute a runtime concerning action on a specific `AppInstallation`. */
7
7
  export declare const appExecuteAction: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdActionsAction.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdActionsAction.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdActionsAction.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdActionsAction.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdActionsAction.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdActionsAction.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdActionsAction.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
8
- /** get a specific `App` */
8
+ /** Get a specific `App`. */
9
9
  export declare const appGetApp: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppsAppId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppsAppId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppsAppId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
10
- /** get a specific `AppInstallation` */
10
+ /** Get a specific `AppInstallation`. */
11
11
  export declare const appGetAppinstallation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
12
- /** start uninstallation process for a specific `AppInstallation` */
12
+ /** Start uninstallation process for a specific `AppInstallation`. */
13
13
  export declare const appUninstallAppinstallation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
14
- /** patch desired properties of a specific `AppInstallation` */
14
+ /** Patch desired properties of a specific `AppInstallation`. */
15
15
  export declare const appPatchAppinstallation: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
16
- /** get a specific `AppVersion` */
16
+ /** Get a specific `AppVersion`. */
17
17
  export declare const appGetAppversion: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsAppVersionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
18
- /** get the missing requirements of an appInstallation for a specific target AppVersion */
18
+ /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
19
19
  export declare const appGetMissingDependenciesForAppinstallation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdMissingDependencies.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdMissingDependencies.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdMissingDependencies.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdMissingDependencies.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdMissingDependencies.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdMissingDependencies.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
20
- /** get a specific `SystemSoftware` */
20
+ /** Get a specific `SystemSoftware`. */
21
21
  export declare const appGetSystemsoftware: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwaresSystemSoftwareId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwaresSystemSoftwareId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwaresSystemSoftwareId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemsoftwaresSystemSoftwareId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemsoftwaresSystemSoftwareId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemsoftwaresSystemSoftwareId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
22
- /** get a specific `SystemSoftwareVersion` */
22
+ /** Get a specific `SystemSoftwareVersion`. */
23
23
  export declare const appGetSystemsoftwareversion: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
24
- /** create linkage between an `AppInstallation` and a `Database` */
24
+ /** Create linkage between an `AppInstallation` and a MySql-`Database`. */
25
25
  export declare const appLinkDatabase: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabases.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabases.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabases.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabases.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabases.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabases.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabases.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
26
- /** get all `AppInstallations` inside a specific `Project` */
26
+ /** Get all `AppInstallations` inside a specific `Project`. */
27
27
  export declare const appListAppinstallations: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
28
- /** request a new `AppInstallation` */
28
+ /** Request a new `AppInstallation`. */
29
29
  export declare const appRequestAppinstallation: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppinstallations.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
30
- /** get all available `Apps` */
30
+ /** Get all available `Apps`. */
31
31
  export declare const appListApps: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Apps.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Apps.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Apps.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Apps.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Apps.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
32
- /** get all `AppVersions` of a specific `App` */
32
+ /** Get all `AppVersions` of a specific `App`. */
33
33
  export declare const appListAppversions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
34
- /** get all available `SystemSoftware` */
34
+ /** Get all available `SystemSoftware`. */
35
35
  export declare const appListSystemsoftwares: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
36
- /** get all available `SystemSoftwareVersions` of a specific `SystemSoftware` */
36
+ /** Get all available `SystemSoftwareVersions` of a specific `SystemSoftware`. */
37
37
  export declare const appListSystemsoftwareversions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
38
- /** get all update candidates for a specific `AppVersion` */
38
+ /** Get all update candidates for a specific `AppVersion`. */
39
39
  export declare const appListUpdateCandidatesForAppversion: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
40
- /** request a copy of an `AppInstallation` */
40
+ /** Request a copy of an `AppInstallation`. */
41
41
  export declare const appRequestAppinstallationCopy: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
42
- /** get runtime status of a specific `AppInstallation` */
42
+ /** Get runtime status of a specific `AppInstallation`. */
43
43
  export declare const appRetrieveStatus: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
44
- /** create linkage between an `AppInstallation` and `DatabaseUsers` */
44
+ /** Create linkage between an `AppInstallation` and `DatabaseUsers`. */
45
45
  export declare const appSetDatabaseUsers: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
46
- /** remove linkage between an `AppInstallation` and a `Database` */
46
+ /** Remove linkage between an `AppInstallation` and a `Database`. */
47
47
  export declare const appUnlinkDatabase: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdDatabasesDatabaseId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
48
48
  /** Get an Article. */
49
49
  export declare const articleGetArticle: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ArticlesArticleId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -372,7 +372,7 @@ export declare const newsletterGetInfo: OpenAPIOperation<RequestType<Simplify<nu
372
372
  /** Unsubscribe a user from the mStudio newsletter. */
373
373
  export declare const newsletterUnsubscribeUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
374
374
  /** Get the counts for unread notifications of the user. */
375
- export declare const notificationsCountUnreadNotifications: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
375
+ export declare const notificationsCountUnreadNotifications: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NotificationUnreadCounts.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NotificationUnreadCounts.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NotificationUnreadCounts.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NotificationUnreadCounts.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NotificationUnreadCounts.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
376
376
  /** List all unread notifications. */
377
377
  export declare const notificationsListNotifications: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Notifications.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Notifications.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Notifications.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Notifications.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Notifications.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
378
378
  /** Mark all notifications as read. */
@@ -432,9 +432,9 @@ export declare const projectDeleteServerAvatar: OpenAPIOperation<RequestType<Sim
432
432
  /** List directories belonging to a Project. */
433
433
  export declare const projectFileSystemGetDirectories: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDirectories.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
434
434
  /** Get a Project directory filesystem usage. */
435
- export declare const projectFileSystemGetDiskUsage: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemUsagesDisk.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
435
+ export declare const projectFileSystemGetDiskUsage: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
436
436
  /** Get a Project file's content. */
437
- export declare const projectFileSystemGetFileContent: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Responses.$200.Content.TextPlain>, 200, "text/plain"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFilesRaw.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
437
+ export declare const projectFileSystemGetFileContent: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$200.Content.TextPlain>, 200, "text/plain"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
438
438
  /** Get a Project's file/filesystem authorization token. */
439
439
  export declare const projectFileSystemGetJwt: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json">>;
440
440
  /** Get a Project file's information. */
@@ -1,124 +1,124 @@
1
- /** execute a runtime concerning action on a specific `AppInstallation` */
1
+ /** Execute a runtime concerning action on a specific `AppInstallation`. */
2
2
  export const appExecuteAction = {
3
3
  path: "/v2/appinstallations/{appInstallationId}/actions/{action}",
4
4
  method: "POST",
5
5
  operationId: "app-execute-action",
6
6
  };
7
- /** get a specific `App` */
7
+ /** Get a specific `App`. */
8
8
  export const appGetApp = {
9
9
  path: "/v2/apps/{appId}",
10
10
  method: "GET",
11
11
  operationId: "app-get-app",
12
12
  };
13
- /** get a specific `AppInstallation` */
13
+ /** Get a specific `AppInstallation`. */
14
14
  export const appGetAppinstallation = {
15
15
  path: "/v2/appinstallations/{appInstallationId}",
16
16
  method: "GET",
17
17
  operationId: "app-get-appinstallation",
18
18
  };
19
- /** start uninstallation process for a specific `AppInstallation` */
19
+ /** Start uninstallation process for a specific `AppInstallation`. */
20
20
  export const appUninstallAppinstallation = {
21
21
  path: "/v2/appinstallations/{appInstallationId}",
22
22
  method: "DELETE",
23
23
  operationId: "app-uninstall-appinstallation",
24
24
  };
25
- /** patch desired properties of a specific `AppInstallation` */
25
+ /** Patch desired properties of a specific `AppInstallation`. */
26
26
  export const appPatchAppinstallation = {
27
27
  path: "/v2/appinstallations/{appInstallationId}",
28
28
  method: "PATCH",
29
29
  operationId: "app-patch-appinstallation",
30
30
  };
31
- /** get a specific `AppVersion` */
31
+ /** Get a specific `AppVersion`. */
32
32
  export const appGetAppversion = {
33
33
  path: "/v2/apps/{appId}/versions/{appVersionId}",
34
34
  method: "GET",
35
35
  operationId: "app-get-appversion",
36
36
  };
37
- /** get the missing requirements of an appInstallation for a specific target AppVersion */
37
+ /** Get the missing requirements of an appInstallation for a specific target AppVersion. */
38
38
  export const appGetMissingDependenciesForAppinstallation = {
39
39
  path: "/v2/appinstallations/{appInstallationId}/missing-dependencies",
40
40
  method: "GET",
41
41
  operationId: "app-get-missing-dependencies-for-appinstallation",
42
42
  };
43
- /** get a specific `SystemSoftware` */
43
+ /** Get a specific `SystemSoftware`. */
44
44
  export const appGetSystemsoftware = {
45
45
  path: "/v2/systemsoftwares/{systemSoftwareId}",
46
46
  method: "GET",
47
47
  operationId: "app-get-systemsoftware",
48
48
  };
49
- /** get a specific `SystemSoftwareVersion` */
49
+ /** Get a specific `SystemSoftwareVersion`. */
50
50
  export const appGetSystemsoftwareversion = {
51
51
  path: "/v2/systemsoftware/{systemSoftwareId}/versions/{systemSoftwareVersionId}",
52
52
  method: "GET",
53
53
  operationId: "app-get-systemsoftwareversion",
54
54
  };
55
- /** create linkage between an `AppInstallation` and a `Database` */
55
+ /** Create linkage between an `AppInstallation` and a MySql-`Database`. */
56
56
  export const appLinkDatabase = {
57
57
  path: "/v2/appinstallations/{appInstallationId}/databases",
58
58
  method: "PUT",
59
59
  operationId: "app-link-database",
60
60
  };
61
- /** get all `AppInstallations` inside a specific `Project` */
61
+ /** Get all `AppInstallations` inside a specific `Project`. */
62
62
  export const appListAppinstallations = {
63
63
  path: "/v2/projects/{projectId}/appinstallations",
64
64
  method: "GET",
65
65
  operationId: "app-list-appinstallations",
66
66
  };
67
- /** request a new `AppInstallation` */
67
+ /** Request a new `AppInstallation`. */
68
68
  export const appRequestAppinstallation = {
69
69
  path: "/v2/projects/{projectId}/appinstallations",
70
70
  method: "POST",
71
71
  operationId: "app-request-appinstallation",
72
72
  };
73
- /** get all available `Apps` */
73
+ /** Get all available `Apps`. */
74
74
  export const appListApps = {
75
75
  path: "/v2/apps",
76
76
  method: "GET",
77
77
  operationId: "app-list-apps",
78
78
  };
79
- /** get all `AppVersions` of a specific `App` */
79
+ /** Get all `AppVersions` of a specific `App`. */
80
80
  export const appListAppversions = {
81
81
  path: "/v2/apps/{appId}/versions",
82
82
  method: "GET",
83
83
  operationId: "app-list-appversions",
84
84
  };
85
- /** get all available `SystemSoftware` */
85
+ /** Get all available `SystemSoftware`. */
86
86
  export const appListSystemsoftwares = {
87
87
  path: "/v2/systemsoftwares",
88
88
  method: "GET",
89
89
  operationId: "app-list-systemsoftwares",
90
90
  };
91
- /** get all available `SystemSoftwareVersions` of a specific `SystemSoftware` */
91
+ /** Get all available `SystemSoftwareVersions` of a specific `SystemSoftware`. */
92
92
  export const appListSystemsoftwareversions = {
93
93
  path: "/v2/systemsoftware/{systemSoftwareId}/versions",
94
94
  method: "GET",
95
95
  operationId: "app-list-systemsoftwareversions",
96
96
  };
97
- /** get all update candidates for a specific `AppVersion` */
97
+ /** Get all update candidates for a specific `AppVersion`. */
98
98
  export const appListUpdateCandidatesForAppversion = {
99
99
  path: "/v2/apps/{appId}/versions/{baseAppVersionId}/update-candidates",
100
100
  method: "GET",
101
101
  operationId: "app-list-update-candidates-for-appversion",
102
102
  };
103
- /** request a copy of an `AppInstallation` */
103
+ /** Request a copy of an `AppInstallation`. */
104
104
  export const appRequestAppinstallationCopy = {
105
105
  path: "/v2/appinstallations/{id}/actions/copy",
106
106
  method: "POST",
107
107
  operationId: "app-request-appinstallation-copy",
108
108
  };
109
- /** get runtime status of a specific `AppInstallation` */
109
+ /** Get runtime status of a specific `AppInstallation`. */
110
110
  export const appRetrieveStatus = {
111
111
  path: "/v2/appinstallations/{appInstallationId}/status",
112
112
  method: "GET",
113
113
  operationId: "app-retrieve-status",
114
114
  };
115
- /** create linkage between an `AppInstallation` and `DatabaseUsers` */
115
+ /** Create linkage between an `AppInstallation` and `DatabaseUsers`. */
116
116
  export const appSetDatabaseUsers = {
117
117
  path: "/v2/appinstallations/{appInstallationId}/databases/{databaseId}",
118
118
  method: "PUT",
119
119
  operationId: "app-set-database-users",
120
120
  };
121
- /** remove linkage between an `AppInstallation` and a `Database` */
121
+ /** Remove linkage between an `AppInstallation` and a `Database`. */
122
122
  export const appUnlinkDatabase = {
123
123
  path: "/v2/appinstallations/{appInstallationId}/databases/{databaseId}",
124
124
  method: "DELETE",
@@ -1104,7 +1104,7 @@ export const newsletterUnsubscribeUser = {
1104
1104
  };
1105
1105
  /** Get the counts for unread notifications of the user. */
1106
1106
  export const notificationsCountUnreadNotifications = {
1107
- path: "/v2/notifications/unread-counts",
1107
+ path: "/v2/notification-unread-counts",
1108
1108
  method: "GET",
1109
1109
  operationId: "notifications-count-unread-notifications",
1110
1110
  };
@@ -1278,19 +1278,19 @@ export const projectDeleteServerAvatar = {
1278
1278
  };
1279
1279
  /** List directories belonging to a Project. */
1280
1280
  export const projectFileSystemGetDirectories = {
1281
- path: "/v2/projects/{projectId}/filesystem/directories",
1281
+ path: "/v2/projects/{projectId}/filesystem-directories",
1282
1282
  method: "GET",
1283
1283
  operationId: "project-file-system-get-directories",
1284
1284
  };
1285
1285
  /** Get a Project directory filesystem usage. */
1286
1286
  export const projectFileSystemGetDiskUsage = {
1287
- path: "/v2/projects/{projectId}/filesystem/usages/disk",
1287
+ path: "/v2/projects/{projectId}/filesystem-disk-usage",
1288
1288
  method: "GET",
1289
1289
  operationId: "project-file-system-get-disk-usage",
1290
1290
  };
1291
1291
  /** Get a Project file's content. */
1292
1292
  export const projectFileSystemGetFileContent = {
1293
- path: "/v2/projects/{projectId}/filesystem/files/raw",
1293
+ path: "/v2/projects/{projectId}/filesystem-file-content",
1294
1294
  method: "GET",
1295
1295
  operationId: "project-file-system-get-file-content",
1296
1296
  };
@@ -1302,7 +1302,7 @@ export const projectFileSystemGetJwt = {
1302
1302
  };
1303
1303
  /** Get a Project file's information. */
1304
1304
  export const projectFileSystemListFiles = {
1305
- path: "/v2/projects/{projectId}/filesystem/files",
1305
+ path: "/v2/projects/{projectId}/filesystem-files",
1306
1306
  method: "GET",
1307
1307
  operationId: "project-file-system-list-files",
1308
1308
  };