@mittwald/api-client 3.1.3 → 3.1.5

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. */
@@ -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
  };
@@ -3633,6 +3633,7 @@ export declare module MittwaldAPIV2 {
3633
3633
  };
3634
3634
  interface RequestBody {
3635
3635
  description: string;
3636
+ targetProjectId?: string;
3636
3637
  }
3637
3638
  type Header = {};
3638
3639
  type Query = {};
@@ -8900,6 +8901,7 @@ export declare module MittwaldAPIV2 {
8900
8901
  type Header = {
8901
8902
  Accept?: "binary" | "base64" | "ocr";
8902
8903
  Download?: boolean;
8904
+ Token?: string;
8903
8905
  };
8904
8906
  type Query = {};
8905
8907
  }
@@ -10633,7 +10635,8 @@ export declare module MittwaldAPIV2 {
10633
10635
  }
10634
10636
  }
10635
10637
  }
10636
- namespace V2NotificationsUnreadCounts {
10638
+ namespace V2NotificationsUnreadCounts { }
10639
+ namespace V2NotificationUnreadCounts {
10637
10640
  namespace Get {
10638
10641
  namespace Parameters {
10639
10642
  type Path = {};
@@ -11698,6 +11701,7 @@ export declare module MittwaldAPIV2 {
11698
11701
  }
11699
11702
  }
11700
11703
  }
11704
+ namespace V2ProjectsProjectIdFilesystemDirectories { }
11701
11705
  namespace V2ProjectsProjectIdFilesystemDirectories {
11702
11706
  namespace Get {
11703
11707
  namespace Parameters {
@@ -11751,7 +11755,8 @@ export declare module MittwaldAPIV2 {
11751
11755
  }
11752
11756
  }
11753
11757
  }
11754
- namespace V2ProjectsProjectIdFilesystemUsagesDisk {
11758
+ namespace V2ProjectsProjectIdFilesystemUsagesDisk { }
11759
+ namespace V2ProjectsProjectIdFilesystemDiskUsage {
11755
11760
  namespace Get {
11756
11761
  namespace Parameters {
11757
11762
  type Path = {
@@ -11799,7 +11804,8 @@ export declare module MittwaldAPIV2 {
11799
11804
  }
11800
11805
  }
11801
11806
  }
11802
- namespace V2ProjectsProjectIdFilesystemFilesRaw {
11807
+ namespace V2ProjectsProjectIdFilesystemFilesRaw { }
11808
+ namespace V2ProjectsProjectIdFilesystemFileContent {
11803
11809
  namespace Get {
11804
11810
  namespace Parameters {
11805
11811
  type Path = {
@@ -11887,6 +11893,7 @@ export declare module MittwaldAPIV2 {
11887
11893
  }
11888
11894
  }
11889
11895
  }
11896
+ namespace V2ProjectsProjectIdFilesystemFiles { }
11890
11897
  namespace V2ProjectsProjectIdFilesystemFiles {
11891
11898
  namespace Get {
11892
11899
  namespace Parameters {
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '3.1.3';
1
+ export declare const MittwaldAPIClientVersion = '3.1.5';
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '3.1.3';
1
+ export const MittwaldAPIClientVersion = '3.1.5';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "3.1.3",
3
+ "version": "3.1.5",
4
4
  "description": "Auto-generated client for the mittwald API",
5
5
  "license": "MIT",
6
6
  "repository": "github:mittwald/api-client-js",