@mittwald/api-client 1.0.5 → 1.0.6
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/generated/v2/client.d.ts +46 -1
- package/dist/generated/v2/client.js +4 -0
- package/dist/generated/v2/descriptors.d.ts +4 -0
- package/dist/generated/v2/descriptors.js +12 -0
- package/dist/generated/v2/types.d.ts +65 -0
- package/dist-cjs/generated/v2/client.d.ts +46 -1
- package/dist-cjs/generated/v2/client.js +4 -0
- package/dist-cjs/generated/v2/descriptors.d.ts +4 -0
- package/dist-cjs/generated/v2/descriptors.js +18 -6
- package/dist-cjs/generated/v2/types.d.ts +65 -0
- package/package.json +1 -1
|
@@ -368,6 +368,49 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
368
368
|
"x-access-token"?: string | undefined;
|
|
369
369
|
};
|
|
370
370
|
}, import("@mittwald/api-client-commons/types").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftwareVersion[], 200, "application/json">>>;
|
|
371
|
+
/** get all update candidates for a specific `AppVersion` */
|
|
372
|
+
listUpdateCandidatesForAppversion: (request: {
|
|
373
|
+
pathParameters: {
|
|
374
|
+
appId: string;
|
|
375
|
+
baseAppVersionId: string;
|
|
376
|
+
};
|
|
377
|
+
headers?: {
|
|
378
|
+
"x-access-token"?: string | undefined;
|
|
379
|
+
} | undefined;
|
|
380
|
+
}) => import("@mittwald/api-client-commons/types").ResponsePromise<import("@mittwald/api-client-commons/types").OpenAPIOperation<object & {
|
|
381
|
+
pathParameters: {
|
|
382
|
+
appId: string;
|
|
383
|
+
baseAppVersionId: string;
|
|
384
|
+
};
|
|
385
|
+
} & {
|
|
386
|
+
headers: {
|
|
387
|
+
"x-access-token"?: string | undefined;
|
|
388
|
+
};
|
|
389
|
+
}, import("@mittwald/api-client-commons/types").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppVersion[], 200, "application/json">>>;
|
|
390
|
+
/** request a copy of an `AppInstallation` */
|
|
391
|
+
requestAppinstallationCopy: (request: {
|
|
392
|
+
data: {
|
|
393
|
+
description: string;
|
|
394
|
+
};
|
|
395
|
+
pathParameters: {
|
|
396
|
+
id: string;
|
|
397
|
+
};
|
|
398
|
+
headers?: {} | undefined;
|
|
399
|
+
}) => import("@mittwald/api-client-commons/types").ResponsePromise<import("@mittwald/api-client-commons/types").OpenAPIOperation<{
|
|
400
|
+
data: {
|
|
401
|
+
description: string;
|
|
402
|
+
};
|
|
403
|
+
} & {
|
|
404
|
+
pathParameters: {
|
|
405
|
+
id: string;
|
|
406
|
+
};
|
|
407
|
+
} & {
|
|
408
|
+
headers: {};
|
|
409
|
+
}, import("@mittwald/api-client-commons/types").Response<{
|
|
410
|
+
id: string;
|
|
411
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons/types").Response<{
|
|
412
|
+
[x: string]: unknown;
|
|
413
|
+
}, 404, "application/json">>>;
|
|
371
414
|
/** get runtime status of a specific `AppInstallation` */
|
|
372
415
|
retrieveStatus: (request: {
|
|
373
416
|
pathParameters: {
|
|
@@ -2230,10 +2273,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2230
2273
|
id?: string | undefined;
|
|
2231
2274
|
} | undefined;
|
|
2232
2275
|
durationInMilliseconds: number;
|
|
2276
|
+
end?: string | undefined;
|
|
2233
2277
|
executionEnd?: string | undefined;
|
|
2234
2278
|
executionStart?: string | undefined;
|
|
2235
2279
|
id: string;
|
|
2236
2280
|
logPath: string;
|
|
2281
|
+
start?: string | undefined;
|
|
2237
2282
|
status: "Pending" | "Failed" | "Complete" | "AbortedBySystem" | "Running" | "AbortedByUser";
|
|
2238
2283
|
successful: boolean;
|
|
2239
2284
|
triggeredBy?: {
|
|
@@ -4975,7 +5020,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4975
5020
|
isCatchAll: boolean;
|
|
4976
5021
|
mailbox: {
|
|
4977
5022
|
enableSpamProtection: boolean;
|
|
4978
|
-
password: string;
|
|
5023
|
+
password: string;
|
|
4979
5024
|
quotaInBytes: number;
|
|
4980
5025
|
};
|
|
4981
5026
|
};
|
|
@@ -36,6 +36,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
36
36
|
listSystemsoftwares: this.requestFunctionFactory(descriptors.appListSystemsoftwares),
|
|
37
37
|
/** get all available `SystemSoftwareVersions` of a specific `SystemSoftware` */
|
|
38
38
|
listSystemsoftwareversions: this.requestFunctionFactory(descriptors.appListSystemsoftwareversions),
|
|
39
|
+
/** get all update candidates for a specific `AppVersion` */
|
|
40
|
+
listUpdateCandidatesForAppversion: this.requestFunctionFactory(descriptors.appListUpdateCandidatesForAppversion),
|
|
41
|
+
/** request a copy of an `AppInstallation` */
|
|
42
|
+
requestAppinstallationCopy: this.requestFunctionFactory(descriptors.appRequestAppinstallationCopy),
|
|
39
43
|
/** get runtime status of a specific `AppInstallation` */
|
|
40
44
|
retrieveStatus: this.requestFunctionFactory(descriptors.appRetrieveStatus),
|
|
41
45
|
/** create linkage between an `AppInstallation` and `DatabaseUsers` */
|
|
@@ -33,6 +33,10 @@ export declare const appListAppversions: OpenAPIOperation<Request<Simplify<null>
|
|
|
33
33
|
export declare const appListSystemsoftwares: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
34
34
|
/** get all available `SystemSoftwareVersions` of a specific `SystemSoftware` */
|
|
35
35
|
export declare const appListSystemsoftwareversions: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
36
|
+
/** get all update candidates for a specific `AppVersion` */
|
|
37
|
+
export declare const appListUpdateCandidatesForAppversion: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
38
|
+
/** request a copy of an `AppInstallation` */
|
|
39
|
+
export declare const appRequestAppinstallationCopy: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
36
40
|
/** get runtime status of a specific `AppInstallation` */
|
|
37
41
|
export declare const appRetrieveStatus: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
38
42
|
/** create linkage between an `AppInstallation` and `DatabaseUsers` */
|
|
@@ -88,6 +88,18 @@ export const appListSystemsoftwareversions = {
|
|
|
88
88
|
method: "GET",
|
|
89
89
|
operationId: "app-list-systemsoftwareversions",
|
|
90
90
|
};
|
|
91
|
+
/** get all update candidates for a specific `AppVersion` */
|
|
92
|
+
export const appListUpdateCandidatesForAppversion = {
|
|
93
|
+
path: "/v2/apps/{appId}/versions/{baseAppVersionId}/update-candidates",
|
|
94
|
+
method: "GET",
|
|
95
|
+
operationId: "app-list-update-candidates-for-appversion",
|
|
96
|
+
};
|
|
97
|
+
/** request a copy of an `AppInstallation` */
|
|
98
|
+
export const appRequestAppinstallationCopy = {
|
|
99
|
+
path: "/v2/appinstallations/{id}/actions/copy",
|
|
100
|
+
method: "POST",
|
|
101
|
+
operationId: "app-request-appinstallation-copy",
|
|
102
|
+
};
|
|
91
103
|
/** get runtime status of a specific `AppInstallation` */
|
|
92
104
|
export const appRetrieveStatus = {
|
|
93
105
|
path: "/v2/appinstallations/{appInstallationId}/status",
|
|
@@ -495,10 +495,12 @@ export declare module MittwaldAPIV2 {
|
|
|
495
495
|
id?: string;
|
|
496
496
|
};
|
|
497
497
|
durationInMilliseconds: number;
|
|
498
|
+
end?: string;
|
|
498
499
|
executionEnd?: string;
|
|
499
500
|
executionStart?: string;
|
|
500
501
|
id: string;
|
|
501
502
|
logPath: string;
|
|
503
|
+
start?: string;
|
|
502
504
|
status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser";
|
|
503
505
|
successful: boolean;
|
|
504
506
|
triggeredBy?: {
|
|
@@ -2316,6 +2318,69 @@ export declare module MittwaldAPIV2 {
|
|
|
2316
2318
|
}
|
|
2317
2319
|
}
|
|
2318
2320
|
}
|
|
2321
|
+
namespace V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates {
|
|
2322
|
+
namespace Get {
|
|
2323
|
+
namespace Parameters {
|
|
2324
|
+
type Path = {
|
|
2325
|
+
appId: string;
|
|
2326
|
+
baseAppVersionId: string;
|
|
2327
|
+
};
|
|
2328
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
2329
|
+
type Query = {};
|
|
2330
|
+
}
|
|
2331
|
+
namespace Responses {
|
|
2332
|
+
namespace $200 {
|
|
2333
|
+
namespace Content {
|
|
2334
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.AppAppVersion[];
|
|
2335
|
+
}
|
|
2336
|
+
}
|
|
2337
|
+
namespace Default {
|
|
2338
|
+
namespace Content {
|
|
2339
|
+
interface ApplicationJson {
|
|
2340
|
+
[k: string]: unknown;
|
|
2341
|
+
}
|
|
2342
|
+
}
|
|
2343
|
+
}
|
|
2344
|
+
}
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2347
|
+
namespace V2AppinstallationsIdActionsCopy {
|
|
2348
|
+
namespace Post {
|
|
2349
|
+
namespace Parameters {
|
|
2350
|
+
type Path = {
|
|
2351
|
+
id: string;
|
|
2352
|
+
};
|
|
2353
|
+
interface RequestBody {
|
|
2354
|
+
description: string;
|
|
2355
|
+
}
|
|
2356
|
+
type Header = {};
|
|
2357
|
+
type Query = {};
|
|
2358
|
+
}
|
|
2359
|
+
namespace Responses {
|
|
2360
|
+
namespace $201 {
|
|
2361
|
+
namespace Content {
|
|
2362
|
+
interface ApplicationJson {
|
|
2363
|
+
id: string;
|
|
2364
|
+
}
|
|
2365
|
+
}
|
|
2366
|
+
}
|
|
2367
|
+
namespace $404 {
|
|
2368
|
+
namespace Content {
|
|
2369
|
+
interface ApplicationJson {
|
|
2370
|
+
[k: string]: unknown;
|
|
2371
|
+
}
|
|
2372
|
+
}
|
|
2373
|
+
}
|
|
2374
|
+
namespace Default {
|
|
2375
|
+
namespace Content {
|
|
2376
|
+
interface ApplicationJson {
|
|
2377
|
+
[k: string]: unknown;
|
|
2378
|
+
}
|
|
2379
|
+
}
|
|
2380
|
+
}
|
|
2381
|
+
}
|
|
2382
|
+
}
|
|
2383
|
+
}
|
|
2319
2384
|
namespace V2AppinstallationsAppInstallationIdStatus {
|
|
2320
2385
|
namespace Get {
|
|
2321
2386
|
namespace Parameters {
|
|
@@ -368,6 +368,49 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
368
368
|
"x-access-token"?: string | undefined;
|
|
369
369
|
};
|
|
370
370
|
}, import("@mittwald/api-client-commons/types").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftwareVersion[], 200, "application/json">>>;
|
|
371
|
+
/** get all update candidates for a specific `AppVersion` */
|
|
372
|
+
listUpdateCandidatesForAppversion: (request: {
|
|
373
|
+
pathParameters: {
|
|
374
|
+
appId: string;
|
|
375
|
+
baseAppVersionId: string;
|
|
376
|
+
};
|
|
377
|
+
headers?: {
|
|
378
|
+
"x-access-token"?: string | undefined;
|
|
379
|
+
} | undefined;
|
|
380
|
+
}) => import("@mittwald/api-client-commons/types").ResponsePromise<import("@mittwald/api-client-commons/types").OpenAPIOperation<object & {
|
|
381
|
+
pathParameters: {
|
|
382
|
+
appId: string;
|
|
383
|
+
baseAppVersionId: string;
|
|
384
|
+
};
|
|
385
|
+
} & {
|
|
386
|
+
headers: {
|
|
387
|
+
"x-access-token"?: string | undefined;
|
|
388
|
+
};
|
|
389
|
+
}, import("@mittwald/api-client-commons/types").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppVersion[], 200, "application/json">>>;
|
|
390
|
+
/** request a copy of an `AppInstallation` */
|
|
391
|
+
requestAppinstallationCopy: (request: {
|
|
392
|
+
data: {
|
|
393
|
+
description: string;
|
|
394
|
+
};
|
|
395
|
+
pathParameters: {
|
|
396
|
+
id: string;
|
|
397
|
+
};
|
|
398
|
+
headers?: {} | undefined;
|
|
399
|
+
}) => import("@mittwald/api-client-commons/types").ResponsePromise<import("@mittwald/api-client-commons/types").OpenAPIOperation<{
|
|
400
|
+
data: {
|
|
401
|
+
description: string;
|
|
402
|
+
};
|
|
403
|
+
} & {
|
|
404
|
+
pathParameters: {
|
|
405
|
+
id: string;
|
|
406
|
+
};
|
|
407
|
+
} & {
|
|
408
|
+
headers: {};
|
|
409
|
+
}, import("@mittwald/api-client-commons/types").Response<{
|
|
410
|
+
id: string;
|
|
411
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons/types").Response<{
|
|
412
|
+
[x: string]: unknown;
|
|
413
|
+
}, 404, "application/json">>>;
|
|
371
414
|
/** get runtime status of a specific `AppInstallation` */
|
|
372
415
|
retrieveStatus: (request: {
|
|
373
416
|
pathParameters: {
|
|
@@ -2230,10 +2273,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2230
2273
|
id?: string | undefined;
|
|
2231
2274
|
} | undefined;
|
|
2232
2275
|
durationInMilliseconds: number;
|
|
2276
|
+
end?: string | undefined;
|
|
2233
2277
|
executionEnd?: string | undefined;
|
|
2234
2278
|
executionStart?: string | undefined;
|
|
2235
2279
|
id: string;
|
|
2236
2280
|
logPath: string;
|
|
2281
|
+
start?: string | undefined;
|
|
2237
2282
|
status: "Pending" | "Failed" | "Complete" | "AbortedBySystem" | "Running" | "AbortedByUser";
|
|
2238
2283
|
successful: boolean;
|
|
2239
2284
|
triggeredBy?: {
|
|
@@ -4975,7 +5020,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4975
5020
|
isCatchAll: boolean;
|
|
4976
5021
|
mailbox: {
|
|
4977
5022
|
enableSpamProtection: boolean;
|
|
4978
|
-
password: string;
|
|
5023
|
+
password: string;
|
|
4979
5024
|
quotaInBytes: number;
|
|
4980
5025
|
};
|
|
4981
5026
|
};
|
|
@@ -41,6 +41,10 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
|
|
|
41
41
|
listSystemsoftwares: this.requestFunctionFactory(descriptors.appListSystemsoftwares),
|
|
42
42
|
/** get all available `SystemSoftwareVersions` of a specific `SystemSoftware` */
|
|
43
43
|
listSystemsoftwareversions: this.requestFunctionFactory(descriptors.appListSystemsoftwareversions),
|
|
44
|
+
/** get all update candidates for a specific `AppVersion` */
|
|
45
|
+
listUpdateCandidatesForAppversion: this.requestFunctionFactory(descriptors.appListUpdateCandidatesForAppversion),
|
|
46
|
+
/** request a copy of an `AppInstallation` */
|
|
47
|
+
requestAppinstallationCopy: this.requestFunctionFactory(descriptors.appRequestAppinstallationCopy),
|
|
44
48
|
/** get runtime status of a specific `AppInstallation` */
|
|
45
49
|
retrieveStatus: this.requestFunctionFactory(descriptors.appRetrieveStatus),
|
|
46
50
|
/** create linkage between an `AppInstallation` and `DatabaseUsers` */
|
|
@@ -33,6 +33,10 @@ export declare const appListAppversions: OpenAPIOperation<Request<Simplify<null>
|
|
|
33
33
|
export declare const appListSystemsoftwares: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Systemsoftwares.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
34
34
|
/** get all available `SystemSoftwareVersions` of a specific `SystemSoftware` */
|
|
35
35
|
export declare const appListSystemsoftwareversions: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemsoftwareSystemSoftwareIdVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
36
|
+
/** get all update candidates for a specific `AppVersion` */
|
|
37
|
+
export declare const appListUpdateCandidatesForAppversion: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
38
|
+
/** request a copy of an `AppInstallation` */
|
|
39
|
+
export declare const appRequestAppinstallationCopy: OpenAPIOperation<Request<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsIdActionsCopy.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
36
40
|
/** get runtime status of a specific `AppInstallation` */
|
|
37
41
|
export declare const appRetrieveStatus: OpenAPIOperation<Request<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppinstallationsAppInstallationIdStatus.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
38
42
|
/** create linkage between an `AppInstallation` and `DatabaseUsers` */
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResetRecoverycodes = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userDisableMfa = exports.userInitMfa = exports.userGetMfaStatus = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateIssue = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userConfirmMfa = exports.userCheckToken = exports.userDeleteProfile = exports.userChangeProfile = void 0;
|
|
3
|
+
exports.conversationCreateConversation = exports.conversationListConversations = exports.contractListContracts = exports.contractGetNextTerminationDateForItem = exports.contractGetDetailOfContract = exports.contractGetDetailOfContractItem = exports.contractGetDetailOfContractByServer = exports.contractGetDetailOfContractByProject = exports.contractGetDetailOfContractByDomain = exports.contractGetBaseItemOfContract = exports.contractCancelContractTermination = exports.contractTerminateContract = exports.contractCancelContractTariffChange = exports.contractCancelContractItemTermination = exports.contractTerminateContractItem = exports.backupUpdateProjectBackupDescription = exports.backupDeleteProjectBackup = exports.backupGetProjectBackup = exports.backupUpdateProjectBackupSchedule = exports.backupDeleteProjectBackupSchedule = exports.backupGetProjectBackupSchedule = exports.backupCreateProjectBackup = exports.backupListProjectBackups = exports.backupCreateProjectBackupSchedule = exports.backupListProjectBackupSchedules = exports.backupDeleteProjectBackupExport = exports.backupCreateProjectBackupExport = exports.articleListArticles = exports.articleGetArticle = exports.appUpdateStatus = exports.appUnlinkDatabase = exports.appSetDatabaseUsers = exports.appRetrieveStatus = exports.appRequestAppinstallationCopy = exports.appListUpdateCandidatesForAppversion = exports.appListSystemsoftwareversions = exports.appListSystemsoftwares = exports.appListAppversions = exports.appListApps = exports.appRequestAppinstallation = exports.appListAppinstallations = exports.appLinkDatabase = exports.appGetSystemsoftwareversion = exports.appGetSystemsoftware = exports.appGetAppversion = exports.appPatchAppinstallation = exports.appUninstallAppinstallation = exports.appGetAppinstallation = exports.appGetApp = exports.appExecuteAction = void 0;
|
|
4
|
+
exports.databaseListMysqlUsers = exports.databaseCreateMysqlDatabase = exports.databaseListMysqlDatabases = exports.customerResendCustomerInviteMail = exports.customerRemoveAvatar = exports.customerRequestAvatarUpload = exports.customerListMembershipsForCustomer = exports.customerListInvitesForCustomer = exports.customerListCustomerMemberships = exports.customerListCustomerInvites = exports.customerLeaveCustomer = exports.customerIsCustomerLegallyCompetent = exports.customerGetCustomerTokenInvite = exports.customerDeleteCustomer = exports.customerUpdateCustomer = exports.customerGetCustomer = exports.customerUpdateCustomerMembership = exports.customerDeleteCustomerMembership = exports.customerGetCustomerMembership = exports.customerDeleteCustomerInvite = exports.customerGetCustomerInvite = exports.customerDeleteCategory = exports.customerUpdateCategory = exports.customerGetCustomerCategory = exports.customerDeclineCustomerInvite = exports.customerCreateCustomer = exports.customerListCustomers = exports.customerCreateCustomerInvite = exports.customerCreateCategory = exports.customerListOfCustomerCategories = exports.customerAcceptCustomerInvite = exports.cronjobUpdateCronjobAppId = exports.cronjobGetExecution = exports.cronjobUpdateCronjob = exports.cronjobDeleteCronjob = exports.cronjobGetCronjob = exports.cronjobCreateExecution = exports.cronjobListExecutions = exports.cronjobCreateCronjob = exports.cronjobListCronjobs = exports.cronjobAbortExecution = exports.conversationUpdateMessage = exports.conversationSetConversationStatus = exports.conversationRequestFileUpload = exports.conversationListCategories = exports.conversationUpdateConversation = exports.conversationGetConversation = exports.conversationGetCategory = exports.conversationCreateMessage = exports.conversationListMessagesByConversation = void 0;
|
|
5
|
+
exports.fileGetFileTokenRules = exports.fileGetFileMeta = exports.fileCreateFile = exports.domainResendDomainEmail = exports.domainListToplevelDomains = exports.domainListDomains = exports.domainListDomainOwnerships = exports.domainGetToplevelDomain = exports.domainVerifyDomainOwnership = exports.domainGetSpecificDomainOwnership = exports.domainGetHandleFields = exports.domainDeleteDomain = exports.domainGetDomain = exports.domainDeclareProcessChangeHandles = exports.domainDeclareProcessChangeAuthcode = exports.domainDeclareNameservers = exports.domainCreateAuthcode2ForDomain = exports.domainCreateAuthcodeForDomain = exports.domainCheckDomainAvailability = exports.domainChangeProjectOfDomain = exports.domainChangeOwnercOfDomain = exports.domainAbortDeclareProcess = exports.dnsZonesForProject = exports.dnsZoneGetSpecific = exports.dnsRecordTxtSet = exports.dnsRecordMxSetManaged = exports.dnsRecordMxSetCustom = exports.dnsRecordCnameSet = exports.dnsRecordAsetManagedByIngress = exports.dnsRecordAsetCustom = exports.databaseUpdateRedisDatabaseDescription = exports.databaseUpdateMysqlUserPassword = exports.databaseUpdateMysqlDatabaseDescription = exports.databaseUpdateMysqlDatabaseDefaultCharset = exports.databaseListRedisVersions = exports.databaseListMysqlVersions = exports.databaseListMysqlCharsets = exports.databaseGetMysqlUserPhpMyAdminUrl = exports.databaseEnableMysqlUser = exports.databaseDisableMysqlUser = exports.databaseDeleteRedisDatabase = exports.databaseGetRedisDatabase = exports.databaseDeleteMysqlUser = exports.databaseUpdateMysqlUser = exports.databaseGetMysqlUser = exports.databaseDeleteMysqlDatabase = exports.databaseGetMysqlDatabase = exports.databaseCreateRedisDatabase = exports.databaseListRedisDatabases = exports.databaseCreateMysqlUser = void 0;
|
|
6
|
+
exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.orderPreviewTariffChange = exports.orderPreviewOrder = exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterSubscribeUser = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.mailProjectsettingUpdateWhitelist = exports.mailProjectsettingUpdateBlacklist = exports.mailProjectsettingGetSpecific = exports.mailMailaddressUpdateSpamprotection = exports.mailMailaddressUpdateQuota = exports.mailMailaddressUpdatePassword = exports.mailMailaddressUpdateForwardaddresses = exports.mailMailaddressUpdateCatchall = exports.mailMailaddressUpdateAutoresponder = exports.mailMailaddressUpdateAddress = exports.mailMailaddressDelete = exports.mailMailaddressGetSpecific = exports.mailMailaddressCreate = exports.mailMailaddressList = exports.mailDeliveryboxUpdatePassword = exports.mailDeliveryboxUpdateDescription = exports.mailDeliveryboxDelete = exports.mailDeliveryboxGetSpecific = exports.mailDeliveryboxCreate = exports.mailDeliveryboxList = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressTls = exports.ingressPaths = exports.ingressListForProject = exports.ingressListAccessible = exports.ingressDelete = exports.ingressGetSpecific = exports.ingressCreate = exports.fileGetFile = exports.fileGetFileTypeRules = void 0;
|
|
7
|
+
exports.userGetPasswordUpdatedAt = exports.userChangeEmail = exports.userGetEmail = exports.userAuthenticateMfa = exports.userAuthenticate = exports.userRemovePhoneNumber = exports.userAddPhoneNumber = exports.sshUserUpdateSshUser = exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.relocationCreateLegacyTariffChange = exports.redirectusCreateRelocation = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = exports.projectDeleteProjectAvatar = exports.projectRequestProjectAvatarUpload = exports.projectDeclineProjectInvite = exports.projectCreateProject = void 0;
|
|
8
|
+
exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResetRecoverycodes = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userDisableMfa = exports.userInitMfa = exports.userGetMfaStatus = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateIssue = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userConfirmMfa = exports.userCheckToken = exports.userDeleteProfile = exports.userChangeProfile = exports.userGetOwnProfile = exports.userChangePassword = void 0;
|
|
9
9
|
/** execute a runtime concerning action on a specific `AppInstallation` */
|
|
10
10
|
exports.appExecuteAction = {
|
|
11
11
|
path: "/v2/appinstallations/{appInstallationId}/actions/{action}",
|
|
@@ -96,6 +96,18 @@ exports.appListSystemsoftwareversions = {
|
|
|
96
96
|
method: "GET",
|
|
97
97
|
operationId: "app-list-systemsoftwareversions",
|
|
98
98
|
};
|
|
99
|
+
/** get all update candidates for a specific `AppVersion` */
|
|
100
|
+
exports.appListUpdateCandidatesForAppversion = {
|
|
101
|
+
path: "/v2/apps/{appId}/versions/{baseAppVersionId}/update-candidates",
|
|
102
|
+
method: "GET",
|
|
103
|
+
operationId: "app-list-update-candidates-for-appversion",
|
|
104
|
+
};
|
|
105
|
+
/** request a copy of an `AppInstallation` */
|
|
106
|
+
exports.appRequestAppinstallationCopy = {
|
|
107
|
+
path: "/v2/appinstallations/{id}/actions/copy",
|
|
108
|
+
method: "POST",
|
|
109
|
+
operationId: "app-request-appinstallation-copy",
|
|
110
|
+
};
|
|
99
111
|
/** get runtime status of a specific `AppInstallation` */
|
|
100
112
|
exports.appRetrieveStatus = {
|
|
101
113
|
path: "/v2/appinstallations/{appInstallationId}/status",
|
|
@@ -495,10 +495,12 @@ export declare module MittwaldAPIV2 {
|
|
|
495
495
|
id?: string;
|
|
496
496
|
};
|
|
497
497
|
durationInMilliseconds: number;
|
|
498
|
+
end?: string;
|
|
498
499
|
executionEnd?: string;
|
|
499
500
|
executionStart?: string;
|
|
500
501
|
id: string;
|
|
501
502
|
logPath: string;
|
|
503
|
+
start?: string;
|
|
502
504
|
status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser";
|
|
503
505
|
successful: boolean;
|
|
504
506
|
triggeredBy?: {
|
|
@@ -2316,6 +2318,69 @@ export declare module MittwaldAPIV2 {
|
|
|
2316
2318
|
}
|
|
2317
2319
|
}
|
|
2318
2320
|
}
|
|
2321
|
+
namespace V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates {
|
|
2322
|
+
namespace Get {
|
|
2323
|
+
namespace Parameters {
|
|
2324
|
+
type Path = {
|
|
2325
|
+
appId: string;
|
|
2326
|
+
baseAppVersionId: string;
|
|
2327
|
+
};
|
|
2328
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
2329
|
+
type Query = {};
|
|
2330
|
+
}
|
|
2331
|
+
namespace Responses {
|
|
2332
|
+
namespace $200 {
|
|
2333
|
+
namespace Content {
|
|
2334
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.AppAppVersion[];
|
|
2335
|
+
}
|
|
2336
|
+
}
|
|
2337
|
+
namespace Default {
|
|
2338
|
+
namespace Content {
|
|
2339
|
+
interface ApplicationJson {
|
|
2340
|
+
[k: string]: unknown;
|
|
2341
|
+
}
|
|
2342
|
+
}
|
|
2343
|
+
}
|
|
2344
|
+
}
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2347
|
+
namespace V2AppinstallationsIdActionsCopy {
|
|
2348
|
+
namespace Post {
|
|
2349
|
+
namespace Parameters {
|
|
2350
|
+
type Path = {
|
|
2351
|
+
id: string;
|
|
2352
|
+
};
|
|
2353
|
+
interface RequestBody {
|
|
2354
|
+
description: string;
|
|
2355
|
+
}
|
|
2356
|
+
type Header = {};
|
|
2357
|
+
type Query = {};
|
|
2358
|
+
}
|
|
2359
|
+
namespace Responses {
|
|
2360
|
+
namespace $201 {
|
|
2361
|
+
namespace Content {
|
|
2362
|
+
interface ApplicationJson {
|
|
2363
|
+
id: string;
|
|
2364
|
+
}
|
|
2365
|
+
}
|
|
2366
|
+
}
|
|
2367
|
+
namespace $404 {
|
|
2368
|
+
namespace Content {
|
|
2369
|
+
interface ApplicationJson {
|
|
2370
|
+
[k: string]: unknown;
|
|
2371
|
+
}
|
|
2372
|
+
}
|
|
2373
|
+
}
|
|
2374
|
+
namespace Default {
|
|
2375
|
+
namespace Content {
|
|
2376
|
+
interface ApplicationJson {
|
|
2377
|
+
[k: string]: unknown;
|
|
2378
|
+
}
|
|
2379
|
+
}
|
|
2380
|
+
}
|
|
2381
|
+
}
|
|
2382
|
+
}
|
|
2383
|
+
}
|
|
2319
2384
|
namespace V2AppinstallationsAppInstallationIdStatus {
|
|
2320
2385
|
namespace Get {
|
|
2321
2386
|
namespace Parameters {
|