@mittwald/api-client 4.424.0 → 4.425.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -940,6 +940,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
940
940
  getProject: this.requestFunctionFactory(descriptors.projectGetProject),
941
941
  /** Delete a Project. */
942
942
  deleteProject: this.requestFunctionFactory(descriptors.projectDeleteProject),
943
+ /** Update a Project. */
944
+ updateProject: this.requestFunctionFactory(descriptors.projectUpdateProject),
943
945
  /** Request a Server avatar upload. */
944
946
  requestServerAvatarUpload: this.requestFunctionFactory(descriptors.projectRequestServerAvatarUpload),
945
947
  /** Delete a Server's avatar. */
@@ -950,6 +952,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
950
952
  getSelfMembershipForProject: this.requestFunctionFactory(descriptors.projectGetSelfMembershipForProject),
951
953
  /** Get a Server. */
952
954
  getServer: this.requestFunctionFactory(descriptors.projectGetServer),
955
+ /** Update a Server. */
956
+ updateServer: this.requestFunctionFactory(descriptors.projectUpdateServer),
953
957
  /** List Projects belonging to a Customer. */
954
958
  listCustomerProjects: this.requestFunctionFactory(descriptors.projectListCustomerProjects),
955
959
  /** List Memberships belonging to a Project. */
@@ -2230,6 +2230,12 @@ export const projectDeleteProject = {
2230
2230
  method: "DELETE",
2231
2231
  operationId: "project-delete-project",
2232
2232
  };
2233
+ /** Update a Project. */
2234
+ export const projectUpdateProject = {
2235
+ path: "/v2/projects/{projectId}",
2236
+ method: "PATCH",
2237
+ operationId: "project-update-project",
2238
+ };
2233
2239
  /** Request a Server avatar upload. */
