@mittwald/api-client 4.424.0 → 4.426.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client.js +4 -0
- package/dist/esm/generated/v2/descriptors.js +12 -0
- package/dist/esm/generated/v3-next/client.js +4 -0
- package/dist/esm/generated/v3-next/descriptors.js +12 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +4 -4
- package/dist/types/generated/v2/client.d.ts +129 -12
- package/dist/types/generated/v2/descriptors.d.ts +4 -0
- package/dist/types/generated/v2/types.d.ts +107 -6
- package/dist/types/generated/v3-next/client-react.d.ts +4 -4
- package/dist/types/generated/v3-next/client.d.ts +129 -12
- package/dist/types/generated/v3-next/descriptors.d.ts +4 -0
- package/dist/types/generated/v3-next/types.d.ts +107 -6
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -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",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.425.0';
|
|
@@ -722,6 +722,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
722
722
|
}[] | undefined;
|
|
723
723
|
supportLink?: string | undefined;
|
|
724
724
|
tagline: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
725
|
+
type: "component" | "standalone";
|
|
725
726
|
userInputs?: {
|
|
726
727
|
dataSource?: string;
|
|
727
728
|
defaultValue?: string;
|
|
@@ -1777,14 +1778,14 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1777
1778
|
} | undefined;
|
|
1778
1779
|
queryParameters?: {
|
|
1779
1780
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1780
|
-
limit?: number | undefined;
|
|
1781
|
-
skip?: number | undefined;
|
|
1782
|
-
page?: number | undefined;
|
|
1783
1781
|
since?: string | undefined;
|
|
1784
1782
|
until?: string | undefined;
|
|
1785
1783
|
status?: string | undefined;
|
|
1786
1784
|
triggeredByUser?: boolean | undefined;
|
|
1787
1785
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder | undefined;
|
|
1786
|
+
limit?: number | undefined;
|
|
1787
|
+
skip?: number | undefined;
|
|
1788
|
+
page?: number | undefined;
|
|
1788
1789
|
} | undefined;
|
|
1789
1790
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecution[]>;
|
|
1790
1791
|
/** Get a Cronjob. */
|
|
@@ -1821,7 +1822,6 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1821
1822
|
cronjobId: string;
|
|
1822
1823
|
headers?: {
|
|
1823
1824
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1824
|
-
"Accept-Language"?: "de" | "en" | undefined;
|
|
1825
1825
|
"x-access-token"?: string | undefined;
|
|
1826
1826
|
} | undefined;
|
|
1827
1827
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
@@ -5259,6 +5259,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5259
5259
|
}[] | undefined;
|
|
5260
5260
|
supportLink?: string | undefined;
|
|
5261
5261
|
tagline: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5262
|
+
type: "component" | "standalone";
|
|
5262
5263
|
userInputs?: {
|
|
5263
5264
|
dataSource?: string;
|
|
5264
5265
|
defaultValue?: string;
|
|
@@ -5324,6 +5325,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5324
5325
|
}[] | undefined;
|
|
5325
5326
|
supportLink?: string | undefined;
|
|
5326
5327
|
tagline: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5328
|
+
type: "component" | "standalone";
|
|
5327
5329
|
userInputs?: {
|
|
5328
5330
|
dataSource?: string;
|
|
5329
5331
|
defaultValue?: string;
|
|
@@ -14067,14 +14069,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14067
14069
|
} | undefined;
|
|
14068
14070
|
queryParameters?: {
|
|
14069
14071
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
14070
|
-
limit?: number | undefined;
|
|
14071
|
-
skip?: number | undefined;
|
|
14072
|
-
page?: number | undefined;
|
|
14073
14072
|
since?: string | undefined;
|
|
14074
14073
|
until?: string | undefined;
|
|
14075
14074
|
status?: string | undefined;
|
|
14076
14075
|
triggeredByUser?: boolean | undefined;
|
|
14077
14076
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder | undefined;
|
|
14077
|
+
limit?: number | undefined;
|
|
14078
|
+
skip?: number | undefined;
|
|
14079
|
+
page?: number | undefined;
|
|
14078
14080
|
} | undefined;
|
|
14079
14081
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
14080
14082
|
headers?: Partial<{
|
|
@@ -14086,14 +14088,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14086
14088
|
};
|
|
14087
14089
|
} & {
|
|
14088
14090
|
queryParameters: {
|
|
14089
|
-
limit?: number | undefined;
|
|
14090
|
-
skip?: number | undefined;
|
|
14091
|
-
page?: number | undefined;
|
|
14092
14091
|
since?: string | undefined;
|
|
14093
14092
|
until?: string | undefined;
|
|
14094
14093
|
status?: string | undefined;
|
|
14095
14094
|
triggeredByUser?: boolean | undefined;
|
|
14096
14095
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder | undefined;
|
|
14096
|
+
limit?: number | undefined;
|
|
14097
|
+
skip?: number | undefined;
|
|
14098
|
+
page?: number | undefined;
|
|
14097
14099
|
} & Partial<{
|
|
14098
14100
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14099
14101
|
}>;
|
|
@@ -14115,14 +14117,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14115
14117
|
};
|
|
14116
14118
|
} & {
|
|
14117
14119
|
queryParameters: {
|
|
14118
|
-
limit?: number | undefined;
|
|
14119
|
-
skip?: number | undefined;
|
|
14120
|
-
page?: number | undefined;
|
|
14121
14120
|
since?: string | undefined;
|
|
14122
14121
|
until?: string | undefined;
|
|
14123
14122
|
status?: string | undefined;
|
|
14124
14123
|
triggeredByUser?: boolean | undefined;
|
|
14125
14124
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder | undefined;
|
|
14125
|
+
limit?: number | undefined;
|
|
14126
|
+
skip?: number | undefined;
|
|
14127
|
+
page?: number | undefined;
|
|
14126
14128
|
} & Partial<{
|
|
14127
14129
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14128
14130
|
}>;
|
|
@@ -14434,7 +14436,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14434
14436
|
cronjobId: string;
|
|
14435
14437
|
headers?: {
|
|
14436
14438
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
14437
|
-
"Accept-Language"?: "de" | "en" | undefined;
|
|
14438
14439
|
"x-access-token"?: string | undefined;
|
|
14439
14440
|
} | undefined;
|
|
14440
14441
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
@@ -14448,7 +14449,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14448
14449
|
};
|
|
14449
14450
|
} & {
|
|
14450
14451
|
headers: {
|
|
14451
|
-
"Accept-Language"?: "de" | "en" | undefined;
|
|
14452
14452
|
"x-access-token"?: string | undefined;
|
|
14453
14453
|
} & Partial<{
|
|
14454
14454
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -14478,7 +14478,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14478
14478
|
};
|
|
14479
14479
|
} & {
|
|
14480
14480
|
headers: {
|
|
14481
|
-
"Accept-Language"?: "de" | "en" | undefined;
|
|
14482
14481
|
"x-access-token"?: string | undefined;
|
|
14483
14482
|
} & Partial<{
|
|
14484
14483
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -28789,6 +28788,65 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
28789
28788
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28790
28789
|
[x: string]: unknown;
|
|
28791
28790
|
}, 500, "application/json">>>;
|
|
28791
|
+
/** Update a Project. */
|
|
28792
|
+
updateProject: (request: {
|
|
28793
|
+
projectId: string;
|
|
28794
|
+
data?: {
|
|
28795
|
+
description?: string | undefined;
|
|
28796
|
+
} | undefined;
|
|
28797
|
+
headers?: {
|
|
28798
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
28799
|
+
"x-access-token"?: string | undefined;
|
|
28800
|
+
} | undefined;
|
|
28801
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
28802
|
+
data: {
|
|
28803
|
+
description?: string | undefined;
|
|
28804
|
+
};
|
|
28805
|
+
} & {
|
|
28806
|
+
pathParameters: {
|
|
28807
|
+
projectId: string;
|
|
28808
|
+
};
|
|
28809
|
+
} & {
|
|
28810
|
+
headers?: Partial<{
|
|
28811
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28812
|
+
}>;
|
|
28813
|
+
} & {
|
|
28814
|
+
headers: {
|
|
28815
|
+
"x-access-token"?: string | undefined;
|
|
28816
|
+
} & Partial<{
|
|
28817
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28818
|
+
}>;
|
|
28819
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
28820
|
+
[x: string]: unknown;
|
|
28821
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28822
|
+
[x: string]: unknown;
|
|
28823
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28824
|
+
[x: string]: unknown;
|
|
28825
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
28826
|
+
data: {
|
|
28827
|
+
description?: string | undefined;
|
|
28828
|
+
};
|
|
28829
|
+
} & {
|
|
28830
|
+
pathParameters: {
|
|
28831
|
+
projectId: string;
|
|
28832
|
+
};
|
|
28833
|
+
} & {
|
|
28834
|
+
headers?: Partial<{
|
|
28835
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28836
|
+
}>;
|
|
28837
|
+
} & {
|
|
28838
|
+
headers: {
|
|
28839
|
+
"x-access-token"?: string | undefined;
|
|
28840
|
+
} & Partial<{
|
|
28841
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28842
|
+
}>;
|
|
28843
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
28844
|
+
[x: string]: unknown;
|
|
28845
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28846
|
+
[x: string]: unknown;
|
|
28847
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28848
|
+
[x: string]: unknown;
|
|
28849
|
+
}, 429, "application/json">>>;
|
|
28792
28850
|
/** Request a Server avatar upload. */
|
|
28793
28851
|
requestServerAvatarUpload: (request: {
|
|
28794
28852
|
serverId: string;
|
|
@@ -29105,6 +29163,65 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
29105
29163
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29106
29164
|
[x: string]: unknown;
|
|
29107
29165
|
}, 429, "application/json">>>;
|
|
29166
|
+
/** Update a Server. */
|
|
29167
|
+
updateServer: (request: {
|
|
29168
|
+
serverId: string;
|
|
29169
|
+
data?: {
|
|
29170
|
+
description?: string | undefined;
|
|
29171
|
+
} | undefined;
|
|
29172
|
+
headers?: {
|
|
29173
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29174
|
+
"x-access-token"?: string | undefined;
|
|
29175
|
+
} | undefined;
|
|
29176
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29177
|
+
data: {
|
|
29178
|
+
description?: string | undefined;
|
|
29179
|
+
};
|
|
29180
|
+
} & {
|
|
29181
|
+
pathParameters: {
|
|
29182
|
+
serverId: string;
|
|
29183
|
+
};
|
|
29184
|
+
} & {
|
|
29185
|
+
headers?: Partial<{
|
|
29186
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29187
|
+
}>;
|
|
29188
|
+
} & {
|
|
29189
|
+
headers: {
|
|
29190
|
+
"x-access-token"?: string | undefined;
|
|
29191
|
+
} & Partial<{
|
|
29192
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29193
|
+
}>;
|
|
29194
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
29195
|
+
[x: string]: unknown;
|
|
29196
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29197
|
+
[x: string]: unknown;
|
|
29198
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29199
|
+
[x: string]: unknown;
|
|
29200
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29201
|
+
data: {
|
|
29202
|
+
description?: string | undefined;
|
|
29203
|
+
};
|
|
29204
|
+
} & {
|
|
29205
|
+
pathParameters: {
|
|
29206
|
+
serverId: string;
|
|
29207
|
+
};
|
|
29208
|
+
} & {
|
|
29209
|
+
headers?: Partial<{
|
|
29210
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29211
|
+
}>;
|
|
29212
|
+
} & {
|
|
29213
|
+
headers: {
|
|
29214
|
+
"x-access-token"?: string | undefined;
|
|
29215
|
+
} & Partial<{
|
|
29216
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29217
|
+
}>;
|
|
29218
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
29219
|
+
[x: string]: unknown;
|
|
29220
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29221
|
+
[x: string]: unknown;
|
|
29222
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29223
|
+
[x: string]: unknown;
|
|
29224
|
+
}, 429, "application/json">>>;
|
|
29108
29225
|
/** List Projects belonging to a Customer. */
|
|
29109
29226
|
listCustomerProjects: (request: {
|
|
29110
29227
|
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>;
|
|
@@ -2929,6 +2937,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2929
2937
|
}[];
|
|
2930
2938
|
supportLink?: string;
|
|
2931
2939
|
tagline: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
2940
|
+
type: "component" | "standalone";
|
|
2932
2941
|
userInputs?: {
|
|
2933
2942
|
dataSource?: string;
|
|
2934
2943
|
defaultValue?: string;
|
|
@@ -14678,14 +14687,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
14678
14687
|
};
|
|
14679
14688
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
14680
14689
|
type Query = {
|
|
14681
|
-
limit?: number;
|
|
14682
|
-
skip?: number;
|
|
14683
|
-
page?: number;
|
|
14684
14690
|
since?: string;
|
|
14685
14691
|
until?: string;
|
|
14686
14692
|
status?: string;
|
|
14687
14693
|
triggeredByUser?: boolean;
|
|
14688
14694
|
sortOrder?: MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder;
|
|
14695
|
+
limit?: number;
|
|
14696
|
+
skip?: number;
|
|
14697
|
+
page?: number;
|
|
14689
14698
|
};
|
|
14690
14699
|
}
|
|
14691
14700
|
namespace Responses {
|
|
@@ -14916,9 +14925,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
14916
14925
|
executionId: string;
|
|
14917
14926
|
cronjobId: string;
|
|
14918
14927
|
};
|
|
14919
|
-
type Header = {
|
|
14920
|
-
"Accept-Language"?: "de" | "en";
|
|
14921
|
-
} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
14928
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
14922
14929
|
type Query = {};
|
|
14923
14930
|
}
|
|
14924
14931
|
namespace Responses {
|
|
@@ -26706,6 +26713,53 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26706
26713
|
}
|
|
26707
26714
|
}
|
|
26708
26715
|
}
|
|
26716
|
+
namespace Patch {
|
|
26717
|
+
namespace Parameters {
|
|
26718
|
+
type Path = {
|
|
26719
|
+
projectId: string;
|
|
26720
|
+
};
|
|
26721
|
+
interface RequestBody {
|
|
26722
|
+
description?: string;
|
|
26723
|
+
}
|
|
26724
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
26725
|
+
type Query = {};
|
|
26726
|
+
}
|
|
26727
|
+
namespace Responses {
|
|
26728
|
+
namespace $204 {
|
|
26729
|
+
namespace Content {
|
|
26730
|
+
type Empty = unknown;
|
|
26731
|
+
}
|
|
26732
|
+
}
|
|
26733
|
+
namespace $400 {
|
|
26734
|
+
namespace Content {
|
|
26735
|
+
interface ApplicationJson {
|
|
26736
|
+
[k: string]: unknown;
|
|
26737
|
+
}
|
|
26738
|
+
}
|
|
26739
|
+
}
|
|
26740
|
+
namespace $403 {
|
|
26741
|
+
namespace Content {
|
|
26742
|
+
interface ApplicationJson {
|
|
26743
|
+
[k: string]: unknown;
|
|
26744
|
+
}
|
|
26745
|
+
}
|
|
26746
|
+
}
|
|
26747
|
+
namespace $429 {
|
|
26748
|
+
namespace Content {
|
|
26749
|
+
interface ApplicationJson {
|
|
26750
|
+
[k: string]: unknown;
|
|
26751
|
+
}
|
|
26752
|
+
}
|
|
26753
|
+
}
|
|
26754
|
+
namespace Default {
|
|
26755
|
+
namespace Content {
|
|
26756
|
+
interface ApplicationJson {
|
|
26757
|
+
[k: string]: unknown;
|
|
26758
|
+
}
|
|
26759
|
+
}
|
|
26760
|
+
}
|
|
26761
|
+
}
|
|
26762
|
+
}
|
|
26709
26763
|
}
|
|
26710
26764
|
namespace V2ServersServerIdAvatar {
|
|
26711
26765
|
namespace Post {
|
|
@@ -27248,6 +27302,53 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27248
27302
|
}
|
|
27249
27303
|
}
|
|
27250
27304
|
}
|
|
27305
|
+
namespace Patch {
|
|
27306
|
+
namespace Parameters {
|
|
27307
|
+
type Path = {
|
|
27308
|
+
serverId: string;
|
|
27309
|
+
};
|
|
27310
|
+
interface RequestBody {
|
|
27311
|
+
description?: string;
|
|
27312
|
+
}
|
|
27313
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27314
|
+
type Query = {};
|
|
27315
|
+
}
|
|
27316
|
+
namespace Responses {
|
|
27317
|
+
namespace $204 {
|
|
27318
|
+
namespace Content {
|
|
27319
|
+
type Empty = unknown;
|
|
27320
|
+
}
|
|
27321
|
+
}
|
|
27322
|
+
namespace $400 {
|
|
27323
|
+
namespace Content {
|
|
27324
|
+
interface ApplicationJson {
|
|
27325
|
+
[k: string]: unknown;
|
|
27326
|
+
}
|
|
27327
|
+
}
|
|
27328
|
+
}
|
|
27329
|
+
namespace $403 {
|
|
27330
|
+
namespace Content {
|
|
27331
|
+
interface ApplicationJson {
|
|
27332
|
+
[k: string]: unknown;
|
|
27333
|
+
}
|
|
27334
|
+
}
|
|
27335
|
+
}
|
|
27336
|
+
namespace $429 {
|
|
27337
|
+
namespace Content {
|
|
27338
|
+
interface ApplicationJson {
|
|
27339
|
+
[k: string]: unknown;
|
|
27340
|
+
}
|
|
27341
|
+
}
|
|
27342
|
+
}
|
|
27343
|
+
namespace Default {
|
|
27344
|
+
namespace Content {
|
|
27345
|
+
interface ApplicationJson {
|
|
27346
|
+
[k: string]: unknown;
|
|
27347
|
+
}
|
|
27348
|
+
}
|
|
27349
|
+
}
|
|
27350
|
+
}
|
|
27351
|
+
}
|
|
27251
27352
|
}
|
|
27252
27353
|
namespace V2CustomersCustomerIdProjects {
|
|
27253
27354
|
namespace Get {
|
|
@@ -722,6 +722,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
722
722
|
}[] | undefined;
|
|
723
723
|
supportLink?: string | undefined;
|
|
724
724
|
tagline: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateTranslatedString;
|
|
725
|
+
type: "component" | "standalone";
|
|
725
726
|
userInputs?: {
|
|
726
727
|
dataSource?: string;
|
|
727
728
|
defaultValue?: string;
|
|
@@ -1777,14 +1778,14 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
1777
1778
|
} | undefined;
|
|
1778
1779
|
queryParameters?: {
|
|
1779
1780
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1780
|
-
limit?: number | undefined;
|
|
1781
|
-
skip?: number | undefined;
|
|
1782
|
-
page?: number | undefined;
|
|
1783
1781
|
since?: string | undefined;
|
|
1784
1782
|
until?: string | undefined;
|
|
1785
1783
|
status?: string | undefined;
|
|
1786
1784
|
triggeredByUser?: boolean | undefined;
|
|
1787
1785
|
sortOrder?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecutionSortOrder | undefined;
|
|
1786
|
+
limit?: number | undefined;
|
|
1787
|
+
skip?: number | undefined;
|
|
1788
|
+
page?: number | undefined;
|
|
1788
1789
|
} | undefined;
|
|
1789
1790
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecution[]>;
|
|
1790
1791
|
/** Get a Cronjob. */
|
|
@@ -1821,7 +1822,6 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
1821
1822
|
cronjobId: string;
|
|
1822
1823
|
headers?: {
|
|
1823
1824
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1824
|
-
"Accept-Language"?: "de" | "en" | undefined;
|
|
1825
1825
|
"x-access-token"?: string | undefined;
|
|
1826
1826
|
} | undefined;
|
|
1827
1827
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
@@ -5259,6 +5259,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
5259
5259
|
}[] | undefined;
|
|
5260
5260
|
supportLink?: string | undefined;
|
|
5261
5261
|
tagline: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateTranslatedString;
|
|
5262
|
+
type: "component" | "standalone";
|
|
5262
5263
|
userInputs?: {
|
|
5263
5264
|
dataSource?: string;
|
|
5264
5265
|
defaultValue?: string;
|
|
@@ -5324,6 +5325,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
5324
5325
|
}[] | undefined;
|
|
5325
5326
|
supportLink?: string | undefined;
|
|
5326
5327
|
tagline: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateTranslatedString;
|
|
5328
|
+
type: "component" | "standalone";
|
|
5327
5329
|
userInputs?: {
|
|
5328
5330
|
dataSource?: string;
|
|
5329
5331
|
defaultValue?: string;
|
|
@@ -14067,14 +14069,14 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
14067
14069
|
} | undefined;
|
|
14068
14070
|
queryParameters?: {
|
|
14069
14071
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
14070
|
-
limit?: number | undefined;
|
|
14071
|
-
skip?: number | undefined;
|
|
14072
|
-
page?: number | undefined;
|
|
14073
14072
|
since?: string | undefined;
|
|
14074
14073
|
until?: string | undefined;
|
|
14075
14074
|
status?: string | undefined;
|
|
14076
14075
|
triggeredByUser?: boolean | undefined;
|
|
14077
14076
|
sortOrder?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecutionSortOrder | undefined;
|
|
14077
|
+
limit?: number | undefined;
|
|
14078
|
+
skip?: number | undefined;
|
|
14079
|
+
page?: number | undefined;
|
|
14078
14080
|
} | undefined;
|
|
14079
14081
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
14080
14082
|
headers?: Partial<{
|
|
@@ -14086,14 +14088,14 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
14086
14088
|
};
|
|
14087
14089
|
} & {
|
|
14088
14090
|
queryParameters: {
|
|
14089
|
-
limit?: number | undefined;
|
|
14090
|
-
skip?: number | undefined;
|
|
14091
|
-
page?: number | undefined;
|
|
14092
14091
|
since?: string | undefined;
|
|
14093
14092
|
until?: string | undefined;
|
|
14094
14093
|
status?: string | undefined;
|
|
14095
14094
|
triggeredByUser?: boolean | undefined;
|
|
14096
14095
|
sortOrder?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecutionSortOrder | undefined;
|
|
14096
|
+
limit?: number | undefined;
|
|
14097
|
+
skip?: number | undefined;
|
|
14098
|
+
page?: number | undefined;
|
|
14097
14099
|
} & Partial<{
|
|
14098
14100
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14099
14101
|
}>;
|
|
@@ -14115,14 +14117,14 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
14115
14117
|
};
|
|
14116
14118
|
} & {
|
|
14117
14119
|
queryParameters: {
|
|
14118
|
-
limit?: number | undefined;
|
|
14119
|
-
skip?: number | undefined;
|
|
14120
|
-
page?: number | undefined;
|
|
14121
14120
|
since?: string | undefined;
|
|
14122
14121
|
until?: string | undefined;
|
|
14123
14122
|
status?: string | undefined;
|
|
14124
14123
|
triggeredByUser?: boolean | undefined;
|
|
14125
14124
|
sortOrder?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecutionSortOrder | undefined;
|
|
14125
|
+
limit?: number | undefined;
|
|
14126
|
+
skip?: number | undefined;
|
|
14127
|
+
page?: number | undefined;
|
|
14126
14128
|
} & Partial<{
|
|
14127
14129
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14128
14130
|
}>;
|
|
@@ -14434,7 +14436,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
14434
14436
|
cronjobId: string;
|
|
14435
14437
|
headers?: {
|
|
14436
14438
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
14437
|
-
"Accept-Language"?: "de" | "en" | undefined;
|
|
14438
14439
|
"x-access-token"?: string | undefined;
|
|
14439
14440
|
} | undefined;
|
|
14440
14441
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
@@ -14448,7 +14449,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
14448
14449
|
};
|
|
14449
14450
|
} & {
|
|
14450
14451
|
headers: {
|
|
14451
|
-
"Accept-Language"?: "de" | "en" | undefined;
|
|
14452
14452
|
"x-access-token"?: string | undefined;
|
|
14453
14453
|
} & Partial<{
|
|
14454
14454
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -14478,7 +14478,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
14478
14478
|
};
|
|
14479
14479
|
} & {
|
|
14480
14480
|
headers: {
|
|
14481
|
-
"Accept-Language"?: "de" | "en" | undefined;
|
|
14482
14481
|
"x-access-token"?: string | undefined;
|
|
14483
14482
|
} & Partial<{
|
|
14484
14483
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -28789,6 +28788,65 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
28789
28788
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28790
28789
|
[x: string]: unknown;
|
|
28791
28790
|
}, 500, "application/json">>>;
|
|
28791
|
+
/** Update a Project. */
|
|
28792
|
+
updateProject: (request: {
|
|
28793
|
+
projectId: string;
|
|
28794
|
+
data?: {
|
|
28795
|
+
description?: string | undefined;
|
|
28796
|
+
} | undefined;
|
|
28797
|
+
headers?: {
|
|
28798
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
28799
|
+
"x-access-token"?: string | undefined;
|
|
28800
|
+
} | undefined;
|
|
28801
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
28802
|
+
data: {
|
|
28803
|
+
description?: string | undefined;
|
|
28804
|
+
};
|
|
28805
|
+
} & {
|
|
28806
|
+
pathParameters: {
|
|
28807
|
+
projectId: string;
|
|
28808
|
+
};
|
|
28809
|
+
} & {
|
|
28810
|
+
headers?: Partial<{
|
|
28811
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28812
|
+
}>;
|
|
28813
|
+
} & {
|
|
28814
|
+
headers: {
|
|
28815
|
+
"x-access-token"?: string | undefined;
|
|
28816
|
+
} & Partial<{
|
|
28817
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28818
|
+
}>;
|
|
28819
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
28820
|
+
[x: string]: unknown;
|
|
28821
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28822
|
+
[x: string]: unknown;
|
|
28823
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28824
|
+
[x: string]: unknown;
|
|
28825
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
28826
|
+
data: {
|
|
28827
|
+
description?: string | undefined;
|
|
28828
|
+
};
|
|
28829
|
+
} & {
|
|
28830
|
+
pathParameters: {
|
|
28831
|
+
projectId: string;
|
|
28832
|
+
};
|
|
28833
|
+
} & {
|
|
28834
|
+
headers?: Partial<{
|
|
28835
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28836
|
+
}>;
|
|
28837
|
+
} & {
|
|
28838
|
+
headers: {
|
|
28839
|
+
"x-access-token"?: string | undefined;
|
|
28840
|
+
} & Partial<{
|
|
28841
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28842
|
+
}>;
|
|
28843
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
28844
|
+
[x: string]: unknown;
|
|
28845
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28846
|
+
[x: string]: unknown;
|
|
28847
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28848
|
+
[x: string]: unknown;
|
|
28849
|
+
}, 429, "application/json">>>;
|
|
28792
28850
|
/** Request a Server avatar upload. */
|
|
28793
28851
|
requestServerAvatarUpload: (request: {
|
|
28794
28852
|
serverId: string;
|
|
@@ -29105,6 +29163,65 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
29105
29163
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29106
29164
|
[x: string]: unknown;
|
|
29107
29165
|
}, 429, "application/json">>>;
|
|
29166
|
+
/** Update a Server. */
|
|
29167
|
+
updateServer: (request: {
|
|
29168
|
+
serverId: string;
|
|
29169
|
+
data?: {
|
|
29170
|
+
description?: string | undefined;
|
|
29171
|
+
} | undefined;
|
|
29172
|
+
headers?: {
|
|
29173
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29174
|
+
"x-access-token"?: string | undefined;
|
|
29175
|
+
} | undefined;
|
|
29176
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29177
|
+
data: {
|
|
29178
|
+
description?: string | undefined;
|
|
29179
|
+
};
|
|
29180
|
+
} & {
|
|
29181
|
+
pathParameters: {
|
|
29182
|
+
serverId: string;
|
|
29183
|
+
};
|
|
29184
|
+
} & {
|
|
29185
|
+
headers?: Partial<{
|
|
29186
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29187
|
+
}>;
|
|
29188
|
+
} & {
|
|
29189
|
+
headers: {
|
|
29190
|
+
"x-access-token"?: string | undefined;
|
|
29191
|
+
} & Partial<{
|
|
29192
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29193
|
+
}>;
|
|
29194
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
29195
|
+
[x: string]: unknown;
|
|
29196
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29197
|
+
[x: string]: unknown;
|
|
29198
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29199
|
+
[x: string]: unknown;
|
|
29200
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29201
|
+
data: {
|
|
29202
|
+
description?: string | undefined;
|
|
29203
|
+
};
|
|
29204
|
+
} & {
|
|
29205
|
+
pathParameters: {
|
|
29206
|
+
serverId: string;
|
|
29207
|
+
};
|
|
29208
|
+
} & {
|
|
29209
|
+
headers?: Partial<{
|
|
29210
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29211
|
+
}>;
|
|
29212
|
+
} & {
|
|
29213
|
+
headers: {
|
|
29214
|
+
"x-access-token"?: string | undefined;
|
|
29215
|
+
} & Partial<{
|
|
29216
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29217
|
+
}>;
|
|
29218
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
29219
|
+
[x: string]: unknown;
|
|
29220
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29221
|
+
[x: string]: unknown;
|
|
29222
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29223
|
+
[x: string]: unknown;
|
|
29224
|
+
}, 429, "application/json">>>;
|
|
29108
29225
|
/** List Projects belonging to a Customer. */
|
|
29109
29226
|
listCustomerProjects: (request: {
|
|
29110
29227
|
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>;
|
|
@@ -2929,6 +2937,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
2929
2937
|
}[];
|
|
2930
2938
|
supportLink?: string;
|
|
2931
2939
|
tagline: MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateTranslatedString;
|
|
2940
|
+
type: "component" | "standalone";
|
|
2932
2941
|
userInputs?: {
|
|
2933
2942
|
dataSource?: string;
|
|
2934
2943
|
defaultValue?: string;
|
|
@@ -14670,14 +14679,14 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
14670
14679
|
};
|
|
14671
14680
|
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
14672
14681
|
type Query = {
|
|
14673
|
-
limit?: number;
|
|
14674
|
-
skip?: number;
|
|
14675
|
-
page?: number;
|
|
14676
14682
|
since?: string;
|
|
14677
14683
|
until?: string;
|
|
14678
14684
|
status?: string;
|
|
14679
14685
|
triggeredByUser?: boolean;
|
|
14680
14686
|
sortOrder?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecutionSortOrder;
|
|
14687
|
+
limit?: number;
|
|
14688
|
+
skip?: number;
|
|
14689
|
+
page?: number;
|
|
14681
14690
|
};
|
|
14682
14691
|
}
|
|
14683
14692
|
namespace Responses {
|
|
@@ -14908,9 +14917,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
14908
14917
|
executionId: string;
|
|
14909
14918
|
cronjobId: string;
|
|
14910
14919
|
};
|
|
14911
|
-
type Header = {
|
|
14912
|
-
"Accept-Language"?: "de" | "en";
|
|
14913
|
-
} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
14920
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
14914
14921
|
type Query = {};
|
|
14915
14922
|
}
|
|
14916
14923
|
namespace Responses {
|
|
@@ -26648,6 +26655,53 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
26648
26655
|
}
|
|
26649
26656
|
}
|
|
26650
26657
|
}
|
|
26658
|
+
namespace Patch {
|
|
26659
|
+
namespace Parameters {
|
|
26660
|
+
type Path = {
|
|
26661
|
+
projectId: string;
|
|
26662
|
+
};
|
|
26663
|
+
interface RequestBody {
|
|
26664
|
+
description?: string;
|
|
26665
|
+
}
|
|
26666
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
26667
|
+
type Query = {};
|
|
26668
|
+
}
|
|
26669
|
+
namespace Responses {
|
|
26670
|
+
namespace $204 {
|
|
26671
|
+
namespace Content {
|
|
26672
|
+
type Empty = unknown;
|
|
26673
|
+
}
|
|
26674
|
+
}
|
|
26675
|
+
namespace $400 {
|
|
26676
|
+
namespace Content {
|
|
26677
|
+
interface ApplicationJson {
|
|
26678
|
+
[k: string]: unknown;
|
|
26679
|
+
}
|
|
26680
|
+
}
|
|
26681
|
+
}
|
|
26682
|
+
namespace $403 {
|
|
26683
|
+
namespace Content {
|
|
26684
|
+
interface ApplicationJson {
|
|
26685
|
+
[k: string]: unknown;
|
|
26686
|
+
}
|
|
26687
|
+
}
|
|
26688
|
+
}
|
|
26689
|
+
namespace $429 {
|
|
26690
|
+
namespace Content {
|
|
26691
|
+
interface ApplicationJson {
|
|
26692
|
+
[k: string]: unknown;
|
|
26693
|
+
}
|
|
26694
|
+
}
|
|
26695
|
+
}
|
|
26696
|
+
namespace Default {
|
|
26697
|
+
namespace Content {
|
|
26698
|
+
interface ApplicationJson {
|
|
26699
|
+
[k: string]: unknown;
|
|
26700
|
+
}
|
|
26701
|
+
}
|
|
26702
|
+
}
|
|
26703
|
+
}
|
|
26704
|
+
}
|
|
26651
26705
|
}
|
|
26652
26706
|
namespace V3NextServersServerIdAvatar {
|
|
26653
26707
|
namespace Post {
|
|
@@ -27186,6 +27240,53 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
27186
27240
|
}
|
|
27187
27241
|
}
|
|
27188
27242
|
}
|
|
27243
|
+
namespace Patch {
|
|
27244
|
+
namespace Parameters {
|
|
27245
|
+
type Path = {
|
|
27246
|
+
serverId: string;
|
|
27247
|
+
};
|
|
27248
|
+
interface RequestBody {
|
|
27249
|
+
description?: string;
|
|
27250
|
+
}
|
|
27251
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
27252
|
+
type Query = {};
|
|
27253
|
+
}
|
|
27254
|
+
namespace Responses {
|
|
27255
|
+
namespace $204 {
|
|
27256
|
+
namespace Content {
|
|
27257
|
+
type Empty = unknown;
|
|
27258
|
+
}
|
|
27259
|
+
}
|
|
27260
|
+
namespace $400 {
|
|
27261
|
+
namespace Content {
|
|
27262
|
+
interface ApplicationJson {
|
|
27263
|
+
[k: string]: unknown;
|
|
27264
|
+
}
|
|
27265
|
+
}
|
|
27266
|
+
}
|
|
27267
|
+
namespace $403 {
|
|
27268
|
+
namespace Content {
|
|
27269
|
+
interface ApplicationJson {
|
|
27270
|
+
[k: string]: unknown;
|
|
27271
|
+
}
|
|
27272
|
+
}
|
|
27273
|
+
}
|
|
27274
|
+
namespace $429 {
|
|
27275
|
+
namespace Content {
|
|
27276
|
+
interface ApplicationJson {
|
|
27277
|
+
[k: string]: unknown;
|
|
27278
|
+
}
|
|
27279
|
+
}
|
|
27280
|
+
}
|
|
27281
|
+
namespace Default {
|
|
27282
|
+
namespace Content {
|
|
27283
|
+
interface ApplicationJson {
|
|
27284
|
+
[k: string]: unknown;
|
|
27285
|
+
}
|
|
27286
|
+
}
|
|
27287
|
+
}
|
|
27288
|
+
}
|
|
27289
|
+
}
|
|
27189
27290
|
}
|
|
27190
27291
|
namespace V3NextCustomersCustomerIdProjects {
|
|
27191
27292
|
namespace Get {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.425.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.426.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.
|
|
75
|
+
"@mittwald/api-client-commons": "^4.426.0",
|
|
76
76
|
"browser-or-node": "^3.0.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@mittwald/api-code-generator": "^4.
|
|
79
|
+
"@mittwald/api-code-generator": "^4.426.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": "
|
|
109
|
+
"gitHead": "fbf825bb33b6868fff203e9c6024f584ea6071fd"
|
|
110
110
|
}
|