2234
2240
  export const projectRequestServerAvatarUpload = {
2235
2241
  path: "/v2/servers/{serverId}/avatar",
@@ -2290,6 +2296,12 @@ export const projectGetServer = {
2290
2296
  method: "GET",
2291
2297
  operationId: "project-get-server",
2292
2298
  };
2299
+ /** Update a Server. */
2300
+ export const projectUpdateServer = {
2301
+ path: "/v2/servers/{serverId}",
2302
+ method: "PATCH",
2303
+ operationId: "project-update-server",
2304
+ };
2293
2305
  /** List Projects belonging to a Customer. */
2294
2306
  export const projectListCustomerProjects = {
2295
2307
  path: "/v2/customers/{customerId}/projects",
@@ -940,6 +940,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
940
940
  getProject: this.requestFunctionFactory(descriptors.projectGetProject),
941
941
  /** Delete a Project. */
942
942
  deleteProject: this.requestFunctionFactory(descriptors.projectDeleteProject),
943
+ /** Update a Project. */
944
+ updateProject: this.requestFunctionFactory(descriptors.projectUpdateProject),
943
945
  /** Request a Server avatar upload. */
944
946
  requestServerAvatarUpload: this.requestFunctionFactory(descriptors.projectRequestServerAvatarUpload),
945
947
  /** Delete a Server's avatar. */
@@ -950,6 +952,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
950
952
  getSelfMembershipForProject: this.requestFunctionFactory(descriptors.projectGetSelfMembershipForProject),
951
953
  /** Get a Server. */
952
954
  getServer: this.requestFunctionFactory(descriptors.projectGetServer),
955
+ /** Update a Server. */
956
+ updateServer: this.requestFunctionFactory(descriptors.projectUpdateServer),
953
957
  /** List Projects belonging to a Customer. */
954
958
  listCustomerProjects: this.requestFunctionFactory(descriptors.projectListCustomerProjects),
955
959
  /** List Memberships belonging to a Project. */
@@ -2230,6 +2230,12 @@ export const projectDeleteProject = {
2230
2230
  method: "DELETE",
2231
2231
  operationId: "project-delete-project",
2232
2232
  };
2233
+ /** Update a Project. */
2234
+ export const projectUpdateProject = {
2235
+ path: "/v3-next/projects/{projectId}",
2236
+ method: "PATCH",
2237
+ operationId: "project-update-project",
2238
+ };
2233
2239
  /** Request a Server avatar upload. */
2234
2240
  export const projectRequestServerAvatarUpload = {
2235
2241
  path: "/v3-next/servers/{serverId}/avatar",
@@ -2290,6 +2296,12 @@ export const projectGetServer = {
2290
2296
  method: "GET",
2291
2297
  operationId: "project-get-server",
2292
2298
  };
2299
+ /** Update a Server. */
2300
+ export const projectUpdateServer = {
2301
+ path: "/v3-next/servers/{serverId}",
2302
+ method: "PATCH",
2303
+ operationId: "project-update-server",
2304
+ };
2293
2305
  /** List Projects belonging to a Customer. */
2294
2306
  export const projectListCustomerProjects = {
2295
2307
  path: "/v3-next/customers/{customerId}/projects",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.423.0';
1
+ export const MittwaldAPIClientVersion = '4.424.0';
@@ -1777,14 +1777,14 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1777
1777
  } | undefined;
1778
1778
  queryParameters?: {
1779
1779
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1780
- limit?: number | undefined;
1781
- skip?: number | undefined;
1782
- page?: number | undefined;
1783
1780
  since?: string | undefined;
1784
1781
  until?: string | undefined;
1785
1782
  status?: string | undefined;
1786
1783
  triggeredByUser?: boolean | undefined;
1787
1784
  sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder | undefined;
1785
+ limit?: number | undefined;
1786
+ skip?: number | undefined;
1787
+ page?: number | undefined;
1788
1788
  } | undefined;
1789
1789
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecution[]>;
1790
1790
  /** Get a Cronjob. */
@@ -1821,7 +1821,6 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1821
1821
  cronjobId: string;
1822
1822
  headers?: {
1823
1823
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1824
- "Accept-Language"?: "de" | "en" | undefined;
1825
1824
  "x-access-token"?: string | undefined;
1826
1825
  } | undefined;
1827
1826
  }) => import("@mittwald/react-use-promise").AsyncResource<{
@@ -14067,14 +14067,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14067
14067
  } | undefined;
14068
14068
  queryParameters?: {
14069
14069
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
14070
- limit?: number | undefined;
14071
- skip?: number | undefined;
14072
- page?: number | undefined;
14073
14070
  since?: string | undefined;
14074
14071
  until?: string | undefined;
14075
14072
  status?: string | undefined;
14076
14073
  triggeredByUser?: boolean | undefined;
14077
14074
  sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder | undefined;
14075
+ limit?: number | undefined;
14076
+ skip?: number | undefined;
14077
+ page?: number | undefined;
14078
14078
  } | undefined;
14079
14079
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
14080
14080
  headers?: Partial<{
@@ -14086,14 +14086,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14086
14086
  };
14087
14087
  } & {
14088
14088
  queryParameters: {
14089
- limit?: number | undefined;
14090
- skip?: number | undefined;
14091
- page?: number | undefined;
14092
14089
  since?: string | undefined;
14093
14090
  until?: string | undefined;
14094
14091
  status?: string | undefined;
14095
14092
  triggeredByUser?: boolean | undefined;
14096
14093
  sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder | undefined;
14094
+ limit?: number | undefined;
14095
+ skip?: number | undefined;
14096
+ page?: number | undefined;
14097
14097
  } & Partial<{
14098
14098
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
14099
14099
  }>;
@@ -14115,14 +14115,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14115
14115
  };
14116
14116
  } & {
14117
14117
  queryParameters: {
14118
- limit?: number | undefined;
14119
- skip?: number | undefined;
14120
- page?: number | undefined;
14121
14118
  since?: string | undefined;
14122
14119
  until?: string | undefined;
14123
14120
  status?: string | undefined;
14124
14121
  triggeredByUser?: boolean | undefined;
14125
14122
  sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder | undefined;
14123
+ limit?: number | undefined;
14124
+ skip?: number | undefined;
14125
+ page?: number | undefined;
14126
14126
  } & Partial<{
14127
14127
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
14128
14128
  }>;
@@ -14434,7 +14434,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14434
14434
  cronjobId: string;
14435
14435
  headers?: {
14436
14436
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
14437
- "Accept-Language"?: "de" | "en" | undefined;
14438
14437
  "x-access-token"?: string | undefined;
14439
14438
  } | undefined;
14440
14439
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -14448,7 +14447,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14448
14447
  };
14449
14448
  } & {
14450
14449
  headers: {
14451
- "Accept-Language"?: "de" | "en" | undefined;
14452
14450
  "x-access-token"?: string | undefined;
14453
14451
  } & Partial<{
14454
14452
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -14478,7 +14476,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14478
14476
  };
14479
14477
  } & {
14480
14478
  headers: {
14481
- "Accept-Language"?: "de" | "en" | undefined;
14482
14479
  "x-access-token"?: string | undefined;
14483
14480
  } & Partial<{
14484
14481
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -28789,6 +28786,65 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
28789
28786
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
28790
28787
  [x: string]: unknown;
28791
28788
  }, 500, "application/json">>>;
28789
+ /** Update a Project. */
28790
+ updateProject: (request: {
28791
+ projectId: string;
28792
+ data?: {
28793
+ description?: string | undefined;
28794
+ } | undefined;
28795
+ headers?: {
28796
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
28797
+ "x-access-token"?: string | undefined;
28798
+ } | undefined;
28799
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
28800
+ data: {
28801
+ description?: string | undefined;
28802
+ };
28803
+ } & {
28804
+ pathParameters: {
28805
+ projectId: string;
28806
+ };
28807
+ } & {
28808
+ headers?: Partial<{
28809
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
28810
+ }>;
28811
+ } & {
28812
+ headers: {
28813
+ "x-access-token"?: string | undefined;
28814
+ } & Partial<{
28815
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
28816
+ }>;
28817
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
28818
+ [x: string]: unknown;
28819
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
28820
+ [x: string]: unknown;
28821
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
28822
+ [x: string]: unknown;
28823
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
28824
+ data: {
28825
+ description?: string | undefined;
28826
+ };
28827
+ } & {
28828
+ pathParameters: {
28829
+ projectId: string;
28830
+ };
28831
+ } & {
28832
+ headers?: Partial<{
28833
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
28834
+ }>;
28835
+ } & {
28836
+ headers: {
28837
+ "x-access-token"?: string | undefined;
28838
+ } & Partial<{
28839
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
28840
+ }>;
28841
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
28842
+ [x: string]: unknown;
28843
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
28844
+ [x: string]: unknown;
28845
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
28846
+ [x: string]: unknown;
28847
+ }, 429, "application/json">>>;
28792
28848
  /** Request a Server avatar upload. */
28793
28849
  requestServerAvatarUpload: (request: {
28794
28850
  serverId: string;
@@ -29105,6 +29161,65 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
29105
29161
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
29106
29162
  [x: string]: unknown;
29107
29163
  }, 429, "application/json">>>;
29164
+ /** Update a Server. */
29165
+ updateServer: (request: {
29166
+ serverId: string;
29167
+ data?: {
29168
+ description?: string | undefined;
29169
+ } | undefined;
29170
+ headers?: {
29171
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
29172
+ "x-access-token"?: string | undefined;
29173
+ } | undefined;
29174
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
29175
+ data: {
29176
+ description?: string | undefined;
29177
+ };
29178
+ } & {
29179
+ pathParameters: {
29180
+ serverId: string;
29181
+ };
29182
+ } & {
29183
+ headers?: Partial<{
29184
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29185
+ }>;
29186
+ } & {
29187
+ headers: {
29188
+ "x-access-token"?: string | undefined;
29189
+ } & Partial<{
29190
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29191
+ }>;
29192
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
29193
+ [x: string]: unknown;
29194
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
29195
+ [x: string]: unknown;
29196
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29197
+ [x: string]: unknown;
29198
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
29199
+ data: {
29200
+ description?: string | undefined;
29201
+ };
29202
+ } & {
29203
+ pathParameters: {
29204
+ serverId: string;
29205
+ };
29206
+ } & {
29207
+ headers?: Partial<{
29208
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29209
+ }>;
29210
+ } & {
29211
+ headers: {
29212
+ "x-access-token"?: string | undefined;
29213
+ } & Partial<{
29214
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29215
+ }>;
29216
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
29217
+ [x: string]: unknown;
29218
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
29219
+ [x: string]: unknown;
29220
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29221
+ [x: string]: unknown;
29222
+ }, 429, "application/json">>>;
29108
29223
  /** List Projects belonging to a Customer. */
29109
29224
  listCustomerProjects: (request: {
29110
29225
  customerId: string;
@@ -747,6 +747,8 @@ export declare const projectUpdateProjectMembership: OpenAPIOperation<RequestTyp
747
747
  export declare const projectGetProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
748
748
  /** Delete a Project. */
749
749
  export declare const projectDeleteProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
750
+ /** Update a Project. */
751
+ export declare const projectUpdateProject: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
750
752
  /** Request a Server avatar upload. */
751
753
  export declare const projectRequestServerAvatarUpload: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdAvatar.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
752
754
  /** Delete a Server's avatar. */
@@ -767,6 +769,8 @@ export declare const projectGetProjectTokenInvite: OpenAPIOperation<RequestType<
767
769
  export declare const projectGetSelfMembershipForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
768
770
  /** Get a Server. */
769
771
  export declare const projectGetServer: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
772
+ /** Update a Server. */
773
+ export declare const projectUpdateServer: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
770
774
  /** List Projects belonging to a Customer. */
771
775
  export declare const projectListCustomerProjects: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
772
776
  /** List Memberships belonging to a Project. */
@@ -1490,6 +1490,10 @@ export declare namespace MittwaldAPIV2 {
1490
1490
  type RequestData = InferredRequestData<typeof descriptors.projectDeleteProject>;
1491
1491
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectDeleteProject, TStatus>;
1492
1492
  }
1493
+ namespace ProjectUpdateProject {
1494
+ type RequestData = InferredRequestData<typeof descriptors.projectUpdateProject>;
1495
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectUpdateProject, TStatus>;
1496
+ }
1493
1497
  namespace ProjectRequestServerAvatarUpload {
1494
1498
  type RequestData = InferredRequestData<typeof descriptors.projectRequestServerAvatarUpload>;
1495
1499
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectRequestServerAvatarUpload, TStatus>;
@@ -1530,6 +1534,10 @@ export declare namespace MittwaldAPIV2 {
1530
1534
  type RequestData = InferredRequestData<typeof descriptors.projectGetServer>;
1531
1535
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetServer, TStatus>;
1532
1536
  }
1537
+ namespace ProjectUpdateServer {
1538
+ type RequestData = InferredRequestData<typeof descriptors.projectUpdateServer>;
1539
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectUpdateServer, TStatus>;
1540
+ }
1533
1541
  namespace ProjectListCustomerProjects {
1534
1542
  type RequestData = InferredRequestData<typeof descriptors.projectListCustomerProjects>;
1535
1543
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListCustomerProjects, TStatus>;
@@ -14678,14 +14686,14 @@ export declare namespace MittwaldAPIV2 {
14678
14686
  };
14679
14687
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14680
14688
  type Query = {
14681
- limit?: number;
14682
- skip?: number;
14683
- page?: number;
14684
14689
  since?: string;
14685
14690
  until?: string;
14686
14691
  status?: string;
14687
14692
  triggeredByUser?: boolean;
14688
14693
  sortOrder?: MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder;
14694
+ limit?: number;
14695
+ skip?: number;
14696
+ page?: number;
14689
14697
  };
14690
14698
  }
14691
14699
  namespace Responses {
@@ -14916,9 +14924,7 @@ export declare namespace MittwaldAPIV2 {
14916
14924
  executionId: string;
14917
14925
  cronjobId: string;
14918
14926
  };
14919
- type Header = {
14920
- "Accept-Language"?: "de" | "en";
14921
- } & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14927
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14922
14928
  type Query = {};
14923
14929
  }
14924
14930
  namespace Responses {
@@ -26706,6 +26712,53 @@ export declare namespace MittwaldAPIV2 {
26706
26712
  }
26707
26713
  }
26708
26714
  }
26715
+ namespace Patch {
26716
+ namespace Parameters {
26717
+ type Path = {
26718
+ projectId: string;
26719
+ };
26720
+ interface RequestBody {
26721
+ description?: string;
26722
+ }
26723
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
26724
+ type Query = {};
26725
+ }
26726
+ namespace Responses {
26727
+ namespace $204 {
26728
+ namespace Content {
26729
+ type Empty = unknown;
26730
+ }
26731
+ }
26732
+ namespace $400 {
26733
+ namespace Content {
26734
+ interface ApplicationJson {
26735
+ [k: string]: unknown;
26736
+ }
26737
+ }
26738
+ }
26739
+ namespace $403 {
26740
+ namespace Content {
26741
+ interface ApplicationJson {
26742
+ [k: string]: unknown;
26743
+ }
26744
+ }
26745
+ }
26746
+ namespace $429 {
26747
+ namespace Content {
26748
+ interface ApplicationJson {
26749
+ [k: string]: unknown;
26750
+ }
26751
+ }
26752
+ }
26753
+ namespace Default {
26754
+ namespace Content {
26755
+ interface ApplicationJson {
26756
+ [k: string]: unknown;
26757
+ }
26758
+ }
26759
+ }
26760
+ }
26761
+ }
26709
26762
  }
26710
26763
  namespace V2ServersServerIdAvatar {
26711
26764
  namespace Post {
@@ -27248,6 +27301,53 @@ export declare namespace MittwaldAPIV2 {
27248
27301
  }
27249
27302
  }
27250
27303
  }
27304
+ namespace Patch {
27305
+ namespace Parameters {
27306
+ type Path = {
27307
+ serverId: string;
27308
+ };
27309
+ interface RequestBody {
27310
+ description?: string;
27311
+ }
27312
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
27313
+ type Query = {};
27314
+ }
27315
+ namespace Responses {
27316
+ namespace $204 {
27317
+ namespace Content {
27318
+ type Empty = unknown;
27319
+ }
27320
+ }
27321
+ namespace $400 {
27322
+ namespace Content {
27323
+ interface ApplicationJson {
27324
+ [k: string]: unknown;
27325
+ }
27326
+ }
27327
+ }
27328
+ namespace $403 {
27329
+ namespace Content {
27330
+ interface ApplicationJson {
27331
+ [k: string]: unknown;
27332
+ }
27333
+ }
27334
+ }
27335
+ namespace $429 {
27336
+ namespace Content {
27337
+ interface ApplicationJson {
27338
+ [k: string]: unknown;
27339
+ }
27340
+ }
27341
+ }
27342
+ namespace Default {
27343
+ namespace Content {
27344
+ interface ApplicationJson {
27345
+ [k: string]: unknown;
27346
+ }
27347
+ }
27348
+ }
27349
+ }
27350
+ }
27251
27351
  }
27252
27352
  namespace V2CustomersCustomerIdProjects {
27253
27353
  namespace Get {
@@ -1777,14 +1777,14 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV3NextClient) => {
1777
1777
  } | undefined;
1778
1778
  queryParameters?: {
1779
1779
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1780
- limit?: number | undefined;
1781
- skip?: number | undefined;
1782
- page?: number | undefined;
1783
1780
  since?: string | undefined;
1784
1781
  until?: string | undefined;
1785
1782
  status?: string | undefined;
1786
1783
  triggeredByUser?: boolean | undefined;
1787
1784
  sortOrder?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecutionSortOrder | undefined;
1785
+ limit?: number | undefined;
1786
+ skip?: number | undefined;
1787
+ page?: number | undefined;
1788
1788
  } | undefined;
1789
1789
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecution[]>;
1790
1790
  /** Get a Cronjob. */
@@ -1821,7 +1821,6 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV3NextClient) => {
1821
1821
  cronjobId: string;
1822
1822
  headers?: {
1823
1823
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1824
- "Accept-Language"?: "de" | "en" | undefined;
1825
1824
  "x-access-token"?: string | undefined;
1826
1825
  } | undefined;
1827
1826
  }) => import("@mittwald/react-use-promise").AsyncResource<{
@@ -14067,14 +14067,14 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
14067
14067
  } | undefined;
14068
14068
  queryParameters?: {
14069
14069
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
14070
- limit?: number | undefined;
14071
- skip?: number | undefined;
14072
- page?: number | undefined;
14073
14070
  since?: string | undefined;
14074
14071
  until?: string | undefined;
14075
14072
  status?: string | undefined;
14076
14073
  triggeredByUser?: boolean | undefined;
14077
14074
  sortOrder?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecutionSortOrder | undefined;
14075
+ limit?: number | undefined;
14076
+ skip?: number | undefined;
14077
+ page?: number | undefined;
14078
14078
  } | undefined;
14079
14079
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
14080
14080
  headers?: Partial<{
@@ -14086,14 +14086,14 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
14086
14086
  };
14087
14087
  } & {
14088
14088
  queryParameters: {
14089
- limit?: number | undefined;
14090
- skip?: number | undefined;
14091
- page?: number | undefined;
14092
14089
  since?: string | undefined;
14093
14090
  until?: string | undefined;
14094
14091
  status?: string | undefined;
14095
14092
  triggeredByUser?: boolean | undefined;
14096
14093
  sortOrder?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecutionSortOrder | undefined;
14094
+ limit?: number | undefined;
14095
+ skip?: number | undefined;
14096
+ page?: number | undefined;
14097
14097
  } & Partial<{
14098
14098
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
14099
14099
  }>;
@@ -14115,14 +14115,14 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
14115
14115
  };
14116
14116
  } & {
14117
14117
  queryParameters: {
14118
- limit?: number | undefined;
14119
- skip?: number | undefined;
14120
- page?: number | undefined;
14121
14118
  since?: string | undefined;
14122
14119
  until?: string | undefined;
14123
14120
  status?: string | undefined;
14124
14121
  triggeredByUser?: boolean | undefined;
14125
14122
  sortOrder?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecutionSortOrder | undefined;
14123
+ limit?: number | undefined;
14124
+ skip?: number | undefined;
14125
+ page?: number | undefined;
14126
14126
  } & Partial<{
14127
14127
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
14128
14128
  }>;
@@ -14434,7 +14434,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
14434
14434
  cronjobId: string;
14435
14435
  headers?: {
14436
14436
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
14437
- "Accept-Language"?: "de" | "en" | undefined;
14438
14437
  "x-access-token"?: string | undefined;
14439
14438
  } | undefined;
14440
14439
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -14448,7 +14447,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
14448
14447
  };
14449
14448
  } & {
14450
14449
  headers: {
14451
- "Accept-Language"?: "de" | "en" | undefined;
14452
14450
  "x-access-token"?: string | undefined;
14453
14451
  } & Partial<{
14454
14452
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -14478,7 +14476,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
14478
14476
  };
14479
14477
  } & {
14480
14478
  headers: {
14481
- "Accept-Language"?: "de" | "en" | undefined;
14482
14479
  "x-access-token"?: string | undefined;
14483
14480
  } & Partial<{
14484
14481
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -28789,6 +28786,65 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
28789
28786
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
28790
28787
  [x: string]: unknown;
28791
28788
  }, 500, "application/json">>>;
28789
+ /** Update a Project. */
28790
+ updateProject: (request: {
28791
+ projectId: string;
28792
+ data?: {
28793
+ description?: string | undefined;
28794
+ } | undefined;
28795
+ headers?: {
28796
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
28797
+ "x-access-token"?: string | undefined;
28798
+ } | undefined;
28799
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
28800
+ data: {
28801
+ description?: string | undefined;
28802
+ };
28803
+ } & {
28804
+ pathParameters: {
28805
+ projectId: string;
28806
+ };
28807
+ } & {
28808
+ headers?: Partial<{
28809
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
28810
+ }>;
28811
+ } & {
28812
+ headers: {
28813
+ "x-access-token"?: string | undefined;
28814
+ } & Partial<{
28815
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
28816
+ }>;
28817
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
28818
+ [x: string]: unknown;
28819
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
28820
+ [x: string]: unknown;
28821
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
28822
+ [x: string]: unknown;
28823
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
28824
+ data: {
28825
+ description?: string | undefined;
28826
+ };
28827
+ } & {
28828
+ pathParameters: {
28829
+ projectId: string;
28830
+ };
28831
+ } & {
28832
+ headers?: Partial<{
28833
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
28834
+ }>;
28835
+ } & {
28836
+ headers: {
28837
+ "x-access-token"?: string | undefined;
28838
+ } & Partial<{
28839
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
28840
+ }>;
28841
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
28842
+ [x: string]: unknown;
28843
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
28844
+ [x: string]: unknown;
28845
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
28846
+ [x: string]: unknown;
28847
+ }, 429, "application/json">>>;
28792
28848
  /** Request a Server avatar upload. */
28793
28849
  requestServerAvatarUpload: (request: {
28794
28850
  serverId: string;
@@ -29105,6 +29161,65 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
29105
29161
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
29106
29162
  [x: string]: unknown;
29107
29163
  }, 429, "application/json">>>;
29164
+ /** Update a Server. */
29165
+ updateServer: (request: {
29166
+ serverId: string;
29167
+ data?: {
29168
+ description?: string | undefined;
29169
+ } | undefined;
29170
+ headers?: {
29171
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
29172
+ "x-access-token"?: string | undefined;
29173
+ } | undefined;
29174
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
29175
+ data: {
29176
+ description?: string | undefined;
29177
+ };
29178
+ } & {
29179
+ pathParameters: {
29180
+ serverId: string;
29181
+ };
29182
+ } & {
29183
+ headers?: Partial<{
29184
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29185
+ }>;
29186
+ } & {
29187
+ headers: {
29188
+ "x-access-token"?: string | undefined;
29189
+ } & Partial<{
29190
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29191
+ }>;
29192
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
29193
+ [x: string]: unknown;
29194
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
29195
+ [x: string]: unknown;
29196
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29197
+ [x: string]: unknown;
29198
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
29199
+ data: {
29200
+ description?: string | undefined;
29201
+ };
29202
+ } & {
29203
+ pathParameters: {
29204
+ serverId: string;
29205
+ };
29206
+ } & {
29207
+ headers?: Partial<{
29208
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29209
+ }>;
29210
+ } & {
29211
+ headers: {
29212
+ "x-access-token"?: string | undefined;
29213
+ } & Partial<{
29214
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29215
+ }>;
29216
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
29217
+ [x: string]: unknown;
29218
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
29219
+ [x: string]: unknown;
29220
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29221
+ [x: string]: unknown;
29222
+ }, 429, "application/json">>>;
29108
29223
  /** List Projects belonging to a Customer. */
29109
29224
  listCustomerProjects: (request: {
29110
29225
  customerId: string;
@@ -747,6 +747,8 @@ export declare const projectUpdateProjectMembership: OpenAPIOperation<RequestTyp
747
747
  export declare const projectGetProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
748
748
  /** Delete a Project. */
749
749
  export declare const projectDeleteProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Delete.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Delete.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
750
+ /** Update a Project. */
751
+ export declare const projectUpdateProject: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Patch.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Patch.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
750
752
  /** Request a Server avatar upload. */
751
753
  export declare const projectRequestServerAvatarUpload: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerIdAvatar.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerIdAvatar.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerIdAvatar.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerIdAvatar.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerIdAvatar.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerIdAvatar.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerIdAvatar.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerIdAvatar.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
752
754
  /** Delete a Server's avatar. */
@@ -767,6 +769,8 @@ export declare const projectGetProjectTokenInvite: OpenAPIOperation<RequestType<
767
769
  export declare const projectGetSelfMembershipForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdMembershipsSelf.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdMembershipsSelf.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdMembershipsSelf.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdMembershipsSelf.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdMembershipsSelf.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdMembershipsSelf.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdMembershipsSelf.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdMembershipsSelf.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
768
770
  /** Get a Server. */
769
771
  export declare const projectGetServer: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
772
+ /** Update a Server. */
773
+ export declare const projectUpdateServer: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Patch.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Patch.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextServersServerId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
770
774
  /** List Projects belonging to a Customer. */
771
775
  export declare const projectListCustomerProjects: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdProjects.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdProjects.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdProjects.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdProjects.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdProjects.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdProjects.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdProjects.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdProjects.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
772
776
  /** List Memberships belonging to a Project. */
@@ -1490,6 +1490,10 @@ export declare namespace MittwaldAPIV3Next {
1490
1490
  type RequestData = InferredRequestData<typeof descriptors.projectDeleteProject>;
1491
1491
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectDeleteProject, TStatus>;
1492
1492
  }
1493
+ namespace ProjectUpdateProject {
1494
+ type RequestData = InferredRequestData<typeof descriptors.projectUpdateProject>;
1495
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectUpdateProject, TStatus>;
1496
+ }
1493
1497
  namespace ProjectRequestServerAvatarUpload {
1494
1498
  type RequestData = InferredRequestData<typeof descriptors.projectRequestServerAvatarUpload>;
1495
1499
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectRequestServerAvatarUpload, TStatus>;
@@ -1530,6 +1534,10 @@ export declare namespace MittwaldAPIV3Next {
1530
1534
  type RequestData = InferredRequestData<typeof descriptors.projectGetServer>;
1531
1535
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetServer, TStatus>;
1532
1536
  }
1537
+ namespace ProjectUpdateServer {
1538
+ type RequestData = InferredRequestData<typeof descriptors.projectUpdateServer>;
1539
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectUpdateServer, TStatus>;
1540
+ }
1533
1541
  namespace ProjectListCustomerProjects {
1534
1542
  type RequestData = InferredRequestData<typeof descriptors.projectListCustomerProjects>;
1535
1543
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListCustomerProjects, TStatus>;
@@ -14670,14 +14678,14 @@ export declare namespace MittwaldAPIV3Next {
14670
14678
  };
14671
14679
  type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
14672
14680
  type Query = {
14673
- limit?: number;
14674
- skip?: number;
14675
- page?: number;
14676
14681
  since?: string;
14677
14682
  until?: string;
14678
14683
  status?: string;
14679
14684
  triggeredByUser?: boolean;
14680
14685
  sortOrder?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecutionSortOrder;
14686
+ limit?: number;
14687
+ skip?: number;
14688
+ page?: number;
14681
14689
  };
14682
14690
  }
14683
14691
  namespace Responses {
@@ -14908,9 +14916,7 @@ export declare namespace MittwaldAPIV3Next {
14908
14916
  executionId: string;
14909
14917
  cronjobId: string;
14910
14918
  };
14911
- type Header = {
14912
- "Accept-Language"?: "de" | "en";
14913
- } & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
14919
+ type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
14914
14920
  type Query = {};
14915
14921
  }
14916
14922
  namespace Responses {
@@ -26648,6 +26654,53 @@ export declare namespace MittwaldAPIV3Next {
26648
26654
  }
26649
26655
  }
26650
26656
  }
26657
+ namespace Patch {
26658
+ namespace Parameters {
26659
+ type Path = {
26660
+ projectId: string;
26661
+ };
26662
+ interface RequestBody {
26663
+ description?: string;
26664
+ }
26665
+ type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
26666
+ type Query = {};
26667
+ }
26668
+ namespace Responses {
26669
+ namespace $204 {
26670
+ namespace Content {
26671
+ type Empty = unknown;
26672
+ }
26673
+ }
26674
+ namespace $400 {
26675
+ namespace Content {
26676
+ interface ApplicationJson {
26677
+ [k: string]: unknown;
26678
+ }
26679
+ }
26680
+ }
26681
+ namespace $403 {
26682
+ namespace Content {
26683
+ interface ApplicationJson {
26684
+ [k: string]: unknown;
26685
+ }
26686
+ }
26687
+ }
26688
+ namespace $429 {
26689
+ namespace Content {
26690
+ interface ApplicationJson {
26691
+ [k: string]: unknown;
26692
+ }
26693
+ }
26694
+ }
26695
+ namespace Default {
26696
+ namespace Content {
26697
+ interface ApplicationJson {
26698
+ [k: string]: unknown;
26699
+ }
26700
+ }
26701
+ }
26702
+ }
26703
+ }
26651
26704
  }
26652
26705
  namespace V3NextServersServerIdAvatar {
26653
26706
  namespace Post {
@@ -27186,6 +27239,53 @@ export declare namespace MittwaldAPIV3Next {
27186
27239
  }
27187
27240
  }
27188
27241
  }
27242
+ namespace Patch {
27243
+ namespace Parameters {
27244
+ type Path = {
27245
+ serverId: string;
27246
+ };
27247
+ interface RequestBody {
27248
+ description?: string;
27249
+ }
27250
+ type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
27251
+ type Query = {};
27252
+ }
27253
+ namespace Responses {
27254
+ namespace $204 {
27255
+ namespace Content {
27256
+ type Empty = unknown;
27257
+ }
27258
+ }
27259
+ namespace $400 {
27260
+ namespace Content {
27261
+ interface ApplicationJson {
27262
+ [k: string]: unknown;
27263
+ }
27264
+ }
27265
+ }
27266
+ namespace $403 {
27267
+ namespace Content {
27268
+ interface ApplicationJson {
27269
+ [k: string]: unknown;
27270
+ }
27271
+ }
27272
+ }
27273
+ namespace $429 {
27274
+ namespace Content {
27275
+ interface ApplicationJson {
27276
+ [k: string]: unknown;
27277
+ }
27278
+ }
27279
+ }
27280
+ namespace Default {
27281
+ namespace Content {
27282
+ interface ApplicationJson {
27283
+ [k: string]: unknown;
27284
+ }
27285
+ }
27286
+ }
27287
+ }
27288
+ }
27189
27289
  }
27190
27290
  namespace V3NextCustomersCustomerIdProjects {
27191
27291
  namespace Get {
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.423.0';
1
+ export declare const MittwaldAPIClientVersion = '4.424.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.424.0",
3
+ "version": "4.425.0",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -72,11 +72,11 @@
72
72
  "test:compile": "run tsc --noEmit"
73
73
  },
74
74
  "dependencies": {
75
- "@mittwald/api-client-commons": "^4.424.0",
75
+ "@mittwald/api-client-commons": "^4.425.0",
76
76
  "browser-or-node": "^3.0.0"
77
77
  },
78
78
  "devDependencies": {
79
- "@mittwald/api-code-generator": "^4.424.0",
79
+ "@mittwald/api-code-generator": "^4.425.0",
80
80
  "@mittwald/react-use-promise": "^2.6.2",
81
81
  "@types/node": "^22.18.11",
82
82
  "@types/react": "^18.3.26",
@@ -106,5 +106,5 @@
106
106
  "optional": true
107
107
  }
108
108
  },
109
- "gitHead": "49bd0e7e913a7a3113dad1153e5d77f93a1a0e73"
109
+ "gitHead": "313c1704a7947d9ded070af134b5f9cc83f514d1"
110
110
  }