@mittwald/api-client 3.0.29 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/generated/v2/client-react.d.ts +234 -176
- package/dist/cjs/generated/v2/client-react.js +53 -44
- package/dist/cjs/generated/v2/client.d.ts +1694 -1492
- package/dist/cjs/generated/v2/client.js +131 -115
- package/dist/cjs/generated/v2/descriptors.d.ts +24 -24
- package/dist/cjs/generated/v2/descriptors.js +26 -26
- package/dist/cjs/generated/v2/types.d.ts +31 -85
- package/dist/esm/generated/v2/client-react.d.ts +234 -176
- package/dist/esm/generated/v2/client-react.js +57 -46
- package/dist/esm/generated/v2/client.d.ts +1694 -1492
- package/dist/esm/generated/v2/client.js +131 -115
- package/dist/esm/generated/v2/descriptors.d.ts +24 -24
- package/dist/esm/generated/v2/descriptors.js +26 -26
- package/dist/esm/generated/v2/types.d.ts +31 -85
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { ApiClientBase } from "@mittwald/api-client-commons";
|
|
|
2
2
|
export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
3
3
|
/** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
|
|
4
4
|
readonly app: {
|
|
5
|
-
/**
|
|
5
|
+
/** Execute a runtime concerning action on a specific `AppInstallation`. */
|
|
6
6
|
executeAction: (request: {
|
|
7
7
|
appInstallationId: string;
|
|
8
8
|
action: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAction;
|
|
@@ -21,7 +21,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21
21
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
22
22
|
[x: string]: unknown;
|
|
23
23
|
}, 404, "application/json">>>;
|
|
24
|
-
/**
|
|
24
|
+
/** Get a specific `App`. */
|
|
25
25
|
getApp: (request: {
|
|
26
26
|
appId: string;
|
|
27
27
|
headers?: {
|
|
@@ -50,7 +50,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
50
50
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
51
51
|
[x: string]: unknown;
|
|
52
52
|
}, 404, "application/json">>>;
|
|
53
|
-
/**
|
|
53
|
+
/** Get a specific `AppInstallation`. */
|
|
54
54
|
getAppinstallation: (request: {
|
|
55
55
|
appInstallationId: string;
|
|
56
56
|
headers?: {
|
|
@@ -91,7 +91,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
91
91
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
92
92
|
[x: string]: unknown;
|
|
93
93
|
}, 404, "application/json">>>;
|
|
94
|
-
/**
|
|
94
|
+
/** Start uninstallation process for a specific `AppInstallation`. */
|
|
95
95
|
uninstallAppinstallation: (request: {
|
|
96
96
|
appInstallationId: string;
|
|
97
97
|
headers?: {
|
|
@@ -115,7 +115,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
115
115
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
116
116
|
[x: string]: unknown;
|
|
117
117
|
}, 404, "application/json">>>;
|
|
118
|
-
/**
|
|
118
|
+
/** Patch desired properties of a specific `AppInstallation`. */
|
|
119
119
|
patchAppinstallation: (request: {
|
|
120
120
|
appInstallationId: string;
|
|
121
121
|
data?: {
|
|
@@ -159,7 +159,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
159
159
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
160
160
|
[x: string]: unknown;
|
|
161
161
|
}, 404, "application/json">>>;
|
|
162
|
-
/**
|
|
162
|
+
/** Get a specific `AppVersion`. */
|
|
163
163
|
getAppversion: (request: {
|
|
164
164
|
appId: string;
|
|
165
165
|
appVersionId: string;
|
|
@@ -197,7 +197,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
197
197
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
198
198
|
[x: string]: unknown;
|
|
199
199
|
}, 404, "application/json">>>;
|
|
200
|
-
/**
|
|
200
|
+
/** Get the missing requirements of an appInstallation for a specific target AppVersion. */
|
|
201
201
|
getMissingDependenciesForAppinstallation: (request: {
|
|
202
202
|
queryParameters: {
|
|
203
203
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -233,7 +233,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
233
233
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
234
234
|
[x: string]: unknown;
|
|
235
235
|
}, 404, "application/json">>>;
|
|
236
|
-
/**
|
|
236
|
+
/** Get a specific `SystemSoftware`. */
|
|
237
237
|
getSystemsoftware: (request: {
|
|
238
238
|
systemSoftwareId: string;
|
|
239
239
|
headers?: {
|
|
@@ -261,7 +261,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
261
261
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
262
262
|
[x: string]: unknown;
|
|
263
263
|
}, 404, "application/json">>>;
|
|
264
|
-
/**
|
|
264
|
+
/** Get a specific `SystemSoftwareVersion`. */
|
|
265
265
|
getSystemsoftwareversion: (request: {
|
|
266
266
|
systemSoftwareId: string;
|
|
267
267
|
systemSoftwareVersionId: string;
|
|
@@ -294,7 +294,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
294
294
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
295
295
|
[x: string]: unknown;
|
|
296
296
|
}, 404, "application/json">>>;
|
|
297
|
-
/**
|
|
297
|
+
/** Create linkage between an `AppInstallation` and a MySql-`Database`. */
|
|
298
298
|
linkDatabase: (request: {
|
|
299
299
|
data: {
|
|
300
300
|
databaseId: string;
|
|
@@ -333,7 +333,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
333
333
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
334
334
|
[x: string]: unknown;
|
|
335
335
|
}, 404, "application/json">>>;
|
|
336
|
-
/**
|
|
336
|
+
/** Get all `AppInstallations` inside a specific `Project`. */
|
|
337
337
|
listAppinstallations: (request: {
|
|
338
338
|
projectId: string;
|
|
339
339
|
headers?: {
|
|
@@ -369,7 +369,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
369
369
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
370
370
|
}>;
|
|
371
371
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallation[], 200, "application/json">>>;
|
|
372
|
-
/**
|
|
372
|
+
/** Request a new `AppInstallation`. */
|
|
373
373
|
requestAppinstallation: (request: {
|
|
374
374
|
data: {
|
|
375
375
|
appVersionId: string;
|
|
@@ -402,7 +402,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
402
402
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
403
403
|
[x: string]: unknown;
|
|
404
404
|
}, 404, "application/json">>>;
|
|
405
|
-
/**
|
|
405
|
+
/** Get all available `Apps`. */
|
|
406
406
|
listApps: (request?: {
|
|
407
407
|
headers?: {
|
|
408
408
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -433,7 +433,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
433
433
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
434
434
|
}>;
|
|
435
435
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppApp[], 200, "application/json">>>;
|
|
436
|
-
/**
|
|
436
|
+
/** Get all `AppVersions` of a specific `App`. */
|
|
437
437
|
listAppversions: (request: {
|
|
438
438
|
appId: string;
|
|
439
439
|
headers?: {
|
|
@@ -455,7 +455,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
455
455
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
456
456
|
}>;
|
|
457
457
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppVersion[], 200, "application/json">>>;
|
|
458
|
-
/**
|
|
458
|
+
/** Get all available `SystemSoftware`. */
|
|
459
459
|
listSystemsoftwares: (request?: {
|
|
460
460
|
headers?: {
|
|
461
461
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -486,7 +486,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
486
486
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
487
487
|
}>;
|
|
488
488
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftware[], 200, "application/json">>>;
|
|
489
|
-
/**
|
|
489
|
+
/** Get all available `SystemSoftwareVersions` of a specific `SystemSoftware`. */
|
|
490
490
|
listSystemsoftwareversions: (request: {
|
|
491
491
|
systemSoftwareId: string;
|
|
492
492
|
headers?: {
|
|
@@ -518,7 +518,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
518
518
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
519
519
|
}>;
|
|
520
520
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftwareVersion[], 200, "application/json">>>;
|
|
521
|
-
/**
|
|
521
|
+
/** Get all update candidates for a specific `AppVersion`. */
|
|
522
522
|
listUpdateCandidatesForAppversion: (request: {
|
|
523
523
|
appId: string;
|
|
524
524
|
baseAppVersionId: string;
|
|
@@ -542,10 +542,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
542
542
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
543
543
|
}>;
|
|
544
544
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppVersion[], 200, "application/json">>>;
|
|
545
|
-
/**
|
|
545
|
+
/** Request a copy of an `AppInstallation`. */
|
|
546
546
|
requestAppinstallationCopy: (request: {
|
|
547
547
|
data: {
|
|
548
548
|
description: string;
|
|
549
|
+
targetProjectId?: string | undefined;
|
|
549
550
|
};
|
|
550
551
|
id: string;
|
|
551
552
|
headers?: {
|
|
@@ -554,6 +555,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
554
555
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
555
556
|
data: {
|
|
556
557
|
description: string;
|
|
558
|
+
targetProjectId?: string | undefined;
|
|
557
559
|
};
|
|
558
560
|
} & {
|
|
559
561
|
pathParameters: {
|
|
@@ -568,7 +570,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
568
570
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
569
571
|
[x: string]: unknown;
|
|
570
572
|
}, 404, "application/json">>>;
|
|
571
|
-
/**
|
|
573
|
+
/** Get runtime status of a specific `AppInstallation`. */
|
|
572
574
|
retrieveStatus: (request: {
|
|
573
575
|
appInstallationId: string;
|
|
574
576
|
headers?: {
|
|
@@ -590,7 +592,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
590
592
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
591
593
|
[x: string]: unknown;
|
|
592
594
|
}, 404, "application/json">>>;
|
|
593
|
-
/**
|
|
595
|
+
/** Create linkage between an `AppInstallation` and `DatabaseUsers`. */
|
|
594
596
|
setDatabaseUsers: (request: {
|
|
595
597
|
appInstallationId: string;
|
|
596
598
|
databaseId: string;
|
|
@@ -627,7 +629,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
627
629
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
628
630
|
[x: string]: unknown;
|
|
629
631
|
}, 404, "application/json">>>;
|
|
630
|
-
/**
|
|
632
|
+
/** Remove linkage between an `AppInstallation` and a `Database`. */
|
|
631
633
|
unlinkDatabase: (request: {
|
|
632
634
|
appInstallationId: string;
|
|
633
635
|
databaseId: string;
|
|
@@ -6825,71 +6827,82 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6825
6827
|
[x: string]: unknown;
|
|
6826
6828
|
}, 503, "application/json">>>;
|
|
6827
6829
|
};
|
|
6828
|
-
/** The
|
|
6829
|
-
readonly
|
|
6830
|
-
/**
|
|
6831
|
-
|
|
6832
|
-
|
|
6833
|
-
|
|
6834
|
-
|
|
6835
|
-
}
|
|
6830
|
+
/** The page insights API allows you to get page insights information. */
|
|
6831
|
+
readonly pageInsights: {
|
|
6832
|
+
/** Get detailed performance data for a given domain and path. */
|
|
6833
|
+
pageinsightsGetPerformanceData: (request: {
|
|
6834
|
+
queryParameters: {
|
|
6835
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6836
|
+
date?: string | undefined;
|
|
6837
|
+
};
|
|
6836
6838
|
headers?: {
|
|
6837
6839
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6838
6840
|
"x-access-token"?: string | undefined;
|
|
6839
6841
|
} | undefined;
|
|
6840
6842
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6841
|
-
data: {
|
|
6842
|
-
invitationToken?: string | undefined;
|
|
6843
|
-
};
|
|
6844
|
-
} & {
|
|
6845
|
-
pathParameters: {
|
|
6846
|
-
inviteId: string;
|
|
6847
|
-
};
|
|
6848
|
-
} & {
|
|
6849
6843
|
headers?: Partial<{
|
|
6850
6844
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6851
6845
|
}> | undefined;
|
|
6846
|
+
} & {
|
|
6847
|
+
queryParameters: {
|
|
6848
|
+
domain: string;
|
|
6849
|
+
path: string;
|
|
6850
|
+
date?: string | undefined;
|
|
6851
|
+
} & Partial<{
|
|
6852
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6853
|
+
}>;
|
|
6852
6854
|
} & {
|
|
6853
6855
|
headers: {
|
|
6854
6856
|
"x-access-token"?: string | undefined;
|
|
6855
6857
|
} & Partial<{
|
|
6856
6858
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6857
6859
|
}>;
|
|
6858
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
6860
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6861
|
+
createdAt?: string | undefined;
|
|
6862
|
+
domain: string;
|
|
6863
|
+
metrics?: {
|
|
6864
|
+
createdAt: string;
|
|
6865
|
+
name: string;
|
|
6866
|
+
score: number;
|
|
6867
|
+
value: number;
|
|
6868
|
+
}[] | undefined;
|
|
6869
|
+
moreDataAvailable?: string[] | undefined;
|
|
6870
|
+
path: string;
|
|
6871
|
+
performanceScore: number;
|
|
6872
|
+
screenshot?: {
|
|
6873
|
+
createdAt: string;
|
|
6874
|
+
fileRef: string;
|
|
6875
|
+
} | undefined;
|
|
6876
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6859
6877
|
[x: string]: unknown;
|
|
6860
6878
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6861
6879
|
[x: string]: unknown;
|
|
6862
|
-
}, 403, "application/json"
|
|
6863
|
-
|
|
6864
|
-
|
|
6865
|
-
|
|
6866
|
-
createProjectInvite: (request: {
|
|
6867
|
-
data: {
|
|
6868
|
-
mailAddress: string;
|
|
6869
|
-
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
6870
|
-
membershipExpiresAt?: string | undefined;
|
|
6871
|
-
message?: string | undefined;
|
|
6872
|
-
};
|
|
6873
|
-
projectId: string;
|
|
6880
|
+
}, 403, "application/json">>>;
|
|
6881
|
+
/** List websites (specified as domain and path) from a project where performance data is available. */
|
|
6882
|
+
pageinsightsListPerformanceDataForProject: (request: {
|
|
6883
|
+
id: string;
|
|
6874
6884
|
headers?: {
|
|
6875
6885
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6876
6886
|
"x-access-token"?: string | undefined;
|
|
6877
6887
|
} | undefined;
|
|
6888
|
+
queryParameters?: {
|
|
6889
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6890
|
+
domain?: string | undefined;
|
|
6891
|
+
} | undefined;
|
|
6878
6892
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6879
|
-
|
|
6880
|
-
|
|
6881
|
-
|
|
6882
|
-
message?: string | undefined;
|
|
6883
|
-
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
6884
|
-
};
|
|
6893
|
+
headers?: Partial<{
|
|
6894
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6895
|
+
}> | undefined;
|
|
6885
6896
|
} & {
|
|
6886
6897
|
pathParameters: {
|
|
6887
|
-
|
|
6898
|
+
id: string;
|
|
6888
6899
|
};
|
|
6889
6900
|
} & {
|
|
6890
|
-
|
|
6901
|
+
queryParameters: {
|
|
6902
|
+
domain?: string | undefined;
|
|
6903
|
+
} & Partial<{
|
|
6891
6904
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6892
|
-
}
|
|
6905
|
+
}>;
|
|
6893
6906
|
} & {
|
|
6894
6907
|
headers: {
|
|
6895
6908
|
"x-access-token"?: string | undefined;
|
|
@@ -6897,36 +6910,53 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6897
6910
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6898
6911
|
}>;
|
|
6899
6912
|
}, import("@mittwald/api-client-commons").Response<{
|
|
6900
|
-
|
|
6901
|
-
|
|
6902
|
-
|
|
6903
|
-
|
|
6904
|
-
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
|
-
|
|
6908
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6913
|
+
domain: string;
|
|
6914
|
+
paths: {
|
|
6915
|
+
createdAt: string;
|
|
6916
|
+
path: string;
|
|
6917
|
+
performanceScore: number;
|
|
6918
|
+
screenshotFileRef?: string | undefined;
|
|
6919
|
+
}[];
|
|
6920
|
+
}[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6909
6921
|
[x: string]: unknown;
|
|
6910
6922
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6911
6923
|
[x: string]: unknown;
|
|
6912
|
-
},
|
|
6913
|
-
|
|
6914
|
-
|
|
6924
|
+
}, 403, "application/json">>>;
|
|
6925
|
+
};
|
|
6926
|
+
/** The user API allows you to manage your own user and access information of other users that might be visible to you. */
|
|
6927
|
+
readonly user: {
|
|
6928
|
+
/** Get a password policy. */
|
|
6929
|
+
passwordValidationGetPasswordPolicy: (request: {
|
|
6930
|
+
path: string;
|
|
6931
|
+
headers?: {
|
|
6932
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6933
|
+
} | undefined;
|
|
6934
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6935
|
+
headers?: Partial<{
|
|
6936
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6937
|
+
}> | undefined;
|
|
6938
|
+
} & {
|
|
6939
|
+
pathParameters: {
|
|
6940
|
+
path: string;
|
|
6941
|
+
};
|
|
6942
|
+
}, import("@mittwald/api-client-commons").Response<string, 200, "application/json">>>;
|
|
6943
|
+
/** Add phone number and start verification process. */
|
|
6944
|
+
addPhoneNumber: (request: {
|
|
6915
6945
|
data: {
|
|
6916
|
-
|
|
6946
|
+
phoneNumber: string;
|
|
6917
6947
|
};
|
|
6918
|
-
|
|
6948
|
+
userId: string;
|
|
6919
6949
|
headers?: {
|
|
6920
6950
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6921
6951
|
"x-access-token"?: string | undefined;
|
|
6922
6952
|
} | undefined;
|
|
6923
6953
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6924
6954
|
data: {
|
|
6925
|
-
|
|
6955
|
+
phoneNumber: string;
|
|
6926
6956
|
};
|
|
6927
6957
|
} & {
|
|
6928
6958
|
pathParameters: {
|
|
6929
|
-
|
|
6959
|
+
userId: string;
|
|
6930
6960
|
};
|
|
6931
6961
|
} & {
|
|
6932
6962
|
headers?: Partial<{
|
|
@@ -6938,114 +6968,111 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6938
6968
|
} & Partial<{
|
|
6939
6969
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6940
6970
|
}>;
|
|
6941
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
6942
|
-
id: string;
|
|
6943
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6971
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
6944
6972
|
[x: string]: unknown;
|
|
6945
6973
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6946
6974
|
[x: string]: unknown;
|
|
6947
6975
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6948
6976
|
[x: string]: unknown;
|
|
6949
|
-
},
|
|
6950
|
-
/**
|
|
6951
|
-
|
|
6952
|
-
|
|
6953
|
-
data?: {
|
|
6954
|
-
[x: string]: unknown;
|
|
6955
|
-
} | undefined;
|
|
6977
|
+
}, 409, "application/json">>>;
|
|
6978
|
+
/** Remove phone number. */
|
|
6979
|
+
removePhoneNumber: (request: {
|
|
6980
|
+
userId: string;
|
|
6956
6981
|
headers?: {
|
|
6957
6982
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6958
6983
|
"x-access-token"?: string | undefined;
|
|
6959
6984
|
} | undefined;
|
|
6960
6985
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6961
|
-
data: {
|
|
6962
|
-
[x: string]: unknown;
|
|
6963
|
-
};
|
|
6964
|
-
} & {
|
|
6965
|
-
pathParameters: {
|
|
6966
|
-
inviteId: string;
|
|
6967
|
-
};
|
|
6968
|
-
} & {
|
|
6969
6986
|
headers?: Partial<{
|
|
6970
6987
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6971
6988
|
}> | undefined;
|
|
6989
|
+
} & {
|
|
6990
|
+
pathParameters: {
|
|
6991
|
+
userId: string;
|
|
6992
|
+
};
|
|
6972
6993
|
} & {
|
|
6973
6994
|
headers: {
|
|
6974
6995
|
"x-access-token"?: string | undefined;
|
|
6975
6996
|
} & Partial<{
|
|
6976
6997
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6977
6998
|
}>;
|
|
6978
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"
|
|
6979
|
-
|
|
6980
|
-
|
|
6981
|
-
|
|
6999
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7000
|
+
[x: string]: unknown;
|
|
7001
|
+
}, 400, "application/json">>>;
|
|
7002
|
+
/** Validate your second factor. */
|
|
7003
|
+
authenticateMfa: (request: {
|
|
7004
|
+
data: {
|
|
7005
|
+
multiFactorCode: string;
|
|
7006
|
+
email?: string | undefined;
|
|
7007
|
+
password?: string | undefined;
|
|
7008
|
+
};
|
|
6982
7009
|
headers?: {
|
|
6983
7010
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6984
|
-
"x-access-token"?: string | undefined;
|
|
6985
7011
|
} | undefined;
|
|
6986
7012
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6987
|
-
|
|
6988
|
-
|
|
6989
|
-
|
|
6990
|
-
|
|
6991
|
-
pathParameters: {
|
|
6992
|
-
projectId: string;
|
|
7013
|
+
data: {
|
|
7014
|
+
email?: string | undefined;
|
|
7015
|
+
multiFactorCode: string;
|
|
7016
|
+
password?: string | undefined;
|
|
6993
7017
|
};
|
|
6994
7018
|
} & {
|
|
6995
|
-
headers
|
|
6996
|
-
"x-access-token"?: string | undefined;
|
|
6997
|
-
} & Partial<{
|
|
7019
|
+
headers?: Partial<{
|
|
6998
7020
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6999
|
-
}
|
|
7021
|
+
}> | undefined;
|
|
7000
7022
|
}, import("@mittwald/api-client-commons").Response<{
|
|
7001
|
-
|
|
7002
|
-
|
|
7023
|
+
expires: string;
|
|
7024
|
+
token: string;
|
|
7003
7025
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7004
|
-
|
|
7026
|
+
type: "ValidationError";
|
|
7027
|
+
message?: string | undefined;
|
|
7028
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7005
7029
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7006
|
-
|
|
7007
|
-
|
|
7008
|
-
|
|
7009
|
-
|
|
7010
|
-
|
|
7030
|
+
info?: {} | undefined;
|
|
7031
|
+
message: string;
|
|
7032
|
+
name: "FirstAuthenticationFactorExpired";
|
|
7033
|
+
}, 408, "application/json">>>;
|
|
7034
|
+
/** Authenticate yourself to get an access token. */
|
|
7035
|
+
authenticate: (request: {
|
|
7036
|
+
data: {
|
|
7037
|
+
email: string;
|
|
7038
|
+
password: string;
|
|
7039
|
+
};
|
|
7011
7040
|
headers?: {
|
|
7012
7041
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7013
|
-
"x-access-token"?: string | undefined;
|
|
7014
7042
|
} | undefined;
|
|
7015
7043
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7016
|
-
|
|
7017
|
-
|
|
7018
|
-
|
|
7019
|
-
} & {
|
|
7020
|
-
pathParameters: {
|
|
7021
|
-
projectId: string;
|
|
7044
|
+
data: {
|
|
7045
|
+
email: string;
|
|
7046
|
+
password: string;
|
|
7022
7047
|
};
|
|
7023
7048
|
} & {
|
|
7024
|
-
headers
|
|
7025
|
-
"x-access-token"?: string | undefined;
|
|
7026
|
-
} & Partial<{
|
|
7049
|
+
headers?: Partial<{
|
|
7027
7050
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7028
|
-
}
|
|
7029
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
7030
|
-
|
|
7051
|
+
}> | undefined;
|
|
7052
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7053
|
+
type: "ValidationError";
|
|
7054
|
+
message?: string | undefined;
|
|
7055
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7031
7056
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7032
|
-
|
|
7033
|
-
|
|
7034
|
-
|
|
7035
|
-
|
|
7036
|
-
|
|
7057
|
+
expires: string;
|
|
7058
|
+
token: string;
|
|
7059
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7060
|
+
name?: "SecondFactorRequired" | undefined;
|
|
7061
|
+
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7062
|
+
type: "ValidationError";
|
|
7063
|
+
message?: string | undefined;
|
|
7064
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7065
|
+
}, 401, "application/json">>>;
|
|
7066
|
+
/** Get your verified Email-Address. */
|
|
7067
|
+
getOwnEmail: (request?: {
|
|
7037
7068
|
headers?: {
|
|
7038
7069
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7039
7070
|
"x-access-token"?: string | undefined;
|
|
7040
7071
|
} | undefined;
|
|
7041
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7072
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7042
7073
|
headers?: Partial<{
|
|
7043
7074
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7044
7075
|
}> | undefined;
|
|
7045
|
-
} & {
|
|
7046
|
-
pathParameters: {
|
|
7047
|
-
inviteId: string;
|
|
7048
|
-
};
|
|
7049
7076
|
} & {
|
|
7050
7077
|
headers: {
|
|
7051
7078
|
"x-access-token"?: string | undefined;
|
|
@@ -7053,54 +7080,59 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7053
7080
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7054
7081
|
}>;
|
|
7055
7082
|
}, import("@mittwald/api-client-commons").Response<{
|
|
7056
|
-
|
|
7057
|
-
information: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
|
|
7058
|
-
mailAddress: string;
|
|
7059
|
-
membershipExpiresAt?: string | undefined;
|
|
7060
|
-
message?: string | undefined;
|
|
7061
|
-
projectDescription: string;
|
|
7062
|
-
projectId: string;
|
|
7063
|
-
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
7083
|
+
email: string;
|
|
7064
7084
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7065
7085
|
[x: string]: unknown;
|
|
7066
7086
|
}, 404, "application/json">>>;
|
|
7067
|
-
/**
|
|
7068
|
-
|
|
7069
|
-
|
|
7087
|
+
/** Change your Email-Address. */
|
|
7088
|
+
changeEmail: (request: {
|
|
7089
|
+
data: {
|
|
7090
|
+
email: string;
|
|
7091
|
+
};
|
|
7070
7092
|
headers?: {
|
|
7071
7093
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7072
7094
|
"x-access-token"?: string | undefined;
|
|
7073
7095
|
} | undefined;
|
|
7074
7096
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7097
|
+
data: {
|
|
7098
|
+
email: string;
|
|
7099
|
+
};
|
|
7100
|
+
} & {
|
|
7075
7101
|
headers?: Partial<{
|
|
7076
7102
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7077
7103
|
}> | undefined;
|
|
7078
|
-
} & {
|
|
7079
|
-
pathParameters: {
|
|
7080
|
-
inviteId: string;
|
|
7081
|
-
};
|
|
7082
7104
|
} & {
|
|
7083
7105
|
headers: {
|
|
7084
7106
|
"x-access-token"?: string | undefined;
|
|
7085
7107
|
} & Partial<{
|
|
7086
7108
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7087
7109
|
}>;
|
|
7088
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"
|
|
7089
|
-
|
|
7090
|
-
|
|
7091
|
-
|
|
7110
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7111
|
+
type: "ValidationError";
|
|
7112
|
+
message?: string | undefined;
|
|
7113
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7114
|
+
}, 400, "application/json">>>;
|
|
7115
|
+
/** Change your password. */
|
|
7116
|
+
changePassword: (request: {
|
|
7117
|
+
data: {
|
|
7118
|
+
newPassword: string;
|
|
7119
|
+
oldPassword: string;
|
|
7120
|
+
multiFactorCode?: string | undefined;
|
|
7121
|
+
};
|
|
7092
7122
|
headers?: {
|
|
7093
7123
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7094
7124
|
"x-access-token"?: string | undefined;
|
|
7095
7125
|
} | undefined;
|
|
7096
7126
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7127
|
+
data: {
|
|
7128
|
+
multiFactorCode?: string | undefined;
|
|
7129
|
+
newPassword: string;
|
|
7130
|
+
oldPassword: string;
|
|
7131
|
+
};
|
|
7132
|
+
} & {
|
|
7097
7133
|
headers?: Partial<{
|
|
7098
7134
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7099
7135
|
}> | undefined;
|
|
7100
|
-
} & {
|
|
7101
|
-
pathParameters: {
|
|
7102
|
-
membershipId: string;
|
|
7103
|
-
};
|
|
7104
7136
|
} & {
|
|
7105
7137
|
headers: {
|
|
7106
7138
|
"x-access-token"?: string | undefined;
|
|
@@ -7108,60 +7140,42 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7108
7140
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7109
7141
|
}>;
|
|
7110
7142
|
}, import("@mittwald/api-client-commons").Response<{
|
|
7111
|
-
|
|
7112
|
-
|
|
7113
|
-
|
|
7114
|
-
|
|
7115
|
-
|
|
7116
|
-
|
|
7117
|
-
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
7118
|
-
userId: string;
|
|
7143
|
+
type: "ValidationError";
|
|
7144
|
+
message?: string | undefined;
|
|
7145
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7146
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7147
|
+
expires: string;
|
|
7148
|
+
token: string;
|
|
7119
7149
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7120
7150
|
[x: string]: unknown;
|
|
7121
|
-
},
|
|
7122
|
-
/**
|
|
7123
|
-
|
|
7124
|
-
membershipId: string;
|
|
7151
|
+
}, 202, "application/json">>>;
|
|
7152
|
+
/** Check token for validity. */
|
|
7153
|
+
checkToken: (request?: {
|
|
7125
7154
|
headers?: {
|
|
7126
7155
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7127
7156
|
"x-access-token"?: string | undefined;
|
|
7128
7157
|
} | undefined;
|
|
7129
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7158
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7130
7159
|
headers?: Partial<{
|
|
7131
7160
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7132
7161
|
}> | undefined;
|
|
7133
|
-
} & {
|
|
7134
|
-
pathParameters: {
|
|
7135
|
-
membershipId: string;
|
|
7136
|
-
};
|
|
7137
7162
|
} & {
|
|
7138
7163
|
headers: {
|
|
7139
7164
|
"x-access-token"?: string | undefined;
|
|
7140
7165
|
} & Partial<{
|
|
7141
7166
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7142
7167
|
}>;
|
|
7143
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
7144
|
-
|
|
7145
|
-
|
|
7146
|
-
|
|
7147
|
-
|
|
7148
|
-
|
|
7149
|
-
};
|
|
7150
|
-
membershipId: string;
|
|
7168
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7169
|
+
id: string;
|
|
7170
|
+
publicToken: string;
|
|
7171
|
+
}, 200, "application/json">>>;
|
|
7172
|
+
/** Get your current multi factor auth status. */
|
|
7173
|
+
getMfaStatus: (request?: {
|
|
7151
7174
|
headers?: {
|
|
7152
7175
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7153
7176
|
"x-access-token"?: string | undefined;
|
|
7154
7177
|
} | undefined;
|
|
7155
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7156
|
-
data: {
|
|
7157
|
-
expiresAt?: string | undefined;
|
|
7158
|
-
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
7159
|
-
};
|
|
7160
|
-
} & {
|
|
7161
|
-
pathParameters: {
|
|
7162
|
-
membershipId: string;
|
|
7163
|
-
};
|
|
7164
|
-
} & {
|
|
7178
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7165
7179
|
headers?: Partial<{
|
|
7166
7180
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7167
7181
|
}> | undefined;
|
|
@@ -7171,22 +7185,27 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7171
7185
|
} & Partial<{
|
|
7172
7186
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7173
7187
|
}>;
|
|
7174
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
7175
|
-
|
|
7176
|
-
|
|
7177
|
-
|
|
7188
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7189
|
+
confirmed: boolean;
|
|
7190
|
+
initialized: boolean;
|
|
7191
|
+
}, 200, "application/json">>>;
|
|
7192
|
+
/** Reset RecoveryCodes for MFA. */
|
|
7193
|
+
resetRecoverycodes: (request: {
|
|
7194
|
+
data: {
|
|
7195
|
+
multiFactorCode: string;
|
|
7196
|
+
};
|
|
7178
7197
|
headers?: {
|
|
7179
7198
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7180
7199
|
"x-access-token"?: string | undefined;
|
|
7181
7200
|
} | undefined;
|
|
7182
7201
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7202
|
+
data: {
|
|
7203
|
+
multiFactorCode: string;
|
|
7204
|
+
};
|
|
7205
|
+
} & {
|
|
7183
7206
|
headers?: Partial<{
|
|
7184
7207
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7185
7208
|
}> | undefined;
|
|
7186
|
-
} & {
|
|
7187
|
-
pathParameters: {
|
|
7188
|
-
projectId: string;
|
|
7189
|
-
};
|
|
7190
7209
|
} & {
|
|
7191
7210
|
headers: {
|
|
7192
7211
|
"x-access-token"?: string | undefined;
|
|
@@ -7194,158 +7213,190 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7194
7213
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7195
7214
|
}>;
|
|
7196
7215
|
}, import("@mittwald/api-client-commons").Response<{
|
|
7197
|
-
|
|
7198
|
-
|
|
7199
|
-
|
|
7200
|
-
|
|
7201
|
-
|
|
7202
|
-
|
|
7203
|
-
|
|
7216
|
+
type: "ValidationError";
|
|
7217
|
+
message?: string | undefined;
|
|
7218
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7219
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7220
|
+
recoveryCodesList: [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string];
|
|
7221
|
+
}, 200, "application/json">>>;
|
|
7222
|
+
/** Confirm Multi Factor Authentication. */
|
|
7223
|
+
confirmMfa: (request: {
|
|
7224
|
+
data: {
|
|
7225
|
+
multiFactorCode: string;
|
|
7204
7226
|
};
|
|
7205
|
-
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
7206
|
-
enabled: boolean;
|
|
7207
|
-
id: string;
|
|
7208
|
-
imageRefId?: string | undefined;
|
|
7209
|
-
isReady: boolean;
|
|
7210
|
-
projectHostingId?: string | undefined;
|
|
7211
|
-
readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectReadinessStatus;
|
|
7212
|
-
serverId?: string | undefined;
|
|
7213
|
-
serverShortId?: string | undefined;
|
|
7214
|
-
shortId: string;
|
|
7215
|
-
spec?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectHardwareSpec | import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectVisitorSpec | undefined;
|
|
7216
|
-
statisticsBaseDomain?: string | undefined;
|
|
7217
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7218
|
-
[x: string]: unknown;
|
|
7219
|
-
}, 403, "application/json">>>;
|
|
7220
|
-
/** Delete a Project. */
|
|
7221
|
-
deleteProject: (request: {
|
|
7222
|
-
projectId: string;
|
|
7223
7227
|
headers?: {
|
|
7224
7228
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7225
7229
|
"x-access-token"?: string | undefined;
|
|
7226
7230
|
} | undefined;
|
|
7227
7231
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7232
|
+
data: {
|
|
7233
|
+
multiFactorCode: string;
|
|
7234
|
+
};
|
|
7235
|
+
} & {
|
|
7228
7236
|
headers?: Partial<{
|
|
7229
7237
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7230
7238
|
}> | undefined;
|
|
7231
|
-
} & {
|
|
7232
|
-
pathParameters: {
|
|
7233
|
-
projectId: string;
|
|
7234
|
-
};
|
|
7235
7239
|
} & {
|
|
7236
7240
|
headers: {
|
|
7237
7241
|
"x-access-token"?: string | undefined;
|
|
7238
7242
|
} & Partial<{
|
|
7239
7243
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7240
7244
|
}>;
|
|
7241
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
7242
|
-
|
|
7245
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7246
|
+
type: "ValidationError";
|
|
7247
|
+
message?: string | undefined;
|
|
7248
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7243
7249
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7244
|
-
|
|
7245
|
-
},
|
|
7246
|
-
|
|
7247
|
-
|
|
7248
|
-
|
|
7249
|
-
|
|
7250
|
-
|
|
7251
|
-
requestServerAvatarUpload: (request: {
|
|
7252
|
-
serverId: string;
|
|
7250
|
+
recoveryCodesList: [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string];
|
|
7251
|
+
}, 200, "application/json">>>;
|
|
7252
|
+
/** Disable Multi Factor Authentication. */
|
|
7253
|
+
disableMfa: (request: {
|
|
7254
|
+
data: {
|
|
7255
|
+
multiFactorCode: string;
|
|
7256
|
+
};
|
|
7253
7257
|
headers?: {
|
|
7254
7258
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7255
7259
|
"x-access-token"?: string | undefined;
|
|
7256
7260
|
} | undefined;
|
|
7257
7261
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7262
|
+
data: {
|
|
7263
|
+
multiFactorCode: string;
|
|
7264
|
+
};
|
|
7265
|
+
} & {
|
|
7258
7266
|
headers?: Partial<{
|
|
7259
7267
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7260
7268
|
}> | undefined;
|
|
7261
|
-
} & {
|
|
7262
|
-
pathParameters: {
|
|
7263
|
-
serverId: string;
|
|
7264
|
-
};
|
|
7265
7269
|
} & {
|
|
7266
7270
|
headers: {
|
|
7267
7271
|
"x-access-token"?: string | undefined;
|
|
7268
7272
|
} & Partial<{
|
|
7269
7273
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7270
7274
|
}>;
|
|
7271
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
7272
|
-
|
|
7273
|
-
|
|
7274
|
-
|
|
7275
|
-
|
|
7276
|
-
|
|
7277
|
-
|
|
7278
|
-
|
|
7279
|
-
|
|
7280
|
-
|
|
7281
|
-
|
|
7275
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7276
|
+
type: "ValidationError";
|
|
7277
|
+
message?: string | undefined;
|
|
7278
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7279
|
+
}, 400, "application/json">>>;
|
|
7280
|
+
/** Confirm password reset. */
|
|
7281
|
+
confirmPasswordReset: (request: {
|
|
7282
|
+
data: {
|
|
7283
|
+
password: string;
|
|
7284
|
+
token: string;
|
|
7285
|
+
userId: string;
|
|
7286
|
+
};
|
|
7282
7287
|
headers?: {
|
|
7283
7288
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7284
|
-
"x-access-token"?: string | undefined;
|
|
7285
7289
|
} | undefined;
|
|
7286
7290
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7291
|
+
data: {
|
|
7292
|
+
password: string;
|
|
7293
|
+
token: string;
|
|
7294
|
+
userId: string;
|
|
7295
|
+
};
|
|
7296
|
+
} & {
|
|
7297
|
+
headers?: Partial<{
|
|
7298
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7299
|
+
}> | undefined;
|
|
7300
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7301
|
+
type: "ValidationError";
|
|
7302
|
+
message?: string | undefined;
|
|
7303
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7304
|
+
}, 400, "application/json">>>;
|
|
7305
|
+
/** List all of your ApiTokens. */
|
|
7306
|
+
listApiTokens: (request?: {
|
|
7307
|
+
headers?: {
|
|
7308
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7309
|
+
"x-access-token"?: string | undefined;
|
|
7310
|
+
} | undefined;
|
|
7311
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7287
7312
|
headers?: Partial<{
|
|
7288
7313
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7289
7314
|
}> | undefined;
|
|
7290
|
-
} & {
|
|
7291
|
-
pathParameters: {
|
|
7292
|
-
serverId: string;
|
|
7293
|
-
};
|
|
7294
7315
|
} & {
|
|
7295
7316
|
headers: {
|
|
7296
7317
|
"x-access-token"?: string | undefined;
|
|
7297
7318
|
} & Partial<{
|
|
7298
7319
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7299
7320
|
}>;
|
|
7300
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
7301
|
-
|
|
7302
|
-
|
|
7303
|
-
|
|
7304
|
-
|
|
7305
|
-
|
|
7306
|
-
|
|
7307
|
-
|
|
7321
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.SignupApiToken[], 200, "application/json">>>;
|
|
7322
|
+
/** Store a new ApiToken. */
|
|
7323
|
+
createApiToken: (request: {
|
|
7324
|
+
data: {
|
|
7325
|
+
description: string;
|
|
7326
|
+
roles: ["api_read" | "api_write", ...("api_read" | "api_write")[]];
|
|
7327
|
+
expiresAt?: string | undefined;
|
|
7328
|
+
};
|
|
7329
|
+
headers?: {
|
|
7308
7330
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7309
7331
|
"x-access-token"?: string | undefined;
|
|
7310
|
-
};
|
|
7332
|
+
} | undefined;
|
|
7311
7333
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7334
|
+
data: {
|
|
7335
|
+
description: string;
|
|
7336
|
+
expiresAt?: string | undefined;
|
|
7337
|
+
roles: ["api_read" | "api_write", ...("api_read" | "api_write")[]];
|
|
7338
|
+
};
|
|
7339
|
+
} & {
|
|
7312
7340
|
headers?: Partial<{
|
|
7313
7341
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7314
7342
|
}> | undefined;
|
|
7315
7343
|
} & {
|
|
7316
7344
|
headers: {
|
|
7317
|
-
token: string;
|
|
7318
7345
|
"x-access-token"?: string | undefined;
|
|
7319
7346
|
} & Partial<{
|
|
7320
7347
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7321
7348
|
}>;
|
|
7322
7349
|
}, import("@mittwald/api-client-commons").Response<{
|
|
7323
|
-
|
|
7324
|
-
|
|
7325
|
-
mailAddress: string;
|
|
7326
|
-
membershipExpiresAt?: string | undefined;
|
|
7327
|
-
message?: string | undefined;
|
|
7328
|
-
projectDescription: string;
|
|
7329
|
-
projectId: string;
|
|
7330
|
-
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
7331
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7350
|
+
token: string;
|
|
7351
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7332
7352
|
[x: string]: unknown;
|
|
7333
|
-
},
|
|
7334
|
-
/**
|
|
7335
|
-
|
|
7336
|
-
|
|
7353
|
+
}, 400, "application/json">>>;
|
|
7354
|
+
/** Submit your user feedback. */
|
|
7355
|
+
createFeedback: (request: {
|
|
7356
|
+
data: {
|
|
7357
|
+
subject: string;
|
|
7358
|
+
message?: string | undefined;
|
|
7359
|
+
origin?: string | undefined;
|
|
7360
|
+
type?: "feedback" | "bug" | undefined;
|
|
7361
|
+
vote?: number | undefined;
|
|
7362
|
+
};
|
|
7337
7363
|
headers?: {
|
|
7338
7364
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7339
7365
|
"x-access-token"?: string | undefined;
|
|
7340
7366
|
} | undefined;
|
|
7341
7367
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7368
|
+
data: {
|
|
7369
|
+
message?: string | undefined;
|
|
7370
|
+
origin?: string | undefined;
|
|
7371
|
+
subject: string;
|
|
7372
|
+
type?: "feedback" | "bug" | undefined;
|
|
7373
|
+
vote?: number | undefined;
|
|
7374
|
+
};
|
|
7375
|
+
} & {
|
|
7342
7376
|
headers?: Partial<{
|
|
7343
7377
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7344
7378
|
}> | undefined;
|
|
7345
7379
|
} & {
|
|
7346
|
-
|
|
7347
|
-
|
|
7348
|
-
}
|
|
7380
|
+
headers: {
|
|
7381
|
+
"x-access-token"?: string | undefined;
|
|
7382
|
+
} & Partial<{
|
|
7383
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7384
|
+
}>;
|
|
7385
|
+
}, import("@mittwald/api-client-commons").Response<{}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7386
|
+
[x: string]: unknown;
|
|
7387
|
+
}, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7388
|
+
[x: string]: unknown;
|
|
7389
|
+
}, 404, "application/json">>>;
|
|
7390
|
+
/** Get your stored ssh-keys. */
|
|
7391
|
+
listSshKeys: (request?: {
|
|
7392
|
+
headers?: {
|
|
7393
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7394
|
+
"x-access-token"?: string | undefined;
|
|
7395
|
+
} | undefined;
|
|
7396
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7397
|
+
headers?: Partial<{
|
|
7398
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7399
|
+
}> | undefined;
|
|
7349
7400
|
} & {
|
|
7350
7401
|
headers: {
|
|
7351
7402
|
"x-access-token"?: string | undefined;
|
|
@@ -7353,20 +7404,39 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7353
7404
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7354
7405
|
}>;
|
|
7355
7406
|
}, import("@mittwald/api-client-commons").Response<{
|
|
7356
|
-
|
|
7357
|
-
|
|
7358
|
-
|
|
7359
|
-
|
|
7360
|
-
|
|
7361
|
-
|
|
7362
|
-
|
|
7363
|
-
|
|
7364
|
-
|
|
7407
|
+
sshKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SignupSshKey[] | undefined;
|
|
7408
|
+
}, 200, "application/json">>>;
|
|
7409
|
+
/** Store a new ssh-key. */
|
|
7410
|
+
createSshKey: (request: {
|
|
7411
|
+
data: {
|
|
7412
|
+
publicKey: string;
|
|
7413
|
+
expiresAt?: string | undefined;
|
|
7414
|
+
};
|
|
7415
|
+
headers?: {
|
|
7416
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7417
|
+
"x-access-token"?: string | undefined;
|
|
7418
|
+
} | undefined;
|
|
7419
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7420
|
+
data: {
|
|
7421
|
+
expiresAt?: string | undefined;
|
|
7422
|
+
publicKey: string;
|
|
7423
|
+
};
|
|
7424
|
+
} & {
|
|
7425
|
+
headers?: Partial<{
|
|
7426
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7427
|
+
}> | undefined;
|
|
7428
|
+
} & {
|
|
7429
|
+
headers: {
|
|
7430
|
+
"x-access-token"?: string | undefined;
|
|
7431
|
+
} & Partial<{
|
|
7432
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7433
|
+
}>;
|
|
7434
|
+
}, import("@mittwald/api-client-commons").Response<{}, 201, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7365
7435
|
[x: string]: unknown;
|
|
7366
|
-
},
|
|
7367
|
-
/** Get a
|
|
7368
|
-
|
|
7369
|
-
|
|
7436
|
+
}, 400, "application/json">>>;
|
|
7437
|
+
/** Get a specific ApiToken. */
|
|
7438
|
+
getApiToken: (request: {
|
|
7439
|
+
apiTokenId: string;
|
|
7370
7440
|
headers?: {
|
|
7371
7441
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7372
7442
|
"x-access-token"?: string | undefined;
|
|
@@ -7377,7 +7447,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7377
7447
|
}> | undefined;
|
|
7378
7448
|
} & {
|
|
7379
7449
|
pathParameters: {
|
|
7380
|
-
|
|
7450
|
+
apiTokenId: string;
|
|
7381
7451
|
};
|
|
7382
7452
|
} & {
|
|
7383
7453
|
headers: {
|
|
@@ -7386,41 +7456,33 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7386
7456
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7387
7457
|
}>;
|
|
7388
7458
|
}, import("@mittwald/api-client-commons").Response<{
|
|
7389
|
-
|
|
7459
|
+
apiTokenId: string;
|
|
7390
7460
|
createdAt: string;
|
|
7391
|
-
customerId: string;
|
|
7392
7461
|
description: string;
|
|
7393
|
-
|
|
7394
|
-
|
|
7395
|
-
imageRefId?: string | undefined;
|
|
7396
|
-
isReady: boolean;
|
|
7397
|
-
machineType: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectMachineType;
|
|
7398
|
-
readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectReadinessStatus;
|
|
7399
|
-
shortId: string;
|
|
7400
|
-
statisticsBaseDomain?: string | undefined;
|
|
7401
|
-
storage: string;
|
|
7462
|
+
expiresAt?: string | undefined;
|
|
7463
|
+
roles: ("api_read" | "api_write")[];
|
|
7402
7464
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7403
7465
|
[x: string]: unknown;
|
|
7404
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7405
|
-
[x: string]: unknown;
|
|
7406
7466
|
}, 404, "application/json">>>;
|
|
7407
|
-
/**
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
|
|
7411
|
-
|
|
7412
|
-
}
|
|
7467
|
+
/** Update an existing `ApiToken`. */
|
|
7468
|
+
editApiToken: (request: {
|
|
7469
|
+
data: {
|
|
7470
|
+
description: string;
|
|
7471
|
+
expiresAt?: string | undefined;
|
|
7472
|
+
};
|
|
7473
|
+
apiTokenId: string;
|
|
7413
7474
|
headers?: {
|
|
7414
7475
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7415
7476
|
"x-access-token"?: string | undefined;
|
|
7416
7477
|
} | undefined;
|
|
7417
7478
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7418
7479
|
data: {
|
|
7419
|
-
|
|
7480
|
+
description: string;
|
|
7481
|
+
expiresAt?: string | undefined;
|
|
7420
7482
|
};
|
|
7421
7483
|
} & {
|
|
7422
7484
|
pathParameters: {
|
|
7423
|
-
|
|
7485
|
+
apiTokenId: string;
|
|
7424
7486
|
};
|
|
7425
7487
|
} & {
|
|
7426
7488
|
headers?: Partial<{
|
|
@@ -7432,242 +7494,190 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7432
7494
|
} & Partial<{
|
|
7433
7495
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7434
7496
|
}>;
|
|
7435
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"
|
|
7436
|
-
|
|
7437
|
-
|
|
7438
|
-
|
|
7497
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7498
|
+
[x: string]: unknown;
|
|
7499
|
+
}, 400, "application/json">>>;
|
|
7500
|
+
/** Deletes an ApiToken. */
|
|
7501
|
+
deleteApiToken: (request: {
|
|
7502
|
+
apiTokenId: string;
|
|
7439
7503
|
headers?: {
|
|
7440
7504
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7441
7505
|
"x-access-token"?: string | undefined;
|
|
7442
7506
|
} | undefined;
|
|
7443
|
-
queryParameters?: {
|
|
7444
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7445
|
-
limit?: number | undefined;
|
|
7446
|
-
skip?: number | undefined;
|
|
7447
|
-
} | undefined;
|
|
7448
7507
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7449
7508
|
headers?: Partial<{
|
|
7450
7509
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7451
7510
|
}> | undefined;
|
|
7452
7511
|
} & {
|
|
7453
7512
|
pathParameters: {
|
|
7454
|
-
|
|
7513
|
+
apiTokenId: string;
|
|
7455
7514
|
};
|
|
7456
|
-
} & {
|
|
7457
|
-
queryParameters: {
|
|
7458
|
-
limit?: number | undefined;
|
|
7459
|
-
skip?: number | undefined;
|
|
7460
|
-
} & Partial<{
|
|
7461
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7462
|
-
}>;
|
|
7463
7515
|
} & {
|
|
7464
7516
|
headers: {
|
|
7465
7517
|
"x-access-token"?: string | undefined;
|
|
7466
7518
|
} & Partial<{
|
|
7467
7519
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7468
7520
|
}>;
|
|
7469
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
7521
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7470
7522
|
[x: string]: unknown;
|
|
7471
|
-
},
|
|
7472
|
-
/**
|
|
7473
|
-
|
|
7474
|
-
|
|
7523
|
+
}, 400, "application/json">>>;
|
|
7524
|
+
/** Get a specific stored ssh-key. */
|
|
7525
|
+
getSshKey: (request: {
|
|
7526
|
+
sshKeyId: string;
|
|
7475
7527
|
headers?: {
|
|
7476
7528
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7477
7529
|
"x-access-token"?: string | undefined;
|
|
7478
7530
|
} | undefined;
|
|
7479
|
-
queryParameters?: {
|
|
7480
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7481
|
-
limit?: number | undefined;
|
|
7482
|
-
skip?: number | undefined;
|
|
7483
|
-
} | undefined;
|
|
7484
7531
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7485
7532
|
headers?: Partial<{
|
|
7486
7533
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7487
7534
|
}> | undefined;
|
|
7488
7535
|
} & {
|
|
7489
7536
|
pathParameters: {
|
|
7490
|
-
|
|
7537
|
+
sshKeyId: string;
|
|
7491
7538
|
};
|
|
7492
|
-
} & {
|
|
7493
|
-
queryParameters: {
|
|
7494
|
-
limit?: number | undefined;
|
|
7495
|
-
skip?: number | undefined;
|
|
7496
|
-
} & Partial<{
|
|
7497
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7498
|
-
}>;
|
|
7499
7539
|
} & {
|
|
7500
7540
|
headers: {
|
|
7501
7541
|
"x-access-token"?: string | undefined;
|
|
7502
7542
|
} & Partial<{
|
|
7503
7543
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7504
7544
|
}>;
|
|
7505
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
7545
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7546
|
+
sshKey: import("./types.js").MittwaldAPIV2.Components.Schemas.SignupSshKey;
|
|
7547
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7506
7548
|
[x: string]: unknown;
|
|
7507
7549
|
}, 404, "application/json">>>;
|
|
7508
|
-
/**
|
|
7509
|
-
|
|
7550
|
+
/** Edit a stored ssh-key. */
|
|
7551
|
+
editSshKey: (request: {
|
|
7552
|
+
data: {
|
|
7553
|
+
comment: string;
|
|
7554
|
+
expiresAt?: string | undefined;
|
|
7555
|
+
};
|
|
7556
|
+
sshKeyId: string;
|
|
7510
7557
|
headers?: {
|
|
7511
7558
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7512
7559
|
"x-access-token"?: string | undefined;
|
|
7513
7560
|
} | undefined;
|
|
7514
|
-
|
|
7515
|
-
|
|
7516
|
-
|
|
7517
|
-
|
|
7518
|
-
}
|
|
7519
|
-
}
|
|
7561
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7562
|
+
data: {
|
|
7563
|
+
comment: string;
|
|
7564
|
+
expiresAt?: string | undefined;
|
|
7565
|
+
};
|
|
7566
|
+
} & {
|
|
7567
|
+
pathParameters: {
|
|
7568
|
+
sshKeyId: string;
|
|
7569
|
+
};
|
|
7570
|
+
} & {
|
|
7520
7571
|
headers?: Partial<{
|
|
7521
7572
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7522
7573
|
}> | undefined;
|
|
7523
|
-
} & {
|
|
7524
|
-
queryParameters: {
|
|
7525
|
-
limit?: number | undefined;
|
|
7526
|
-
skip?: number | undefined;
|
|
7527
|
-
} & Partial<{
|
|
7528
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7529
|
-
}>;
|
|
7530
7574
|
} & {
|
|
7531
7575
|
headers: {
|
|
7532
7576
|
"x-access-token"?: string | undefined;
|
|
7533
7577
|
} & Partial<{
|
|
7534
7578
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7535
7579
|
}>;
|
|
7536
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
7580
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7537
7581
|
[x: string]: unknown;
|
|
7538
|
-
},
|
|
7539
|
-
/**
|
|
7540
|
-
|
|
7582
|
+
}, 400, "application/json">>>;
|
|
7583
|
+
/** Remove a ssh-key. */
|
|
7584
|
+
deleteSshKey: (request: {
|
|
7585
|
+
sshKeyId: string;
|
|
7541
7586
|
headers?: {
|
|
7542
7587
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7543
7588
|
"x-access-token"?: string | undefined;
|
|
7544
7589
|
} | undefined;
|
|
7545
|
-
|
|
7546
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7547
|
-
limit?: number | undefined;
|
|
7548
|
-
skip?: number | undefined;
|
|
7549
|
-
} | undefined;
|
|
7550
|
-
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7590
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7551
7591
|
headers?: Partial<{
|
|
7552
7592
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7553
7593
|
}> | undefined;
|
|
7554
7594
|
} & {
|
|
7555
|
-
|
|
7556
|
-
|
|
7557
|
-
|
|
7558
|
-
} & Partial<{
|
|
7559
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7560
|
-
}>;
|
|
7595
|
+
pathParameters: {
|
|
7596
|
+
sshKeyId: string;
|
|
7597
|
+
};
|
|
7561
7598
|
} & {
|
|
7562
7599
|
headers: {
|
|
7563
7600
|
"x-access-token"?: string | undefined;
|
|
7564
7601
|
} & Partial<{
|
|
7565
7602
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7566
7603
|
}>;
|
|
7567
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
7568
|
-
|
|
7569
|
-
|
|
7570
|
-
|
|
7571
|
-
|
|
7604
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
7605
|
+
/** Delete your account and all your personal data. */
|
|
7606
|
+
deleteUser: (request: {
|
|
7607
|
+
data: {
|
|
7608
|
+
password: string;
|
|
7609
|
+
multiFactorCode?: string | undefined;
|
|
7610
|
+
};
|
|
7572
7611
|
headers?: {
|
|
7573
7612
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7574
7613
|
"x-access-token"?: string | undefined;
|
|
7575
7614
|
} | undefined;
|
|
7576
|
-
|
|
7577
|
-
|
|
7578
|
-
|
|
7579
|
-
|
|
7580
|
-
}
|
|
7581
|
-
}
|
|
7615
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7616
|
+
data: {
|
|
7617
|
+
multiFactorCode?: string | undefined;
|
|
7618
|
+
password: string;
|
|
7619
|
+
};
|
|
7620
|
+
} & {
|
|
7582
7621
|
headers?: Partial<{
|
|
7583
7622
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7584
7623
|
}> | undefined;
|
|
7585
|
-
} & {
|
|
7586
|
-
queryParameters: {
|
|
7587
|
-
customerId?: string | undefined;
|
|
7588
|
-
serverId?: string | undefined;
|
|
7589
|
-
} & Partial<{
|
|
7590
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7591
|
-
}>;
|
|
7592
7624
|
} & {
|
|
7593
7625
|
headers: {
|
|
7594
7626
|
"x-access-token"?: string | undefined;
|
|
7595
7627
|
} & Partial<{
|
|
7596
7628
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7597
7629
|
}>;
|
|
7598
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
7599
|
-
|
|
7600
|
-
|
|
7601
|
-
|
|
7602
|
-
id: string;
|
|
7603
|
-
};
|
|
7604
|
-
description: string;
|
|
7605
|
-
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
7606
|
-
enabled: boolean;
|
|
7607
|
-
id: string;
|
|
7608
|
-
imageRefId?: string | undefined;
|
|
7609
|
-
isReady: boolean;
|
|
7610
|
-
projectHostingId?: string | undefined;
|
|
7611
|
-
readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectReadinessStatus;
|
|
7612
|
-
serverId?: string | undefined;
|
|
7613
|
-
shortId: string;
|
|
7614
|
-
}[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7615
|
-
[x: string]: unknown;
|
|
7630
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7631
|
+
type: "ValidationError";
|
|
7632
|
+
message?: string | undefined;
|
|
7633
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7616
7634
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7617
7635
|
[x: string]: unknown;
|
|
7618
|
-
},
|
|
7619
|
-
|
|
7620
|
-
|
|
7636
|
+
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7637
|
+
[x: string]: unknown;
|
|
7638
|
+
}, 409, "application/json">>>;
|
|
7639
|
+
/** Get your account information. */
|
|
7640
|
+
getOwnAccount: (request?: {
|
|
7621
7641
|
headers?: {
|
|
7622
7642
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7623
7643
|
"x-access-token"?: string | undefined;
|
|
7624
7644
|
} | undefined;
|
|
7625
|
-
queryParameters?: {
|
|
7626
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7627
|
-
customerId?: string | undefined;
|
|
7628
|
-
limit?: number | undefined;
|
|
7629
|
-
page?: number | undefined;
|
|
7630
|
-
skip?: number | undefined;
|
|
7631
|
-
} | undefined;
|
|
7632
7645
|
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7633
7646
|
headers?: Partial<{
|
|
7634
7647
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7635
7648
|
}> | undefined;
|
|
7636
|
-
} & {
|
|
7637
|
-
queryParameters: {
|
|
7638
|
-
customerId?: string | undefined;
|
|
7639
|
-
limit?: number | undefined;
|
|
7640
|
-
page?: number | undefined;
|
|
7641
|
-
skip?: number | undefined;
|
|
7642
|
-
} & Partial<{
|
|
7643
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7644
|
-
}>;
|
|
7645
7649
|
} & {
|
|
7646
7650
|
headers: {
|
|
7647
7651
|
"x-access-token"?: string | undefined;
|
|
7648
7652
|
} & Partial<{
|
|
7649
7653
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7650
7654
|
}>;
|
|
7651
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
7652
|
-
|
|
7653
|
-
|
|
7654
|
-
|
|
7655
|
-
|
|
7656
|
-
inviteId: string;
|
|
7657
|
-
data?: {
|
|
7658
|
-
[x: string]: unknown;
|
|
7655
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7656
|
+
email?: string | undefined;
|
|
7657
|
+
mfaDetails?: {
|
|
7658
|
+
mfaConfirmed?: boolean | undefined;
|
|
7659
|
+
mfaInitialized?: boolean | undefined;
|
|
7659
7660
|
} | undefined;
|
|
7661
|
+
passwordUpdatedAt?: string | undefined;
|
|
7662
|
+
person?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsPerson | undefined;
|
|
7663
|
+
userId?: string | undefined;
|
|
7664
|
+
}, 200, "application/json">>>;
|
|
7665
|
+
/** Update your account information. */
|
|
7666
|
+
updateAccount: (request: {
|
|
7667
|
+
data: {
|
|
7668
|
+
person: {
|
|
7669
|
+
firstName: string;
|
|
7670
|
+
lastName: string;
|
|
7671
|
+
title?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation | undefined;
|
|
7672
|
+
};
|
|
7673
|
+
};
|
|
7660
7674
|
headers?: {
|
|
7661
7675
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7662
7676
|
"x-access-token"?: string | undefined;
|
|
7663
7677
|
} | undefined;
|
|
7664
7678
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7665
7679
|
data: {
|
|
7666
|
-
|
|
7667
|
-
};
|
|
7668
|
-
} & {
|
|
7669
|
-
pathParameters: {
|
|
7670
|
-
inviteId: string;
|
|
7680
|
+
person: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
7671
7681
|
};
|
|
7672
7682
|
} & {
|
|
7673
7683
|
headers?: Partial<{
|
|
@@ -7680,58 +7690,70 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7680
7690
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7681
7691
|
}>;
|
|
7682
7692
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7683
|
-
|
|
7684
|
-
|
|
7685
|
-
|
|
7686
|
-
|
|
7687
|
-
|
|
7688
|
-
|
|
7689
|
-
};
|
|
7690
|
-
projectId: string;
|
|
7693
|
+
type: "ValidationError";
|
|
7694
|
+
message?: string | undefined;
|
|
7695
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7696
|
+
}, 400, "application/json">>>;
|
|
7697
|
+
/** The timestamp of your latest password change. */
|
|
7698
|
+
getPasswordUpdatedAt: (request?: {
|
|
7691
7699
|
headers?: {
|
|
7692
7700
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7693
7701
|
"x-access-token"?: string | undefined;
|
|
7694
7702
|
} | undefined;
|
|
7695
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7696
|
-
|
|
7697
|
-
|
|
7698
|
-
};
|
|
7699
|
-
} & {
|
|
7700
|
-
pathParameters: {
|
|
7701
|
-
projectId: string;
|
|
7702
|
-
};
|
|
7703
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7704
|
+
headers?: Partial<{
|
|
7705
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7706
|
+
}> | undefined;
|
|
7703
7707
|
} & {
|
|
7708
|
+
headers: {
|
|
7709
|
+
"x-access-token"?: string | undefined;
|
|
7710
|
+
} & Partial<{
|
|
7711
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7712
|
+
}>;
|
|
7713
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7714
|
+
passwordUpdatedAt: string;
|
|
7715
|
+
}, 200, "application/json">>>;
|
|
7716
|
+
/** Get personalized settings. */
|
|
7717
|
+
getPersonalizedSettings: (request: {
|
|
7718
|
+
userId: string;
|
|
7719
|
+
headers?: {
|
|
7720
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7721
|
+
"x-access-token"?: string | undefined;
|
|
7722
|
+
} | undefined;
|
|
7723
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7704
7724
|
headers?: Partial<{
|
|
7705
7725
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7706
7726
|
}> | undefined;
|
|
7727
|
+
} & {
|
|
7728
|
+
pathParameters: {
|
|
7729
|
+
userId: string;
|
|
7730
|
+
};
|
|
7707
7731
|
} & {
|
|
7708
7732
|
headers: {
|
|
7709
7733
|
"x-access-token"?: string | undefined;
|
|
7710
7734
|
} & Partial<{
|
|
7711
7735
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7712
7736
|
}>;
|
|
7713
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
7714
|
-
|
|
7715
|
-
},
|
|
7716
|
-
|
|
7717
|
-
|
|
7718
|
-
/** Update a Servers's description. */
|
|
7719
|
-
updateServerDescription: (request: {
|
|
7737
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7738
|
+
settingsString?: string | undefined;
|
|
7739
|
+
}, 200, "application/json">>>;
|
|
7740
|
+
/** Update personalized GUI settings. */
|
|
7741
|
+
updatePersonalizedSettings: (request: {
|
|
7720
7742
|
data: {
|
|
7721
|
-
|
|
7743
|
+
settingsString: string;
|
|
7722
7744
|
};
|
|
7723
|
-
|
|
7745
|
+
userId: string;
|
|
7724
7746
|
headers?: {
|
|
7725
7747
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7726
7748
|
"x-access-token"?: string | undefined;
|
|
7727
7749
|
} | undefined;
|
|
7728
7750
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7729
7751
|
data: {
|
|
7730
|
-
|
|
7752
|
+
settingsString: string;
|
|
7731
7753
|
};
|
|
7732
7754
|
} & {
|
|
7733
7755
|
pathParameters: {
|
|
7734
|
-
|
|
7756
|
+
userId: string;
|
|
7735
7757
|
};
|
|
7736
7758
|
} & {
|
|
7737
7759
|
headers?: Partial<{
|
|
@@ -7743,49 +7765,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7743
7765
|
} & Partial<{
|
|
7744
7766
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7745
7767
|
}>;
|
|
7746
|
-
}, import("@mittwald/api-client-commons").Response<{},
|
|
7747
|
-
[x: string]: unknown;
|
|
7748
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7768
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7749
7769
|
[x: string]: unknown;
|
|
7750
|
-
},
|
|
7751
|
-
|
|
7752
|
-
|
|
7753
|
-
|
|
7754
|
-
/** List directories belonging to a Project. */
|
|
7755
|
-
getDirectories: (request: {
|
|
7756
|
-
projectId: string;
|
|
7770
|
+
}, 400, "application/json">>>;
|
|
7771
|
+
/** Get a specific session. */
|
|
7772
|
+
getSession: (request: {
|
|
7773
|
+
tokenId: string;
|
|
7757
7774
|
headers?: {
|
|
7758
7775
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7759
7776
|
"x-access-token"?: string | undefined;
|
|
7760
7777
|
} | undefined;
|
|
7761
|
-
queryParameters?: {
|
|
7762
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7763
|
-
directory?: string | undefined;
|
|
7764
|
-
name?: string | undefined;
|
|
7765
|
-
max_depth?: number | undefined;
|
|
7766
|
-
type?: string[] | undefined;
|
|
7767
|
-
executable?: boolean | undefined;
|
|
7768
|
-
hidden?: boolean | undefined;
|
|
7769
|
-
} | undefined;
|
|
7770
7778
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7771
7779
|
headers?: Partial<{
|
|
7772
7780
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7773
7781
|
}> | undefined;
|
|
7774
7782
|
} & {
|
|
7775
7783
|
pathParameters: {
|
|
7776
|
-
|
|
7784
|
+
tokenId: string;
|
|
7777
7785
|
};
|
|
7778
|
-
} & {
|
|
7779
|
-
queryParameters: {
|
|
7780
|
-
directory?: string | undefined;
|
|
7781
|
-
name?: string | undefined;
|
|
7782
|
-
max_depth?: number | undefined;
|
|
7783
|
-
type?: string[] | undefined;
|
|
7784
|
-
executable?: boolean | undefined;
|
|
7785
|
-
hidden?: boolean | undefined;
|
|
7786
|
-
} & Partial<{
|
|
7787
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7788
|
-
}>;
|
|
7789
7786
|
} & {
|
|
7790
7787
|
headers: {
|
|
7791
7788
|
"x-access-token"?: string | undefined;
|
|
@@ -7793,159 +7790,121 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7793
7790
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7794
7791
|
}>;
|
|
7795
7792
|
}, import("@mittwald/api-client-commons").Response<{
|
|
7796
|
-
|
|
7797
|
-
|
|
7798
|
-
|
|
7799
|
-
|
|
7800
|
-
|
|
7801
|
-
items?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectFilesystemDirectoryListing[] | undefined;
|
|
7802
|
-
name: string;
|
|
7803
|
-
size: number;
|
|
7804
|
-
target?: string | undefined;
|
|
7793
|
+
created: string;
|
|
7794
|
+
device: import("./types.js").MittwaldAPIV2.Components.Schemas.SignupDeviceInfo;
|
|
7795
|
+
lastAccess?: string | undefined;
|
|
7796
|
+
location?: import("./types.js").MittwaldAPIV2.Components.Schemas.SignupLocation | undefined;
|
|
7797
|
+
tokenId: string;
|
|
7805
7798
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7806
7799
|
[x: string]: unknown;
|
|
7807
|
-
},
|
|
7808
|
-
|
|
7809
|
-
|
|
7810
|
-
|
|
7811
|
-
}, 503, "application/json">>>;
|
|
7812
|
-
/** Get a Project directory filesystem usage. */
|
|
7813
|
-
getDiskUsage: (request: {
|
|
7814
|
-
projectId: string;
|
|
7800
|
+
}, 404, "application/json">>>;
|
|
7801
|
+
/** Terminate a specific Session. */
|
|
7802
|
+
terminateSession: (request: {
|
|
7803
|
+
tokenId: string;
|
|
7815
7804
|
headers?: {
|
|
7816
7805
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7817
7806
|
"x-access-token"?: string | undefined;
|
|
7818
7807
|
} | undefined;
|
|
7819
|
-
queryParameters?: {
|
|
7820
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7821
|
-
directory?: string | undefined;
|
|
7822
|
-
} | undefined;
|
|
7823
7808
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7824
7809
|
headers?: Partial<{
|
|
7825
7810
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7826
7811
|
}> | undefined;
|
|
7827
7812
|
} & {
|
|
7828
7813
|
pathParameters: {
|
|
7829
|
-
|
|
7814
|
+
tokenId: string;
|
|
7830
7815
|
};
|
|
7831
|
-
} & {
|
|
7832
|
-
queryParameters: {
|
|
7833
|
-
directory?: string | undefined;
|
|
7834
|
-
} & Partial<{
|
|
7835
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7836
|
-
}>;
|
|
7837
7816
|
} & {
|
|
7838
7817
|
headers: {
|
|
7839
7818
|
"x-access-token"?: string | undefined;
|
|
7840
7819
|
} & Partial<{
|
|
7841
7820
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7842
7821
|
}>;
|
|
7843
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
7844
|
-
path?: string | undefined;
|
|
7845
|
-
totalBytes?: number | undefined;
|
|
7846
|
-
usedBytes?: number | undefined;
|
|
7847
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7848
|
-
[x: string]: unknown;
|
|
7849
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7850
|
-
[x: string]: unknown;
|
|
7851
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7822
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7852
7823
|
[x: string]: unknown;
|
|
7853
|
-
},
|
|
7854
|
-
/** Get
|
|
7855
|
-
|
|
7856
|
-
|
|
7824
|
+
}, 404, "application/json">>>;
|
|
7825
|
+
/** Get profile information for a user. */
|
|
7826
|
+
getUser: (request: {
|
|
7827
|
+
userId: string;
|
|
7857
7828
|
headers?: {
|
|
7858
7829
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7859
7830
|
"x-access-token"?: string | undefined;
|
|
7860
7831
|
} | undefined;
|
|
7861
|
-
queryParameters?: {
|
|
7862
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7863
|
-
file?: string | undefined;
|
|
7864
|
-
inline?: boolean | undefined;
|
|
7865
|
-
} | undefined;
|
|
7866
7832
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7867
7833
|
headers?: Partial<{
|
|
7868
7834
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7869
7835
|
}> | undefined;
|
|
7870
7836
|
} & {
|
|
7871
7837
|
pathParameters: {
|
|
7872
|
-
|
|
7838
|
+
userId: string;
|
|
7873
7839
|
};
|
|
7874
|
-
} & {
|
|
7875
|
-
queryParameters: {
|
|
7876
|
-
file?: string | undefined;
|
|
7877
|
-
inline?: boolean | undefined;
|
|
7878
|
-
} & Partial<{
|
|
7879
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7880
|
-
}>;
|
|
7881
7840
|
} & {
|
|
7882
7841
|
headers: {
|
|
7883
7842
|
"x-access-token"?: string | undefined;
|
|
7884
7843
|
} & Partial<{
|
|
7885
7844
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7886
7845
|
}>;
|
|
7887
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
7846
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7847
|
+
avatarRef?: string | undefined;
|
|
7848
|
+
email?: string | undefined;
|
|
7849
|
+
employeeInformation?: {
|
|
7850
|
+
department: string;
|
|
7851
|
+
} | undefined;
|
|
7852
|
+
person: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
7853
|
+
phoneNumber?: string | undefined;
|
|
7854
|
+
registeredAt?: string | undefined;
|
|
7855
|
+
userId: string;
|
|
7856
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7888
7857
|
[x: string]: unknown;
|
|
7889
7858
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7890
7859
|
[x: string]: unknown;
|
|
7891
7860
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7892
7861
|
[x: string]: unknown;
|
|
7893
|
-
},
|
|
7894
|
-
/**
|
|
7895
|
-
|
|
7896
|
-
|
|
7862
|
+
}, 412, "application/json">>>;
|
|
7863
|
+
/** Change personal information. */
|
|
7864
|
+
updatePersonalInformation: (request: {
|
|
7865
|
+
data: {
|
|
7866
|
+
person: {
|
|
7867
|
+
firstName: string;
|
|
7868
|
+
lastName: string;
|
|
7869
|
+
title?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation | undefined;
|
|
7870
|
+
};
|
|
7871
|
+
};
|
|
7872
|
+
userId: string;
|
|
7897
7873
|
headers?: {
|
|
7898
7874
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7899
7875
|
"x-access-token"?: string | undefined;
|
|
7900
7876
|
} | undefined;
|
|
7901
7877
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7902
|
-
|
|
7903
|
-
|
|
7904
|
-
}
|
|
7878
|
+
data: {
|
|
7879
|
+
person: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
7880
|
+
};
|
|
7905
7881
|
} & {
|
|
7906
7882
|
pathParameters: {
|
|
7907
|
-
|
|
7883
|
+
userId: string;
|
|
7908
7884
|
};
|
|
7885
|
+
} & {
|
|
7886
|
+
headers?: Partial<{
|
|
7887
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7888
|
+
}> | undefined;
|
|
7909
7889
|
} & {
|
|
7910
7890
|
headers: {
|
|
7911
7891
|
"x-access-token"?: string | undefined;
|
|
7912
7892
|
} & Partial<{
|
|
7913
7893
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7914
7894
|
}>;
|
|
7915
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
7916
|
-
jwt: string;
|
|
7917
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7918
|
-
[x: string]: unknown;
|
|
7919
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7920
|
-
[x: string]: unknown;
|
|
7921
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7895
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7922
7896
|
[x: string]: unknown;
|
|
7923
|
-
},
|
|
7924
|
-
/**
|
|
7925
|
-
|
|
7926
|
-
projectId: string;
|
|
7897
|
+
}, 400, "application/json">>>;
|
|
7898
|
+
/** Initialize Multi Factor Authentication. If successful, it needs to be confirmed, before usage of mfa. */
|
|
7899
|
+
initMfa: (request?: {
|
|
7927
7900
|
headers?: {
|
|
7928
7901
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7929
7902
|
"x-access-token"?: string | undefined;
|
|
7930
7903
|
} | undefined;
|
|
7931
|
-
|
|
7932
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7933
|
-
file?: string | undefined;
|
|
7934
|
-
} | undefined;
|
|
7935
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7904
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7936
7905
|
headers?: Partial<{
|
|
7937
7906
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7938
7907
|
}> | undefined;
|
|
7939
|
-
} & {
|
|
7940
|
-
pathParameters: {
|
|
7941
|
-
projectId: string;
|
|
7942
|
-
};
|
|
7943
|
-
} & {
|
|
7944
|
-
queryParameters: {
|
|
7945
|
-
file?: string | undefined;
|
|
7946
|
-
} & Partial<{
|
|
7947
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7948
|
-
}>;
|
|
7949
7908
|
} & {
|
|
7950
7909
|
headers: {
|
|
7951
7910
|
"x-access-token"?: string | undefined;
|
|
@@ -7953,36 +7912,44 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7953
7912
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7954
7913
|
}>;
|
|
7955
7914
|
}, import("@mittwald/api-client-commons").Response<{
|
|
7956
|
-
|
|
7957
|
-
|
|
7958
|
-
|
|
7959
|
-
|
|
7960
|
-
|
|
7961
|
-
|
|
7962
|
-
|
|
7963
|
-
|
|
7964
|
-
|
|
7965
|
-
|
|
7966
|
-
|
|
7967
|
-
|
|
7968
|
-
|
|
7969
|
-
|
|
7970
|
-
|
|
7971
|
-
}
|
|
7972
|
-
|
|
7973
|
-
|
|
7974
|
-
|
|
7975
|
-
|
|
7976
|
-
|
|
7977
|
-
|
|
7915
|
+
type: "ValidationError";
|
|
7916
|
+
message?: string | undefined;
|
|
7917
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7918
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7919
|
+
barcode: string;
|
|
7920
|
+
url: string;
|
|
7921
|
+
}, 200, "application/json">>>;
|
|
7922
|
+
/** Initialize password reset process. */
|
|
7923
|
+
initPasswordReset: (request: {
|
|
7924
|
+
data: {
|
|
7925
|
+
email: string;
|
|
7926
|
+
};
|
|
7927
|
+
headers?: {
|
|
7928
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7929
|
+
} | undefined;
|
|
7930
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7931
|
+
data: {
|
|
7932
|
+
email: string;
|
|
7933
|
+
};
|
|
7934
|
+
} & {
|
|
7935
|
+
headers?: Partial<{
|
|
7936
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7937
|
+
}> | undefined;
|
|
7938
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7939
|
+
type: "ValidationError";
|
|
7940
|
+
message?: string | undefined;
|
|
7941
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
7942
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 201, "empty">>>;
|
|
7943
|
+
/** Submitted feedback of the given user. */
|
|
7944
|
+
listFeedback: (request: {
|
|
7945
|
+
userId: string;
|
|
7978
7946
|
headers?: {
|
|
7979
7947
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7980
7948
|
"x-access-token"?: string | undefined;
|
|
7981
7949
|
} | undefined;
|
|
7982
7950
|
queryParameters?: {
|
|
7983
7951
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7984
|
-
|
|
7985
|
-
skip?: number | undefined;
|
|
7952
|
+
subject?: string | undefined;
|
|
7986
7953
|
} | undefined;
|
|
7987
7954
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7988
7955
|
headers?: Partial<{
|
|
@@ -7990,12 +7957,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7990
7957
|
}> | undefined;
|
|
7991
7958
|
} & {
|
|
7992
7959
|
pathParameters: {
|
|
7993
|
-
|
|
7960
|
+
userId: string;
|
|
7994
7961
|
};
|
|
7995
7962
|
} & {
|
|
7996
7963
|
queryParameters: {
|
|
7997
|
-
|
|
7998
|
-
skip?: number | undefined;
|
|
7964
|
+
subject?: string | undefined;
|
|
7999
7965
|
} & Partial<{
|
|
8000
7966
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8001
7967
|
}>;
|
|
@@ -8005,40 +7971,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8005
7971
|
} & Partial<{
|
|
8006
7972
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8007
7973
|
}>;
|
|
8008
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.
|
|
8009
|
-
|
|
8010
|
-
|
|
8011
|
-
/** Create an SFTPUser for a Project. */
|
|
8012
|
-
sftpUserCreateSftpUser: (request: {
|
|
8013
|
-
data: {
|
|
8014
|
-
authentication: {
|
|
8015
|
-
password: string;
|
|
8016
|
-
} | {
|
|
8017
|
-
publicKeys: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[];
|
|
8018
|
-
};
|
|
8019
|
-
description: string;
|
|
8020
|
-
directories: [string, ...string[]];
|
|
8021
|
-
accessLevel?: "read" | "full" | undefined;
|
|
8022
|
-
expiresAt?: string | undefined;
|
|
8023
|
-
};
|
|
8024
|
-
projectId: string;
|
|
7974
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.UserUserFeedback[], 200, "application/json">>>;
|
|
7975
|
+
/** List all sessions. */
|
|
7976
|
+
listSessions: (request?: {
|
|
8025
7977
|
headers?: {
|
|
8026
7978
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8027
7979
|
"x-access-token"?: string | undefined;
|
|
8028
7980
|
} | undefined;
|
|
8029
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8030
|
-
data: {
|
|
8031
|
-
accessLevel?: "read" | "full" | undefined;
|
|
8032
|
-
authentication: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserAuthentication;
|
|
8033
|
-
description: string;
|
|
8034
|
-
directories: [string, ...string[]];
|
|
8035
|
-
expiresAt?: string | undefined;
|
|
8036
|
-
};
|
|
8037
|
-
} & {
|
|
8038
|
-
pathParameters: {
|
|
8039
|
-
projectId: string;
|
|
8040
|
-
};
|
|
8041
|
-
} & {
|
|
7981
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8042
7982
|
headers?: Partial<{
|
|
8043
7983
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8044
7984
|
}> | undefined;
|
|
@@ -8048,296 +7988,211 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8048
7988
|
} & Partial<{
|
|
8049
7989
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8050
7990
|
}>;
|
|
8051
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
8052
|
-
|
|
8053
|
-
|
|
8054
|
-
authUpdatedAt: string;
|
|
8055
|
-
createdAt: string;
|
|
8056
|
-
description: string;
|
|
8057
|
-
directories?: string[] | undefined;
|
|
8058
|
-
expiresAt?: string | undefined;
|
|
8059
|
-
hasPassword: boolean;
|
|
8060
|
-
id: string;
|
|
8061
|
-
projectId: string;
|
|
8062
|
-
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
8063
|
-
updatedAt?: string | undefined;
|
|
8064
|
-
userName: string;
|
|
8065
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8066
|
-
[x: string]: unknown;
|
|
8067
|
-
}, 400, "application/json">>>;
|
|
8068
|
-
/** Get an SFTPUser. */
|
|
8069
|
-
sftpUserGetSftpUser: (request: {
|
|
8070
|
-
sftpUserId: string;
|
|
7991
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.SignupUserSession[], 200, "application/json">>>;
|
|
7992
|
+
/** Terminate all sessions, except the current session. */
|
|
7993
|
+
terminateAllSessions: (request?: {
|
|
8071
7994
|
headers?: {
|
|
8072
7995
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8073
7996
|
"x-access-token"?: string | undefined;
|
|
8074
7997
|
} | undefined;
|
|
8075
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7998
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8076
7999
|
headers?: Partial<{
|
|
8077
8000
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8078
8001
|
}> | undefined;
|
|
8079
|
-
} & {
|
|
8080
|
-
pathParameters: {
|
|
8081
|
-
sftpUserId: string;
|
|
8082
|
-
};
|
|
8083
8002
|
} & {
|
|
8084
8003
|
headers: {
|
|
8085
8004
|
"x-access-token"?: string | undefined;
|
|
8086
8005
|
} & Partial<{
|
|
8087
8006
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8088
8007
|
}>;
|
|
8089
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8090
|
-
|
|
8091
|
-
|
|
8092
|
-
authUpdatedAt: string;
|
|
8093
|
-
createdAt: string;
|
|
8094
|
-
description: string;
|
|
8095
|
-
directories?: string[] | undefined;
|
|
8096
|
-
expiresAt?: string | undefined;
|
|
8097
|
-
hasPassword: boolean;
|
|
8098
|
-
id: string;
|
|
8099
|
-
projectId: string;
|
|
8100
|
-
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
8101
|
-
updatedAt?: string | undefined;
|
|
8102
|
-
userName: string;
|
|
8103
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8104
|
-
[x: string]: unknown;
|
|
8105
|
-
}, 404, "application/json">>>;
|
|
8106
|
-
/** Delete an SFTPUser. */
|
|
8107
|
-
sftpUserDeleteSftpUser: (request: {
|
|
8108
|
-
sftpUserId: string;
|
|
8008
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
8009
|
+
/** Terminate session and invalidate access token. */
|
|
8010
|
+
logout: (request?: {
|
|
8109
8011
|
headers?: {
|
|
8110
8012
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8111
8013
|
"x-access-token"?: string | undefined;
|
|
8112
8014
|
} | undefined;
|
|
8113
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8015
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8114
8016
|
headers?: Partial<{
|
|
8115
8017
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8116
8018
|
}> | undefined;
|
|
8117
|
-
} & {
|
|
8118
|
-
pathParameters: {
|
|
8119
|
-
sftpUserId: string;
|
|
8120
|
-
};
|
|
8121
8019
|
} & {
|
|
8122
8020
|
headers: {
|
|
8123
8021
|
"x-access-token"?: string | undefined;
|
|
8124
8022
|
} & Partial<{
|
|
8125
8023
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8126
8024
|
}>;
|
|
8127
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"
|
|
8128
|
-
|
|
8129
|
-
|
|
8130
|
-
|
|
8131
|
-
|
|
8132
|
-
|
|
8133
|
-
|
|
8134
|
-
|
|
8135
|
-
|
|
8136
|
-
|
|
8137
|
-
|
|
8138
|
-
|
|
8139
|
-
|
|
8140
|
-
|
|
8141
|
-
|
|
8142
|
-
"x-access-token"?: string | undefined;
|
|
8143
|
-
} | undefined;
|
|
8144
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8145
|
-
data: {
|
|
8146
|
-
accessLevel?: "read" | "full" | undefined;
|
|
8147
|
-
active?: boolean | undefined;
|
|
8148
|
-
description?: string | undefined;
|
|
8149
|
-
directories?: [string, ...string[]] | undefined;
|
|
8150
|
-
expiresAt?: string | undefined;
|
|
8151
|
-
password?: string | undefined;
|
|
8152
|
-
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
8025
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
8026
|
+
type: "ValidationError";
|
|
8027
|
+
message?: string | undefined;
|
|
8028
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
8029
|
+
}, 400, "application/json">>>;
|
|
8030
|
+
/** Register with email and password. */
|
|
8031
|
+
register: (request: {
|
|
8032
|
+
data: {
|
|
8033
|
+
email: string;
|
|
8034
|
+
password: string;
|
|
8035
|
+
person: {
|
|
8036
|
+
firstName: string;
|
|
8037
|
+
lastName: string;
|
|
8038
|
+
title?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation | undefined;
|
|
8039
|
+
};
|
|
8153
8040
|
};
|
|
8154
|
-
|
|
8155
|
-
|
|
8156
|
-
|
|
8041
|
+
headers?: {
|
|
8042
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8043
|
+
} | undefined;
|
|
8044
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8045
|
+
data: {
|
|
8046
|
+
email: string;
|
|
8047
|
+
password: string;
|
|
8048
|
+
person: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
8157
8049
|
};
|
|
8158
8050
|
} & {
|
|
8159
8051
|
headers?: Partial<{
|
|
8160
8052
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8161
8053
|
}> | undefined;
|
|
8162
|
-
}
|
|
8163
|
-
|
|
8164
|
-
|
|
8165
|
-
|
|
8166
|
-
|
|
8167
|
-
|
|
8168
|
-
},
|
|
8169
|
-
|
|
8170
|
-
|
|
8171
|
-
|
|
8172
|
-
sshUserListSshUsers: (request: {
|
|
8173
|
-
projectId: string;
|
|
8054
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8055
|
+
type: "ValidationError";
|
|
8056
|
+
message?: string | undefined;
|
|
8057
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
8058
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8059
|
+
userId: string;
|
|
8060
|
+
}, 201, "application/json">>>;
|
|
8061
|
+
/** Request a new avatar image upload. */
|
|
8062
|
+
requestAvatarUpload: (request: {
|
|
8063
|
+
userId: string;
|
|
8174
8064
|
headers?: {
|
|
8175
8065
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8176
8066
|
"x-access-token"?: string | undefined;
|
|
8177
8067
|
} | undefined;
|
|
8178
|
-
queryParameters?: {
|
|
8179
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8180
|
-
limit?: number | undefined;
|
|
8181
|
-
skip?: number | undefined;
|
|
8182
|
-
} | undefined;
|
|
8183
8068
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8184
8069
|
headers?: Partial<{
|
|
8185
8070
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8186
8071
|
}> | undefined;
|
|
8187
8072
|
} & {
|
|
8188
8073
|
pathParameters: {
|
|
8189
|
-
|
|
8074
|
+
userId: string;
|
|
8190
8075
|
};
|
|
8191
|
-
} & {
|
|
8192
|
-
queryParameters: {
|
|
8193
|
-
limit?: number | undefined;
|
|
8194
|
-
skip?: number | undefined;
|
|
8195
|
-
} & Partial<{
|
|
8196
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8197
|
-
}>;
|
|
8198
8076
|
} & {
|
|
8199
8077
|
headers: {
|
|
8200
8078
|
"x-access-token"?: string | undefined;
|
|
8201
8079
|
} & Partial<{
|
|
8202
8080
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8203
8081
|
}>;
|
|
8204
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
8205
|
-
|
|
8206
|
-
|
|
8207
|
-
|
|
8208
|
-
|
|
8209
|
-
|
|
8210
|
-
|
|
8211
|
-
|
|
8212
|
-
|
|
8213
|
-
|
|
8214
|
-
|
|
8215
|
-
|
|
8216
|
-
|
|
8082
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8083
|
+
refId: string;
|
|
8084
|
+
rules: {
|
|
8085
|
+
maxSizeInKB: number;
|
|
8086
|
+
mimeTypes: string[];
|
|
8087
|
+
properties?: {
|
|
8088
|
+
imageDimensions?: {
|
|
8089
|
+
max?: {
|
|
8090
|
+
height?: number | undefined;
|
|
8091
|
+
width?: number | undefined;
|
|
8092
|
+
} | undefined;
|
|
8093
|
+
min?: {
|
|
8094
|
+
height?: number | undefined;
|
|
8095
|
+
width?: number | undefined;
|
|
8096
|
+
} | undefined;
|
|
8097
|
+
} | undefined;
|
|
8098
|
+
} | undefined;
|
|
8217
8099
|
};
|
|
8218
|
-
|
|
8100
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8101
|
+
[x: string]: unknown;
|
|
8102
|
+
}, 400, "application/json">>>;
|
|
8103
|
+
/** Remove Avatar. */
|
|
8104
|
+
removeAvatar: (request: {
|
|
8105
|
+
userId: string;
|
|
8219
8106
|
headers?: {
|
|
8220
8107
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8221
8108
|
"x-access-token"?: string | undefined;
|
|
8222
8109
|
} | undefined;
|
|
8223
8110
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8224
|
-
data: {
|
|
8225
|
-
authentication: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserAuthentication;
|
|
8226
|
-
description: string;
|
|
8227
|
-
expiresAt?: string | undefined;
|
|
8228
|
-
};
|
|
8229
|
-
} & {
|
|
8230
|
-
pathParameters: {
|
|
8231
|
-
projectId: string;
|
|
8232
|
-
};
|
|
8233
|
-
} & {
|
|
8234
8111
|
headers?: Partial<{
|
|
8235
8112
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8236
8113
|
}> | undefined;
|
|
8114
|
+
} & {
|
|
8115
|
+
pathParameters: {
|
|
8116
|
+
userId: string;
|
|
8117
|
+
};
|
|
8237
8118
|
} & {
|
|
8238
8119
|
headers: {
|
|
8239
8120
|
"x-access-token"?: string | undefined;
|
|
8240
8121
|
} & Partial<{
|
|
8241
8122
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8242
8123
|
}>;
|
|
8243
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8244
|
-
active?: boolean | undefined;
|
|
8245
|
-
authUpdatedAt: string;
|
|
8246
|
-
createdAt: string;
|
|
8247
|
-
description: string;
|
|
8248
|
-
expiresAt?: string | undefined;
|
|
8249
|
-
hasPassword: boolean;
|
|
8250
|
-
id: string;
|
|
8251
|
-
projectId: string;
|
|
8252
|
-
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
8253
|
-
updatedAt?: string | undefined;
|
|
8254
|
-
userName: string;
|
|
8255
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8124
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
8256
8125
|
[x: string]: unknown;
|
|
8257
8126
|
}, 400, "application/json">>>;
|
|
8258
|
-
/**
|
|
8259
|
-
|
|
8260
|
-
|
|
8127
|
+
/** Resend the Email-Address verification email. */
|
|
8128
|
+
resendVerificationEmail: (request: {
|
|
8129
|
+
data: {
|
|
8130
|
+
email: string;
|
|
8131
|
+
userId: string;
|
|
8132
|
+
};
|
|
8261
8133
|
headers?: {
|
|
8262
8134
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8263
|
-
"x-access-token"?: string | undefined;
|
|
8264
8135
|
} | undefined;
|
|
8265
8136
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8266
|
-
|
|
8267
|
-
|
|
8268
|
-
|
|
8269
|
-
} & {
|
|
8270
|
-
pathParameters: {
|
|
8271
|
-
sshUserId: string;
|
|
8137
|
+
data: {
|
|
8138
|
+
email: string;
|
|
8139
|
+
userId: string;
|
|
8272
8140
|
};
|
|
8273
8141
|
} & {
|
|
8274
|
-
headers
|
|
8275
|
-
"x-access-token"?: string | undefined;
|
|
8276
|
-
} & Partial<{
|
|
8142
|
+
headers?: Partial<{
|
|
8277
8143
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8278
|
-
}
|
|
8279
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8280
|
-
|
|
8281
|
-
|
|
8282
|
-
|
|
8283
|
-
|
|
8284
|
-
expiresAt?: string | undefined;
|
|
8285
|
-
hasPassword: boolean;
|
|
8286
|
-
id: string;
|
|
8287
|
-
projectId: string;
|
|
8288
|
-
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
8289
|
-
updatedAt?: string | undefined;
|
|
8290
|
-
userName: string;
|
|
8291
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8144
|
+
}> | undefined;
|
|
8145
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
8146
|
+
type: "ValidationError";
|
|
8147
|
+
message?: string | undefined;
|
|
8148
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
8149
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8292
8150
|
[x: string]: unknown;
|
|
8293
|
-
},
|
|
8294
|
-
/**
|
|
8295
|
-
|
|
8296
|
-
sshUserId: string;
|
|
8151
|
+
}, 403, "application/json">>>;
|
|
8152
|
+
/** Request a support code. */
|
|
8153
|
+
supportCodeRequest: (request?: {
|
|
8297
8154
|
headers?: {
|
|
8298
8155
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8299
8156
|
"x-access-token"?: string | undefined;
|
|
8300
8157
|
} | undefined;
|
|
8301
|
-
|
|
8158
|
+
queryParameters?: {
|
|
8159
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8160
|
+
forceRecreate?: boolean | undefined;
|
|
8161
|
+
} | undefined;
|
|
8162
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8302
8163
|
headers?: Partial<{
|
|
8303
8164
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8304
8165
|
}> | undefined;
|
|
8305
8166
|
} & {
|
|
8306
|
-
|
|
8307
|
-
|
|
8308
|
-
}
|
|
8167
|
+
queryParameters: {
|
|
8168
|
+
forceRecreate?: boolean | undefined;
|
|
8169
|
+
} & Partial<{
|
|
8170
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8171
|
+
}>;
|
|
8309
8172
|
} & {
|
|
8310
8173
|
headers: {
|
|
8311
8174
|
"x-access-token"?: string | undefined;
|
|
8312
8175
|
} & Partial<{
|
|
8313
8176
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8314
8177
|
}>;
|
|
8315
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8316
|
-
|
|
8317
|
-
|
|
8318
|
-
|
|
8319
|
-
|
|
8320
|
-
|
|
8321
|
-
|
|
8322
|
-
|
|
8323
|
-
|
|
8324
|
-
|
|
8325
|
-
} | undefined;
|
|
8178
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8179
|
+
expiresAt?: string | undefined;
|
|
8180
|
+
supportCode?: string | undefined;
|
|
8181
|
+
}, 200, "application/json">>>;
|
|
8182
|
+
/** Verify an added Email-Address. */
|
|
8183
|
+
verifyEmail: (request: {
|
|
8184
|
+
data: {
|
|
8185
|
+
email: string;
|
|
8186
|
+
token?: string | undefined;
|
|
8187
|
+
};
|
|
8326
8188
|
headers?: {
|
|
8327
8189
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8328
8190
|
"x-access-token"?: string | undefined;
|
|
8329
8191
|
} | undefined;
|
|
8330
8192
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8331
8193
|
data: {
|
|
8332
|
-
|
|
8333
|
-
|
|
8334
|
-
expiresAt?: string | undefined;
|
|
8335
|
-
password?: string | undefined;
|
|
8336
|
-
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
8337
|
-
};
|
|
8338
|
-
} & {
|
|
8339
|
-
pathParameters: {
|
|
8340
|
-
sshUserId: string;
|
|
8194
|
+
email: string;
|
|
8195
|
+
token?: string | undefined;
|
|
8341
8196
|
};
|
|
8342
8197
|
} & {
|
|
8343
8198
|
headers?: Partial<{
|
|
@@ -8350,14 +8205,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8350
8205
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8351
8206
|
}>;
|
|
8352
8207
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
8208
|
+
type: "ValidationError";
|
|
8209
|
+
message?: string | undefined;
|
|
8210
|
+
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
8211
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8353
8212
|
[x: string]: unknown;
|
|
8354
|
-
},
|
|
8355
|
-
|
|
8356
|
-
|
|
8357
|
-
readonly user: {
|
|
8358
|
-
/** Add phone number and start verification process. */
|
|
8359
|
-
addPhoneNumber: (request: {
|
|
8213
|
+
}, 404, "application/json">>>;
|
|
8214
|
+
/** Verify phone number. */
|
|
8215
|
+
verifyPhoneNumber: (request: {
|
|
8360
8216
|
data: {
|
|
8217
|
+
code: string;
|
|
8361
8218
|
phoneNumber: string;
|
|
8362
8219
|
};
|
|
8363
8220
|
userId: string;
|
|
@@ -8367,6 +8224,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8367
8224
|
} | undefined;
|
|
8368
8225
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8369
8226
|
data: {
|
|
8227
|
+
code: string;
|
|
8370
8228
|
phoneNumber: string;
|
|
8371
8229
|
};
|
|
8372
8230
|
} & {
|
|
@@ -8387,104 +8245,58 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8387
8245
|
[x: string]: unknown;
|
|
8388
8246
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8389
8247
|
[x: string]: unknown;
|
|
8390
|
-
},
|
|
8248
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8391
8249
|
[x: string]: unknown;
|
|
8392
8250
|
}, 409, "application/json">>>;
|
|
8393
|
-
/**
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
|
|
8397
|
-
|
|
8398
|
-
|
|
8399
|
-
}
|
|
8400
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8401
|
-
headers?: Partial<{
|
|
8402
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8403
|
-
}> | undefined;
|
|
8404
|
-
} & {
|
|
8405
|
-
pathParameters: {
|
|
8406
|
-
userId: string;
|
|
8407
|
-
};
|
|
8408
|
-
} & {
|
|
8409
|
-
headers: {
|
|
8410
|
-
"x-access-token"?: string | undefined;
|
|
8411
|
-
} & Partial<{
|
|
8412
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8413
|
-
}>;
|
|
8414
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
8415
|
-
[x: string]: unknown;
|
|
8416
|
-
}, 400, "application/json">>>;
|
|
8417
|
-
/** Validate your second factor. */
|
|
8418
|
-
authenticateMfa: (request: {
|
|
8419
|
-
data: {
|
|
8420
|
-
multiFactorCode: string;
|
|
8421
|
-
email?: string | undefined;
|
|
8422
|
-
password?: string | undefined;
|
|
8423
|
-
};
|
|
8251
|
+
/** Verify your registration. */
|
|
8252
|
+
verifyRegistration: (request: {
|
|
8253
|
+
data: {
|
|
8254
|
+
email: string;
|
|
8255
|
+
token: string;
|
|
8256
|
+
userId: string;
|
|
8257
|
+
};
|
|
8424
8258
|
headers?: {
|
|
8425
8259
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8426
8260
|
} | undefined;
|
|
8427
8261
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8428
8262
|
data: {
|
|
8429
|
-
email
|
|
8430
|
-
|
|
8431
|
-
|
|
8263
|
+
email: string;
|
|
8264
|
+
token: string;
|
|
8265
|
+
userId: string;
|
|
8432
8266
|
};
|
|
8433
8267
|
} & {
|
|
8434
8268
|
headers?: Partial<{
|
|
8435
8269
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8436
8270
|
}> | undefined;
|
|
8437
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8438
|
-
expires: string;
|
|
8439
|
-
token: string;
|
|
8440
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8271
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
8441
8272
|
type: "ValidationError";
|
|
8442
8273
|
message?: string | undefined;
|
|
8443
8274
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
8444
8275
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8445
|
-
|
|
8446
|
-
|
|
8447
|
-
|
|
8448
|
-
|
|
8449
|
-
|
|
8450
|
-
|
|
8451
|
-
|
|
8452
|
-
|
|
8453
|
-
|
|
8454
|
-
|
|
8276
|
+
[x: string]: unknown;
|
|
8277
|
+
}, 404, "application/json">>>;
|
|
8278
|
+
};
|
|
8279
|
+
/** The project API allows you to manage your projects, and also any kinds of user memberships concerning these projects. */
|
|
8280
|
+
readonly project: {
|
|
8281
|
+
/** Accept a ProjectInvite. */
|
|
8282
|
+
acceptProjectInvite: (request: {
|
|
8283
|
+
inviteId: string;
|
|
8284
|
+
data?: {
|
|
8285
|
+
invitationToken?: string | undefined;
|
|
8286
|
+
} | undefined;
|
|
8455
8287
|
headers?: {
|
|
8456
8288
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8289
|
+
"x-access-token"?: string | undefined;
|
|
8457
8290
|
} | undefined;
|
|
8458
8291
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8459
8292
|
data: {
|
|
8460
|
-
|
|
8461
|
-
|
|
8293
|
+
invitationToken?: string | undefined;
|
|
8294
|
+
};
|
|
8295
|
+
} & {
|
|
8296
|
+
pathParameters: {
|
|
8297
|
+
inviteId: string;
|
|
8462
8298
|
};
|
|
8463
8299
|
} & {
|
|
8464
|
-
headers?: Partial<{
|
|
8465
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8466
|
-
}> | undefined;
|
|
8467
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8468
|
-
type: "ValidationError";
|
|
8469
|
-
message?: string | undefined;
|
|
8470
|
-
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
8471
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8472
|
-
expires: string;
|
|
8473
|
-
token: string;
|
|
8474
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8475
|
-
name?: "SecondFactorRequired" | undefined;
|
|
8476
|
-
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8477
|
-
type: "ValidationError";
|
|
8478
|
-
message?: string | undefined;
|
|
8479
|
-
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
8480
|
-
}, 401, "application/json">>>;
|
|
8481
|
-
/** Get your verified Email-Address. */
|
|
8482
|
-
getOwnEmail: (request?: {
|
|
8483
|
-
headers?: {
|
|
8484
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8485
|
-
"x-access-token"?: string | undefined;
|
|
8486
|
-
} | undefined;
|
|
8487
|
-
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8488
8300
|
headers?: Partial<{
|
|
8489
8301
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8490
8302
|
}> | undefined;
|
|
@@ -8494,23 +8306,36 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8494
8306
|
} & Partial<{
|
|
8495
8307
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8496
8308
|
}>;
|
|
8497
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8498
|
-
email: string;
|
|
8499
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8309
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
8500
8310
|
[x: string]: unknown;
|
|
8501
|
-
},
|
|
8502
|
-
|
|
8503
|
-
|
|
8311
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8312
|
+
[x: string]: unknown;
|
|
8313
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8314
|
+
[x: string]: unknown;
|
|
8315
|
+
}, 412, "application/json">>>;
|
|
8316
|
+
/** Create a ProjectInvite. */
|
|
8317
|
+
createProjectInvite: (request: {
|
|
8504
8318
|
data: {
|
|
8505
|
-
|
|
8319
|
+
mailAddress: string;
|
|
8320
|
+
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
8321
|
+
membershipExpiresAt?: string | undefined;
|
|
8322
|
+
message?: string | undefined;
|
|
8506
8323
|
};
|
|
8324
|
+
projectId: string;
|
|
8507
8325
|
headers?: {
|
|
8508
8326
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8509
8327
|
"x-access-token"?: string | undefined;
|
|
8510
8328
|
} | undefined;
|
|
8511
8329
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8512
8330
|
data: {
|
|
8513
|
-
|
|
8331
|
+
mailAddress: string;
|
|
8332
|
+
membershipExpiresAt?: string | undefined;
|
|
8333
|
+
message?: string | undefined;
|
|
8334
|
+
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
8335
|
+
};
|
|
8336
|
+
} & {
|
|
8337
|
+
pathParameters: {
|
|
8338
|
+
projectId: string;
|
|
8514
8339
|
};
|
|
8515
8340
|
} & {
|
|
8516
8341
|
headers?: Partial<{
|
|
@@ -8522,27 +8347,37 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8522
8347
|
} & Partial<{
|
|
8523
8348
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8524
8349
|
}>;
|
|
8525
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8526
|
-
|
|
8350
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8351
|
+
id: string;
|
|
8352
|
+
information: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
|
|
8353
|
+
mailAddress: string;
|
|
8354
|
+
membershipExpiresAt?: string | undefined;
|
|
8527
8355
|
message?: string | undefined;
|
|
8528
|
-
|
|
8529
|
-
|
|
8530
|
-
|
|
8531
|
-
|
|
8356
|
+
projectDescription: string;
|
|
8357
|
+
projectId: string;
|
|
8358
|
+
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
8359
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8360
|
+
[x: string]: unknown;
|
|
8361
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8362
|
+
[x: string]: unknown;
|
|
8363
|
+
}, 409, "application/json">>>;
|
|
8364
|
+
/** Create a Project belonging to a Server. */
|
|
8365
|
+
createProject: (request: {
|
|
8532
8366
|
data: {
|
|
8533
|
-
|
|
8534
|
-
oldPassword: string;
|
|
8535
|
-
multiFactorCode?: string | undefined;
|
|
8367
|
+
description: string;
|
|
8536
8368
|
};
|
|
8369
|
+
serverId: string;
|
|
8537
8370
|
headers?: {
|
|
8538
8371
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8539
8372
|
"x-access-token"?: string | undefined;
|
|
8540
8373
|
} | undefined;
|
|
8541
8374
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8542
8375
|
data: {
|
|
8543
|
-
|
|
8544
|
-
|
|
8545
|
-
|
|
8376
|
+
description: string;
|
|
8377
|
+
};
|
|
8378
|
+
} & {
|
|
8379
|
+
pathParameters: {
|
|
8380
|
+
serverId: string;
|
|
8546
8381
|
};
|
|
8547
8382
|
} & {
|
|
8548
8383
|
headers?: Partial<{
|
|
@@ -8555,22 +8390,33 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8555
8390
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8556
8391
|
}>;
|
|
8557
8392
|
}, import("@mittwald/api-client-commons").Response<{
|
|
8558
|
-
|
|
8559
|
-
|
|
8560
|
-
|
|
8393
|
+
id: string;
|
|
8394
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8395
|
+
[x: string]: unknown;
|
|
8561
8396
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8562
|
-
expires: string;
|
|
8563
|
-
token: string;
|
|
8564
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8565
8397
|
[x: string]: unknown;
|
|
8566
|
-
},
|
|
8567
|
-
|
|
8568
|
-
|
|
8398
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8399
|
+
[x: string]: unknown;
|
|
8400
|
+
}, 412, "application/json">>>;
|
|
8401
|
+
/** Decline a ProjectInvite. */
|
|
8402
|
+
declineProjectInvite: (request: {
|
|
8403
|
+
inviteId: string;
|
|
8404
|
+
data?: {
|
|
8405
|
+
[x: string]: unknown;
|
|
8406
|
+
} | undefined;
|
|
8569
8407
|
headers?: {
|
|
8570
8408
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8571
8409
|
"x-access-token"?: string | undefined;
|
|
8572
8410
|
} | undefined;
|
|
8573
|
-
}
|
|
8411
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8412
|
+
data: {
|
|
8413
|
+
[x: string]: unknown;
|
|
8414
|
+
};
|
|
8415
|
+
} & {
|
|
8416
|
+
pathParameters: {
|
|
8417
|
+
inviteId: string;
|
|
8418
|
+
};
|
|
8419
|
+
} & {
|
|
8574
8420
|
headers?: Partial<{
|
|
8575
8421
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8576
8422
|
}> | undefined;
|
|
@@ -8580,20 +8426,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8580
8426
|
} & Partial<{
|
|
8581
8427
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8582
8428
|
}>;
|
|
8583
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8584
|
-
|
|
8585
|
-
|
|
8586
|
-
|
|
8587
|
-
/** Get your current multi factor auth status. */
|
|
8588
|
-
getMfaStatus: (request?: {
|
|
8429
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
8430
|
+
/** Request a Project avatar upload. */
|
|
8431
|
+
requestProjectAvatarUpload: (request: {
|
|
8432
|
+
projectId: string;
|
|
8589
8433
|
headers?: {
|
|
8590
8434
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8591
8435
|
"x-access-token"?: string | undefined;
|
|
8592
8436
|
} | undefined;
|
|
8593
|
-
}
|
|
8437
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8594
8438
|
headers?: Partial<{
|
|
8595
8439
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8596
8440
|
}> | undefined;
|
|
8441
|
+
} & {
|
|
8442
|
+
pathParameters: {
|
|
8443
|
+
projectId: string;
|
|
8444
|
+
};
|
|
8597
8445
|
} & {
|
|
8598
8446
|
headers: {
|
|
8599
8447
|
"x-access-token"?: string | undefined;
|
|
@@ -8601,56 +8449,54 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8601
8449
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8602
8450
|
}>;
|
|
8603
8451
|
}, import("@mittwald/api-client-commons").Response<{
|
|
8604
|
-
|
|
8605
|
-
|
|
8606
|
-
}, 200, "application/json"
|
|
8607
|
-
|
|
8608
|
-
|
|
8609
|
-
|
|
8610
|
-
|
|
8611
|
-
|
|
8452
|
+
refId: string;
|
|
8453
|
+
rules: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectAvatarRules;
|
|
8454
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8455
|
+
[x: string]: unknown;
|
|
8456
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8457
|
+
[x: string]: unknown;
|
|
8458
|
+
}, 403, "application/json">>>;
|
|
8459
|
+
/** Delete a Project's avatar. */
|
|
8460
|
+
deleteProjectAvatar: (request: {
|
|
8461
|
+
projectId: string;
|
|
8612
8462
|
headers?: {
|
|
8613
8463
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8614
8464
|
"x-access-token"?: string | undefined;
|
|
8615
8465
|
} | undefined;
|
|
8616
8466
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8617
|
-
data: {
|
|
8618
|
-
multiFactorCode: string;
|
|
8619
|
-
};
|
|
8620
|
-
} & {
|
|
8621
8467
|
headers?: Partial<{
|
|
8622
8468
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8623
8469
|
}> | undefined;
|
|
8470
|
+
} & {
|
|
8471
|
+
pathParameters: {
|
|
8472
|
+
projectId: string;
|
|
8473
|
+
};
|
|
8624
8474
|
} & {
|
|
8625
8475
|
headers: {
|
|
8626
8476
|
"x-access-token"?: string | undefined;
|
|
8627
8477
|
} & Partial<{
|
|
8628
8478
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8629
8479
|
}>;
|
|
8630
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8631
|
-
|
|
8632
|
-
message?: string | undefined;
|
|
8633
|
-
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
8480
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
8481
|
+
[x: string]: unknown;
|
|
8634
8482
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8635
|
-
|
|
8636
|
-
},
|
|
8637
|
-
/**
|
|
8638
|
-
|
|
8639
|
-
|
|
8640
|
-
multiFactorCode: string;
|
|
8641
|
-
};
|
|
8483
|
+
[x: string]: unknown;
|
|
8484
|
+
}, 403, "application/json">>>;
|
|
8485
|
+
/** Get a ProjectInvite. */
|
|
8486
|
+
getProjectInvite: (request: {
|
|
8487
|
+
inviteId: string;
|
|
8642
8488
|
headers?: {
|
|
8643
8489
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8644
8490
|
"x-access-token"?: string | undefined;
|
|
8645
8491
|
} | undefined;
|
|
8646
8492
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8647
|
-
data: {
|
|
8648
|
-
multiFactorCode: string;
|
|
8649
|
-
};
|
|
8650
|
-
} & {
|
|
8651
8493
|
headers?: Partial<{
|
|
8652
8494
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8653
8495
|
}> | undefined;
|
|
8496
|
+
} & {
|
|
8497
|
+
pathParameters: {
|
|
8498
|
+
inviteId: string;
|
|
8499
|
+
};
|
|
8654
8500
|
} & {
|
|
8655
8501
|
headers: {
|
|
8656
8502
|
"x-access-token"?: string | undefined;
|
|
@@ -8658,134 +8504,113 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8658
8504
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8659
8505
|
}>;
|
|
8660
8506
|
}, import("@mittwald/api-client-commons").Response<{
|
|
8661
|
-
|
|
8662
|
-
|
|
8663
|
-
|
|
8664
|
-
|
|
8665
|
-
|
|
8666
|
-
|
|
8667
|
-
|
|
8668
|
-
|
|
8669
|
-
|
|
8670
|
-
|
|
8671
|
-
|
|
8507
|
+
id: string;
|
|
8508
|
+
information: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
|
|
8509
|
+
mailAddress: string;
|
|
8510
|
+
membershipExpiresAt?: string | undefined;
|
|
8511
|
+
message?: string | undefined;
|
|
8512
|
+
projectDescription: string;
|
|
8513
|
+
projectId: string;
|
|
8514
|
+
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
8515
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8516
|
+
[x: string]: unknown;
|
|
8517
|
+
}, 404, "application/json">>>;
|
|
8518
|
+
/** Delete a ProjectInvite. */
|
|
8519
|
+
deleteProjectInvite: (request: {
|
|
8520
|
+
inviteId: string;
|
|
8672
8521
|
headers?: {
|
|
8673
8522
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8674
8523
|
"x-access-token"?: string | undefined;
|
|
8675
8524
|
} | undefined;
|
|
8676
8525
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8677
|
-
data: {
|
|
8678
|
-
multiFactorCode: string;
|
|
8679
|
-
};
|
|
8680
|
-
} & {
|
|
8681
8526
|
headers?: Partial<{
|
|
8682
8527
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8683
8528
|
}> | undefined;
|
|
8529
|
+
} & {
|
|
8530
|
+
pathParameters: {
|
|
8531
|
+
inviteId: string;
|
|
8532
|
+
};
|
|
8684
8533
|
} & {
|
|
8685
8534
|
headers: {
|
|
8686
8535
|
"x-access-token"?: string | undefined;
|
|
8687
8536
|
} & Partial<{
|
|
8688
8537
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8689
8538
|
}>;
|
|
8690
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"
|
|
8691
|
-
|
|
8692
|
-
|
|
8693
|
-
|
|
8694
|
-
}, 400, "application/json">>>;
|
|
8695
|
-
/** Confirm password reset. */
|
|
8696
|
-
confirmPasswordReset: (request: {
|
|
8697
|
-
data: {
|
|
8698
|
-
password: string;
|
|
8699
|
-
token: string;
|
|
8700
|
-
userId: string;
|
|
8701
|
-
};
|
|
8702
|
-
headers?: {
|
|
8703
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8704
|
-
} | undefined;
|
|
8705
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8706
|
-
data: {
|
|
8707
|
-
password: string;
|
|
8708
|
-
token: string;
|
|
8709
|
-
userId: string;
|
|
8710
|
-
};
|
|
8711
|
-
} & {
|
|
8712
|
-
headers?: Partial<{
|
|
8713
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8714
|
-
}> | undefined;
|
|
8715
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
8716
|
-
type: "ValidationError";
|
|
8717
|
-
message?: string | undefined;
|
|
8718
|
-
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
8719
|
-
}, 400, "application/json">>>;
|
|
8720
|
-
/** List all of your ApiTokens. */
|
|
8721
|
-
listApiTokens: (request?: {
|
|
8539
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
8540
|
+
/** Get a ProjectMembership */
|
|
8541
|
+
getProjectMembership: (request: {
|
|
8542
|
+
membershipId: string;
|
|
8722
8543
|
headers?: {
|
|
8723
8544
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8724
8545
|
"x-access-token"?: string | undefined;
|
|
8725
8546
|
} | undefined;
|
|
8726
|
-
}
|
|
8547
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8727
8548
|
headers?: Partial<{
|
|
8728
8549
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8729
8550
|
}> | undefined;
|
|
8551
|
+
} & {
|
|
8552
|
+
pathParameters: {
|
|
8553
|
+
membershipId: string;
|
|
8554
|
+
};
|
|
8730
8555
|
} & {
|
|
8731
8556
|
headers: {
|
|
8732
8557
|
"x-access-token"?: string | undefined;
|
|
8733
8558
|
} & Partial<{
|
|
8734
8559
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8735
8560
|
}>;
|
|
8736
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
8737
|
-
|
|
8738
|
-
|
|
8739
|
-
|
|
8740
|
-
|
|
8741
|
-
|
|
8742
|
-
|
|
8743
|
-
|
|
8561
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8562
|
+
expiresAt?: string | undefined;
|
|
8563
|
+
id: string;
|
|
8564
|
+
inherited: boolean;
|
|
8565
|
+
inviteId: string;
|
|
8566
|
+
memberSince?: string | undefined;
|
|
8567
|
+
projectId: string;
|
|
8568
|
+
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
8569
|
+
userId: string;
|
|
8570
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8571
|
+
[x: string]: unknown;
|
|
8572
|
+
}, 404, "application/json">>>;
|
|
8573
|
+
/** Delete a ProjectMembership. */
|
|
8574
|
+
deleteProjectMembership: (request: {
|
|
8575
|
+
membershipId: string;
|
|
8744
8576
|
headers?: {
|
|
8745
8577
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8746
8578
|
"x-access-token"?: string | undefined;
|
|
8747
8579
|
} | undefined;
|
|
8748
8580
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8749
|
-
data: {
|
|
8750
|
-
description: string;
|
|
8751
|
-
expiresAt?: string | undefined;
|
|
8752
|
-
roles: ["api_read" | "api_write", ...("api_read" | "api_write")[]];
|
|
8753
|
-
};
|
|
8754
|
-
} & {
|
|
8755
8581
|
headers?: Partial<{
|
|
8756
8582
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8757
8583
|
}> | undefined;
|
|
8584
|
+
} & {
|
|
8585
|
+
pathParameters: {
|
|
8586
|
+
membershipId: string;
|
|
8587
|
+
};
|
|
8758
8588
|
} & {
|
|
8759
8589
|
headers: {
|
|
8760
8590
|
"x-access-token"?: string | undefined;
|
|
8761
8591
|
} & Partial<{
|
|
8762
8592
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8763
8593
|
}>;
|
|
8764
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8765
|
-
|
|
8766
|
-
|
|
8767
|
-
[x: string]: unknown;
|
|
8768
|
-
}, 400, "application/json">>>;
|
|
8769
|
-
/** Submit your user feedback. */
|
|
8770
|
-
createFeedback: (request: {
|
|
8594
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
8595
|
+
/** Update a ProjectMembership. */
|
|
8596
|
+
updateProjectMembership: (request: {
|
|
8771
8597
|
data: {
|
|
8772
|
-
|
|
8773
|
-
|
|
8774
|
-
origin?: string | undefined;
|
|
8775
|
-
type?: "feedback" | "bug" | undefined;
|
|
8776
|
-
vote?: number | undefined;
|
|
8598
|
+
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
8599
|
+
expiresAt?: string | undefined;
|
|
8777
8600
|
};
|
|
8601
|
+
membershipId: string;
|
|
8778
8602
|
headers?: {
|
|
8779
8603
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8780
8604
|
"x-access-token"?: string | undefined;
|
|
8781
8605
|
} | undefined;
|
|
8782
8606
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8783
8607
|
data: {
|
|
8784
|
-
|
|
8785
|
-
|
|
8786
|
-
|
|
8787
|
-
|
|
8788
|
-
|
|
8608
|
+
expiresAt?: string | undefined;
|
|
8609
|
+
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
8610
|
+
};
|
|
8611
|
+
} & {
|
|
8612
|
+
pathParameters: {
|
|
8613
|
+
membershipId: string;
|
|
8789
8614
|
};
|
|
8790
8615
|
} & {
|
|
8791
8616
|
headers?: Partial<{
|
|
@@ -8797,21 +8622,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8797
8622
|
} & Partial<{
|
|
8798
8623
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8799
8624
|
}>;
|
|
8800
|
-
}, import("@mittwald/api-client-commons").Response<{},
|
|
8801
|
-
|
|
8802
|
-
|
|
8803
|
-
|
|
8804
|
-
}, 404, "application/json">>>;
|
|
8805
|
-
/** Get your stored ssh-keys. */
|
|
8806
|
-
listSshKeys: (request?: {
|
|
8625
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
8626
|
+
/** Get a Project. */
|
|
8627
|
+
getProject: (request: {
|
|
8628
|
+
projectId: string;
|
|
8807
8629
|
headers?: {
|
|
8808
8630
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8809
8631
|
"x-access-token"?: string | undefined;
|
|
8810
8632
|
} | undefined;
|
|
8811
|
-
}
|
|
8633
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8812
8634
|
headers?: Partial<{
|
|
8813
8635
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8814
8636
|
}> | undefined;
|
|
8637
|
+
} & {
|
|
8638
|
+
pathParameters: {
|
|
8639
|
+
projectId: string;
|
|
8640
|
+
};
|
|
8815
8641
|
} & {
|
|
8816
8642
|
headers: {
|
|
8817
8643
|
"x-access-token"?: string | undefined;
|
|
@@ -8819,39 +8645,62 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8819
8645
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8820
8646
|
}>;
|
|
8821
8647
|
}, import("@mittwald/api-client-commons").Response<{
|
|
8822
|
-
|
|
8823
|
-
|
|
8824
|
-
|
|
8825
|
-
|
|
8826
|
-
|
|
8827
|
-
|
|
8828
|
-
|
|
8648
|
+
clusterDomain?: string | undefined;
|
|
8649
|
+
clusterID?: string | undefined;
|
|
8650
|
+
createdAt: string;
|
|
8651
|
+
customerId: string;
|
|
8652
|
+
description: string;
|
|
8653
|
+
directories: {
|
|
8654
|
+
[k: string]: string;
|
|
8829
8655
|
};
|
|
8656
|
+
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
8657
|
+
enabled: boolean;
|
|
8658
|
+
id: string;
|
|
8659
|
+
imageRefId?: string | undefined;
|
|
8660
|
+
isReady: boolean;
|
|
8661
|
+
projectHostingId?: string | undefined;
|
|
8662
|
+
readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectReadinessStatus;
|
|
8663
|
+
serverId?: string | undefined;
|
|
8664
|
+
serverShortId?: string | undefined;
|
|
8665
|
+
shortId: string;
|
|
8666
|
+
spec?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectHardwareSpec | import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectVisitorSpec | undefined;
|
|
8667
|
+
statisticsBaseDomain?: string | undefined;
|
|
8668
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8669
|
+
[x: string]: unknown;
|
|
8670
|
+
}, 403, "application/json">>>;
|
|
8671
|
+
/** Delete a Project. */
|
|
8672
|
+
deleteProject: (request: {
|
|
8673
|
+
projectId: string;
|
|
8830
8674
|
headers?: {
|
|
8831
8675
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8832
8676
|
"x-access-token"?: string | undefined;
|
|
8833
8677
|
} | undefined;
|
|
8834
8678
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8835
|
-
data: {
|
|
8836
|
-
expiresAt?: string | undefined;
|
|
8837
|
-
publicKey: string;
|
|
8838
|
-
};
|
|
8839
|
-
} & {
|
|
8840
8679
|
headers?: Partial<{
|
|
8841
8680
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8842
8681
|
}> | undefined;
|
|
8682
|
+
} & {
|
|
8683
|
+
pathParameters: {
|
|
8684
|
+
projectId: string;
|
|
8685
|
+
};
|
|
8843
8686
|
} & {
|
|
8844
8687
|
headers: {
|
|
8845
8688
|
"x-access-token"?: string | undefined;
|
|
8846
8689
|
} & Partial<{
|
|
8847
8690
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8848
8691
|
}>;
|
|
8849
|
-
}, import("@mittwald/api-client-commons").Response<{},
|
|
8692
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8850
8693
|
[x: string]: unknown;
|
|
8851
|
-
}, 400, "application/json"
|
|
8852
|
-
|
|
8853
|
-
|
|
8854
|
-
|
|
8694
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8695
|
+
[x: string]: unknown;
|
|
8696
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8697
|
+
[x: string]: unknown;
|
|
8698
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8699
|
+
[x: string]: unknown;
|
|
8700
|
+
}, 500, "application/json">>>;
|
|
8701
|
+
/** Request a Server avatar upload. */
|
|
8702
|
+
requestServerAvatarUpload: (request: {
|
|
8703
|
+
serverId: string;
|
|
8855
8704
|
headers?: {
|
|
8856
8705
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8857
8706
|
"x-access-token"?: string | undefined;
|
|
@@ -8862,7 +8711,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8862
8711
|
}> | undefined;
|
|
8863
8712
|
} & {
|
|
8864
8713
|
pathParameters: {
|
|
8865
|
-
|
|
8714
|
+
serverId: string;
|
|
8866
8715
|
};
|
|
8867
8716
|
} & {
|
|
8868
8717
|
headers: {
|
|
@@ -8871,38 +8720,28 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8871
8720
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8872
8721
|
}>;
|
|
8873
8722
|
}, import("@mittwald/api-client-commons").Response<{
|
|
8874
|
-
|
|
8875
|
-
|
|
8876
|
-
description: string;
|
|
8877
|
-
expiresAt?: string | undefined;
|
|
8878
|
-
roles: ("api_read" | "api_write")[];
|
|
8723
|
+
refId: string;
|
|
8724
|
+
rules: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectAvatarRules;
|
|
8879
8725
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8880
8726
|
[x: string]: unknown;
|
|
8881
|
-
},
|
|
8882
|
-
|
|
8883
|
-
|
|
8884
|
-
|
|
8885
|
-
|
|
8886
|
-
|
|
8887
|
-
};
|
|
8888
|
-
apiTokenId: string;
|
|
8727
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8728
|
+
[x: string]: unknown;
|
|
8729
|
+
}, 403, "application/json">>>;
|
|
8730
|
+
/** Delete a Server's avatar. */
|
|
8731
|
+
deleteServerAvatar: (request: {
|
|
8732
|
+
serverId: string;
|
|
8889
8733
|
headers?: {
|
|
8890
8734
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8891
8735
|
"x-access-token"?: string | undefined;
|
|
8892
8736
|
} | undefined;
|
|
8893
8737
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8894
|
-
data: {
|
|
8895
|
-
description: string;
|
|
8896
|
-
expiresAt?: string | undefined;
|
|
8897
|
-
};
|
|
8898
|
-
} & {
|
|
8899
|
-
pathParameters: {
|
|
8900
|
-
apiTokenId: string;
|
|
8901
|
-
};
|
|
8902
|
-
} & {
|
|
8903
8738
|
headers?: Partial<{
|
|
8904
8739
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8905
8740
|
}> | undefined;
|
|
8741
|
+
} & {
|
|
8742
|
+
pathParameters: {
|
|
8743
|
+
serverId: string;
|
|
8744
|
+
};
|
|
8906
8745
|
} & {
|
|
8907
8746
|
headers: {
|
|
8908
8747
|
"x-access-token"?: string | undefined;
|
|
@@ -8911,21 +8750,52 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8911
8750
|
}>;
|
|
8912
8751
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
8913
8752
|
[x: string]: unknown;
|
|
8914
|
-
}, 400, "application/json"
|
|
8915
|
-
|
|
8916
|
-
|
|
8917
|
-
|
|
8918
|
-
|
|
8753
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8754
|
+
[x: string]: unknown;
|
|
8755
|
+
}, 403, "application/json">>>;
|
|
8756
|
+
/** Get a ProjectInvite by token. */
|
|
8757
|
+
getProjectTokenInvite: (request: {
|
|
8758
|
+
headers: {
|
|
8919
8759
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8920
8760
|
"x-access-token"?: string | undefined;
|
|
8921
|
-
}
|
|
8761
|
+
};
|
|
8762
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8763
|
+
headers?: Partial<{
|
|
8764
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8765
|
+
}> | undefined;
|
|
8766
|
+
} & {
|
|
8767
|
+
headers: {
|
|
8768
|
+
token: string;
|
|
8769
|
+
"x-access-token"?: string | undefined;
|
|
8770
|
+
} & Partial<{
|
|
8771
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8772
|
+
}>;
|
|
8773
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8774
|
+
id: string;
|
|
8775
|
+
information: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
|
|
8776
|
+
mailAddress: string;
|
|
8777
|
+
membershipExpiresAt?: string | undefined;
|
|
8778
|
+
message?: string | undefined;
|
|
8779
|
+
projectDescription: string;
|
|
8780
|
+
projectId: string;
|
|
8781
|
+
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
8782
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8783
|
+
[x: string]: unknown;
|
|
8784
|
+
}, 404, "application/json">>>;
|
|
8785
|
+
/** Get the executing user's membership in a Project. */
|
|
8786
|
+
getSelfMembershipForProject: (request: {
|
|
8787
|
+
projectId: string;
|
|
8788
|
+
headers?: {
|
|
8789
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8790
|
+
"x-access-token"?: string | undefined;
|
|
8791
|
+
} | undefined;
|
|
8922
8792
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8923
8793
|
headers?: Partial<{
|
|
8924
8794
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8925
8795
|
}> | undefined;
|
|
8926
8796
|
} & {
|
|
8927
8797
|
pathParameters: {
|
|
8928
|
-
|
|
8798
|
+
projectId: string;
|
|
8929
8799
|
};
|
|
8930
8800
|
} & {
|
|
8931
8801
|
headers: {
|
|
@@ -8933,12 +8803,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8933
8803
|
} & Partial<{
|
|
8934
8804
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8935
8805
|
}>;
|
|
8936
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8806
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8807
|
+
expiresAt?: string | undefined;
|
|
8808
|
+
id: string;
|
|
8809
|
+
inherited: boolean;
|
|
8810
|
+
inviteId: string;
|
|
8811
|
+
memberSince?: string | undefined;
|
|
8812
|
+
projectId: string;
|
|
8813
|
+
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
8814
|
+
userId: string;
|
|
8815
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8937
8816
|
[x: string]: unknown;
|
|
8938
|
-
},
|
|
8939
|
-
/** Get a
|
|
8940
|
-
|
|
8941
|
-
|
|
8817
|
+
}, 404, "application/json">>>;
|
|
8818
|
+
/** Get a Server. */
|
|
8819
|
+
getServer: (request: {
|
|
8820
|
+
serverId: string;
|
|
8942
8821
|
headers?: {
|
|
8943
8822
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8944
8823
|
"x-access-token"?: string | undefined;
|
|
@@ -8949,7 +8828,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8949
8828
|
}> | undefined;
|
|
8950
8829
|
} & {
|
|
8951
8830
|
pathParameters: {
|
|
8952
|
-
|
|
8831
|
+
serverId: string;
|
|
8953
8832
|
};
|
|
8954
8833
|
} & {
|
|
8955
8834
|
headers: {
|
|
@@ -8958,29 +8837,41 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8958
8837
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8959
8838
|
}>;
|
|
8960
8839
|
}, import("@mittwald/api-client-commons").Response<{
|
|
8961
|
-
|
|
8840
|
+
clusterName: string;
|
|
8841
|
+
createdAt: string;
|
|
8842
|
+
customerId: string;
|
|
8843
|
+
description: string;
|
|
8844
|
+
disabledReason?: "suspended" | undefined;
|
|
8845
|
+
id: string;
|
|
8846
|
+
imageRefId?: string | undefined;
|
|
8847
|
+
isReady: boolean;
|
|
8848
|
+
machineType: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectMachineType;
|
|
8849
|
+
readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectReadinessStatus;
|
|
8850
|
+
shortId: string;
|
|
8851
|
+
statisticsBaseDomain?: string | undefined;
|
|
8852
|
+
storage: string;
|
|
8962
8853
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8963
8854
|
[x: string]: unknown;
|
|
8855
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8856
|
+
[x: string]: unknown;
|
|
8964
8857
|
}, 404, "application/json">>>;
|
|
8965
|
-
/**
|
|
8966
|
-
|
|
8967
|
-
|
|
8968
|
-
|
|
8969
|
-
|
|
8970
|
-
};
|
|
8971
|
-
sshKeyId: string;
|
|
8858
|
+
/** Leave a Project. */
|
|
8859
|
+
leaveProject: (request: {
|
|
8860
|
+
projectId: string;
|
|
8861
|
+
data?: {
|
|
8862
|
+
[x: string]: unknown;
|
|
8863
|
+
} | undefined;
|
|
8972
8864
|
headers?: {
|
|
8973
8865
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8974
8866
|
"x-access-token"?: string | undefined;
|
|
8975
8867
|
} | undefined;
|
|
8976
8868
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8977
8869
|
data: {
|
|
8978
|
-
|
|
8979
|
-
expiresAt?: string | undefined;
|
|
8870
|
+
[x: string]: unknown;
|
|
8980
8871
|
};
|
|
8981
8872
|
} & {
|
|
8982
8873
|
pathParameters: {
|
|
8983
|
-
|
|
8874
|
+
projectId: string;
|
|
8984
8875
|
};
|
|
8985
8876
|
} & {
|
|
8986
8877
|
headers?: Partial<{
|
|
@@ -8992,157 +8883,163 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8992
8883
|
} & Partial<{
|
|
8993
8884
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8994
8885
|
}>;
|
|
8995
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"
|
|
8996
|
-
|
|
8997
|
-
|
|
8998
|
-
|
|
8999
|
-
deleteSshKey: (request: {
|
|
9000
|
-
sshKeyId: string;
|
|
8886
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
8887
|
+
/** List Invites belonging to a Project. */
|
|
8888
|
+
listInvitesForProject: (request: {
|
|
8889
|
+
projectId: string;
|
|
9001
8890
|
headers?: {
|
|
9002
8891
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9003
8892
|
"x-access-token"?: string | undefined;
|
|
9004
8893
|
} | undefined;
|
|
8894
|
+
queryParameters?: {
|
|
8895
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8896
|
+
limit?: number | undefined;
|
|
8897
|
+
skip?: number | undefined;
|
|
8898
|
+
} | undefined;
|
|
9005
8899
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9006
8900
|
headers?: Partial<{
|
|
9007
8901
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9008
8902
|
}> | undefined;
|
|
9009
8903
|
} & {
|
|
9010
8904
|
pathParameters: {
|
|
9011
|
-
|
|
8905
|
+
projectId: string;
|
|
9012
8906
|
};
|
|
8907
|
+
} & {
|
|
8908
|
+
queryParameters: {
|
|
8909
|
+
limit?: number | undefined;
|
|
8910
|
+
skip?: number | undefined;
|
|
8911
|
+
} & Partial<{
|
|
8912
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8913
|
+
}>;
|
|
9013
8914
|
} & {
|
|
9014
8915
|
headers: {
|
|
9015
8916
|
"x-access-token"?: string | undefined;
|
|
9016
8917
|
} & Partial<{
|
|
9017
8918
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9018
8919
|
}>;
|
|
9019
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
9020
|
-
|
|
9021
|
-
|
|
9022
|
-
|
|
9023
|
-
|
|
9024
|
-
|
|
9025
|
-
};
|
|
8920
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8921
|
+
[x: string]: unknown;
|
|
8922
|
+
}, 404, "application/json">>>;
|
|
8923
|
+
/** List Memberships belonging to a Project. */
|
|
8924
|
+
listMembershipsForProject: (request: {
|
|
8925
|
+
projectId: string;
|
|
9026
8926
|
headers?: {
|
|
9027
8927
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9028
8928
|
"x-access-token"?: string | undefined;
|
|
9029
8929
|
} | undefined;
|
|
8930
|
+
queryParameters?: {
|
|
8931
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8932
|
+
limit?: number | undefined;
|
|
8933
|
+
skip?: number | undefined;
|
|
8934
|
+
} | undefined;
|
|
9030
8935
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9031
|
-
data: {
|
|
9032
|
-
multiFactorCode?: string | undefined;
|
|
9033
|
-
password: string;
|
|
9034
|
-
};
|
|
9035
|
-
} & {
|
|
9036
8936
|
headers?: Partial<{
|
|
9037
8937
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9038
8938
|
}> | undefined;
|
|
8939
|
+
} & {
|
|
8940
|
+
pathParameters: {
|
|
8941
|
+
projectId: string;
|
|
8942
|
+
};
|
|
8943
|
+
} & {
|
|
8944
|
+
queryParameters: {
|
|
8945
|
+
limit?: number | undefined;
|
|
8946
|
+
skip?: number | undefined;
|
|
8947
|
+
} & Partial<{
|
|
8948
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8949
|
+
}>;
|
|
9039
8950
|
} & {
|
|
9040
8951
|
headers: {
|
|
9041
8952
|
"x-access-token"?: string | undefined;
|
|
9042
8953
|
} & Partial<{
|
|
9043
8954
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9044
8955
|
}>;
|
|
9045
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
9046
|
-
type: "ValidationError";
|
|
9047
|
-
message?: string | undefined;
|
|
9048
|
-
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
9049
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9050
|
-
[x: string]: unknown;
|
|
9051
|
-
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8956
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9052
8957
|
[x: string]: unknown;
|
|
9053
|
-
},
|
|
9054
|
-
/**
|
|
9055
|
-
|
|
8958
|
+
}, 404, "application/json">>>;
|
|
8959
|
+
/** List ProjectInvites belonging to the executing user. */
|
|
8960
|
+
listProjectInvites: (request?: {
|
|
9056
8961
|
headers?: {
|
|
9057
8962
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9058
8963
|
"x-access-token"?: string | undefined;
|
|
9059
8964
|
} | undefined;
|
|
8965
|
+
queryParameters?: {
|
|
8966
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8967
|
+
limit?: number | undefined;
|
|
8968
|
+
skip?: number | undefined;
|
|
8969
|
+
} | undefined;
|
|
9060
8970
|
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9061
8971
|
headers?: Partial<{
|
|
9062
8972
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9063
8973
|
}> | undefined;
|
|
9064
8974
|
} & {
|
|
9065
|
-
|
|
9066
|
-
|
|
8975
|
+
queryParameters: {
|
|
8976
|
+
limit?: number | undefined;
|
|
8977
|
+
skip?: number | undefined;
|
|
9067
8978
|
} & Partial<{
|
|
9068
8979
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9069
8980
|
}>;
|
|
9070
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9071
|
-
email?: string | undefined;
|
|
9072
|
-
mfaDetails?: {
|
|
9073
|
-
mfaConfirmed?: boolean | undefined;
|
|
9074
|
-
mfaInitialized?: boolean | undefined;
|
|
9075
|
-
} | undefined;
|
|
9076
|
-
passwordUpdatedAt?: string | undefined;
|
|
9077
|
-
person?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsPerson | undefined;
|
|
9078
|
-
userId?: string | undefined;
|
|
9079
|
-
}, 200, "application/json">>>;
|
|
9080
|
-
/** Update your account information. */
|
|
9081
|
-
updateAccount: (request: {
|
|
9082
|
-
data: {
|
|
9083
|
-
person: {
|
|
9084
|
-
firstName: string;
|
|
9085
|
-
lastName: string;
|
|
9086
|
-
title?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation | undefined;
|
|
9087
|
-
};
|
|
9088
|
-
};
|
|
9089
|
-
headers?: {
|
|
9090
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9091
|
-
"x-access-token"?: string | undefined;
|
|
9092
|
-
} | undefined;
|
|
9093
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9094
|
-
data: {
|
|
9095
|
-
person: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
9096
|
-
};
|
|
9097
|
-
} & {
|
|
9098
|
-
headers?: Partial<{
|
|
9099
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9100
|
-
}> | undefined;
|
|
9101
8981
|
} & {
|
|
9102
8982
|
headers: {
|
|
9103
8983
|
"x-access-token"?: string | undefined;
|
|
9104
8984
|
} & Partial<{
|
|
9105
8985
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9106
8986
|
}>;
|
|
9107
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
9108
|
-
|
|
9109
|
-
|
|
9110
|
-
|
|
9111
|
-
|
|
9112
|
-
/** The timestamp of your latest password change. */
|
|
9113
|
-
getPasswordUpdatedAt: (request?: {
|
|
8987
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8988
|
+
[x: string]: unknown;
|
|
8989
|
+
}, 404, "application/json">>>;
|
|
8990
|
+
/** List ProjectMemberships belonging to the executing user. */
|
|
8991
|
+
listProjectMemberships: (request?: {
|
|
9114
8992
|
headers?: {
|
|
9115
8993
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9116
8994
|
"x-access-token"?: string | undefined;
|
|
9117
8995
|
} | undefined;
|
|
8996
|
+
queryParameters?: {
|
|
8997
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8998
|
+
limit?: number | undefined;
|
|
8999
|
+
skip?: number | undefined;
|
|
9000
|
+
} | undefined;
|
|
9118
9001
|
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9119
9002
|
headers?: Partial<{
|
|
9120
9003
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9121
9004
|
}> | undefined;
|
|
9005
|
+
} & {
|
|
9006
|
+
queryParameters: {
|
|
9007
|
+
limit?: number | undefined;
|
|
9008
|
+
skip?: number | undefined;
|
|
9009
|
+
} & Partial<{
|
|
9010
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9011
|
+
}>;
|
|
9122
9012
|
} & {
|
|
9123
9013
|
headers: {
|
|
9124
9014
|
"x-access-token"?: string | undefined;
|
|
9125
9015
|
} & Partial<{
|
|
9126
9016
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9127
9017
|
}>;
|
|
9128
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9129
|
-
|
|
9130
|
-
},
|
|
9131
|
-
/**
|
|
9132
|
-
|
|
9133
|
-
userId: string;
|
|
9018
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9019
|
+
[x: string]: unknown;
|
|
9020
|
+
}, 404, "application/json">>>;
|
|
9021
|
+
/** List Projects belonging to the executing user. */
|
|
9022
|
+
listProjects: (request?: {
|
|
9134
9023
|
headers?: {
|
|
9135
9024
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9136
9025
|
"x-access-token"?: string | undefined;
|
|
9137
9026
|
} | undefined;
|
|
9138
|
-
|
|
9027
|
+
queryParameters?: {
|
|
9028
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9029
|
+
customerId?: string | undefined;
|
|
9030
|
+
serverId?: string | undefined;
|
|
9031
|
+
} | undefined;
|
|
9032
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9139
9033
|
headers?: Partial<{
|
|
9140
9034
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9141
9035
|
}> | undefined;
|
|
9142
9036
|
} & {
|
|
9143
|
-
|
|
9144
|
-
|
|
9145
|
-
|
|
9037
|
+
queryParameters: {
|
|
9038
|
+
customerId?: string | undefined;
|
|
9039
|
+
serverId?: string | undefined;
|
|
9040
|
+
} & Partial<{
|
|
9041
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9042
|
+
}>;
|
|
9146
9043
|
} & {
|
|
9147
9044
|
headers: {
|
|
9148
9045
|
"x-access-token"?: string | undefined;
|
|
@@ -9150,84 +9047,83 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9150
9047
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9151
9048
|
}>;
|
|
9152
9049
|
}, import("@mittwald/api-client-commons").Response<{
|
|
9153
|
-
|
|
9154
|
-
|
|
9155
|
-
|
|
9156
|
-
|
|
9157
|
-
data: {
|
|
9158
|
-
settingsString: string;
|
|
9050
|
+
createdAt: string;
|
|
9051
|
+
customerId: string;
|
|
9052
|
+
customerMeta: {
|
|
9053
|
+
id: string;
|
|
9159
9054
|
};
|
|
9160
|
-
|
|
9055
|
+
description: string;
|
|
9056
|
+
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
9057
|
+
enabled: boolean;
|
|
9058
|
+
id: string;
|
|
9059
|
+
imageRefId?: string | undefined;
|
|
9060
|
+
isReady: boolean;
|
|
9061
|
+
projectHostingId?: string | undefined;
|
|
9062
|
+
readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectReadinessStatus;
|
|
9063
|
+
serverId?: string | undefined;
|
|
9064
|
+
shortId: string;
|
|
9065
|
+
}[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9066
|
+
[x: string]: unknown;
|
|
9067
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9068
|
+
[x: string]: unknown;
|
|
9069
|
+
}, 403, "application/json">>>;
|
|
9070
|
+
/** List Servers belonging to the executing user. */
|
|
9071
|
+
listServers: (request?: {
|
|
9161
9072
|
headers?: {
|
|
9162
9073
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9163
9074
|
"x-access-token"?: string | undefined;
|
|
9164
9075
|
} | undefined;
|
|
9165
|
-
|
|
9166
|
-
|
|
9167
|
-
|
|
9168
|
-
|
|
9169
|
-
|
|
9170
|
-
|
|
9171
|
-
|
|
9172
|
-
|
|
9173
|
-
} & {
|
|
9076
|
+
queryParameters?: {
|
|
9077
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9078
|
+
customerId?: string | undefined;
|
|
9079
|
+
limit?: number | undefined;
|
|
9080
|
+
page?: number | undefined;
|
|
9081
|
+
skip?: number | undefined;
|
|
9082
|
+
} | undefined;
|
|
9083
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9174
9084
|
headers?: Partial<{
|
|
9175
9085
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9176
9086
|
}> | undefined;
|
|
9177
9087
|
} & {
|
|
9178
|
-
|
|
9179
|
-
|
|
9088
|
+
queryParameters: {
|
|
9089
|
+
customerId?: string | undefined;
|
|
9090
|
+
limit?: number | undefined;
|
|
9091
|
+
page?: number | undefined;
|
|
9092
|
+
skip?: number | undefined;
|
|
9180
9093
|
} & Partial<{
|
|
9181
9094
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9182
9095
|
}>;
|
|
9183
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
9184
|
-
[x: string]: unknown;
|
|
9185
|
-
}, 400, "application/json">>>;
|
|
9186
|
-
/** Get a specific session. */
|
|
9187
|
-
getSession: (request: {
|
|
9188
|
-
tokenId: string;
|
|
9189
|
-
headers?: {
|
|
9190
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9191
|
-
"x-access-token"?: string | undefined;
|
|
9192
|
-
} | undefined;
|
|
9193
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9194
|
-
headers?: Partial<{
|
|
9195
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9196
|
-
}> | undefined;
|
|
9197
|
-
} & {
|
|
9198
|
-
pathParameters: {
|
|
9199
|
-
tokenId: string;
|
|
9200
|
-
};
|
|
9201
9096
|
} & {
|
|
9202
9097
|
headers: {
|
|
9203
9098
|
"x-access-token"?: string | undefined;
|
|
9204
9099
|
} & Partial<{
|
|
9205
9100
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9206
9101
|
}>;
|
|
9207
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9208
|
-
created: string;
|
|
9209
|
-
device: import("./types.js").MittwaldAPIV2.Components.Schemas.SignupDeviceInfo;
|
|
9210
|
-
lastAccess?: string | undefined;
|
|
9211
|
-
location?: import("./types.js").MittwaldAPIV2.Components.Schemas.SignupLocation | undefined;
|
|
9212
|
-
tokenId: string;
|
|
9213
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9102
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServer[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9214
9103
|
[x: string]: unknown;
|
|
9215
|
-
},
|
|
9216
|
-
/**
|
|
9217
|
-
|
|
9218
|
-
|
|
9104
|
+
}, 403, "application/json">>>;
|
|
9105
|
+
/** Resend the mail for a ProjectInvite. */
|
|
9106
|
+
resendProjectInviteMail: (request: {
|
|
9107
|
+
inviteId: string;
|
|
9108
|
+
data?: {
|
|
9109
|
+
[x: string]: unknown;
|
|
9110
|
+
} | undefined;
|
|
9219
9111
|
headers?: {
|
|
9220
9112
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9221
9113
|
"x-access-token"?: string | undefined;
|
|
9222
9114
|
} | undefined;
|
|
9223
9115
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9224
|
-
|
|
9225
|
-
[
|
|
9226
|
-
}
|
|
9116
|
+
data: {
|
|
9117
|
+
[x: string]: unknown;
|
|
9118
|
+
};
|
|
9227
9119
|
} & {
|
|
9228
9120
|
pathParameters: {
|
|
9229
|
-
|
|
9121
|
+
inviteId: string;
|
|
9230
9122
|
};
|
|
9123
|
+
} & {
|
|
9124
|
+
headers?: Partial<{
|
|
9125
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9126
|
+
}> | undefined;
|
|
9231
9127
|
} & {
|
|
9232
9128
|
headers: {
|
|
9233
9129
|
"x-access-token"?: string | undefined;
|
|
@@ -9236,66 +9132,57 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9236
9132
|
}>;
|
|
9237
9133
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
9238
9134
|
[x: string]: unknown;
|
|
9239
|
-
},
|
|
9240
|
-
/**
|
|
9241
|
-
|
|
9242
|
-
|
|
9135
|
+
}, 403, "application/json">>>;
|
|
9136
|
+
/** Update a Project's description. */
|
|
9137
|
+
updateProjectDescription: (request: {
|
|
9138
|
+
data: {
|
|
9139
|
+
description: string;
|
|
9140
|
+
};
|
|
9141
|
+
projectId: string;
|
|
9243
9142
|
headers?: {
|
|
9244
9143
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9245
9144
|
"x-access-token"?: string | undefined;
|
|
9246
9145
|
} | undefined;
|
|
9247
9146
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9248
|
-
|
|
9249
|
-
|
|
9250
|
-
}
|
|
9147
|
+
data: {
|
|
9148
|
+
description: string;
|
|
9149
|
+
};
|
|
9251
9150
|
} & {
|
|
9252
9151
|
pathParameters: {
|
|
9253
|
-
|
|
9152
|
+
projectId: string;
|
|
9254
9153
|
};
|
|
9154
|
+
} & {
|
|
9155
|
+
headers?: Partial<{
|
|
9156
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9157
|
+
}> | undefined;
|
|
9255
9158
|
} & {
|
|
9256
9159
|
headers: {
|
|
9257
9160
|
"x-access-token"?: string | undefined;
|
|
9258
9161
|
} & Partial<{
|
|
9259
9162
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9260
9163
|
}>;
|
|
9261
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9262
|
-
avatarRef?: string | undefined;
|
|
9263
|
-
email?: string | undefined;
|
|
9264
|
-
employeeInformation?: {
|
|
9265
|
-
department: string;
|
|
9266
|
-
} | undefined;
|
|
9267
|
-
person: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsPerson;
|
|
9268
|
-
phoneNumber?: string | undefined;
|
|
9269
|
-
registeredAt?: string | undefined;
|
|
9270
|
-
userId: string;
|
|
9271
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9272
|
-
[x: string]: unknown;
|
|
9273
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9164
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
9274
9165
|
[x: string]: unknown;
|
|
9275
|
-
},
|
|
9166
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9276
9167
|
[x: string]: unknown;
|
|
9277
|
-
},
|
|
9278
|
-
/**
|
|
9279
|
-
|
|
9168
|
+
}, 403, "application/json">>>;
|
|
9169
|
+
/** Update a Servers's description. */
|
|
9170
|
+
updateServerDescription: (request: {
|
|
9280
9171
|
data: {
|
|
9281
|
-
|
|
9282
|
-
firstName: string;
|
|
9283
|
-
lastName: string;
|
|
9284
|
-
title?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation | undefined;
|
|
9285
|
-
};
|
|
9172
|
+
description: string;
|
|
9286
9173
|
};
|
|
9287
|
-
|
|
9174
|
+
serverId: string;
|
|
9288
9175
|
headers?: {
|
|
9289
9176
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9290
9177
|
"x-access-token"?: string | undefined;
|
|
9291
9178
|
} | undefined;
|
|
9292
9179
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9293
9180
|
data: {
|
|
9294
|
-
|
|
9181
|
+
description: string;
|
|
9295
9182
|
};
|
|
9296
9183
|
} & {
|
|
9297
9184
|
pathParameters: {
|
|
9298
|
-
|
|
9185
|
+
serverId: string;
|
|
9299
9186
|
};
|
|
9300
9187
|
} & {
|
|
9301
9188
|
headers?: Partial<{
|
|
@@ -9307,64 +9194,82 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9307
9194
|
} & Partial<{
|
|
9308
9195
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9309
9196
|
}>;
|
|
9310
|
-
}, import("@mittwald/api-client-commons").Response<{},
|
|
9197
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
9311
9198
|
[x: string]: unknown;
|
|
9312
|
-
}, 400, "application/json"
|
|
9313
|
-
|
|
9314
|
-
|
|
9199
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9200
|
+
[x: string]: unknown;
|
|
9201
|
+
}, 403, "application/json">>>;
|
|
9202
|
+
};
|
|
9203
|
+
/** The filesystem API allows you to directly access the filesystem of your project. */
|
|
9204
|
+
readonly projectFileSystem: {
|
|
9205
|
+
/** List directories belonging to a Project. */
|
|
9206
|
+
getDirectories: (request: {
|
|
9207
|
+
projectId: string;
|
|
9315
9208
|
headers?: {
|
|
9316
9209
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9317
9210
|
"x-access-token"?: string | undefined;
|
|
9318
9211
|
} | undefined;
|
|
9319
|
-
|
|
9212
|
+
queryParameters?: {
|
|
9213
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9214
|
+
directory?: string | undefined;
|
|
9215
|
+
name?: string | undefined;
|
|
9216
|
+
max_depth?: number | undefined;
|
|
9217
|
+
type?: string[] | undefined;
|
|
9218
|
+
executable?: boolean | undefined;
|
|
9219
|
+
hidden?: boolean | undefined;
|
|
9220
|
+
} | undefined;
|
|
9221
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9320
9222
|
headers?: Partial<{
|
|
9321
9223
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9322
9224
|
}> | undefined;
|
|
9323
9225
|
} & {
|
|
9324
|
-
|
|
9325
|
-
|
|
9226
|
+
pathParameters: {
|
|
9227
|
+
projectId: string;
|
|
9228
|
+
};
|
|
9229
|
+
} & {
|
|
9230
|
+
queryParameters: {
|
|
9231
|
+
directory?: string | undefined;
|
|
9232
|
+
name?: string | undefined;
|
|
9233
|
+
max_depth?: number | undefined;
|
|
9234
|
+
type?: string[] | undefined;
|
|
9235
|
+
executable?: boolean | undefined;
|
|
9236
|
+
hidden?: boolean | undefined;
|
|
9326
9237
|
} & Partial<{
|
|
9327
9238
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9328
9239
|
}>;
|
|
9329
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9330
|
-
type: "ValidationError";
|
|
9331
|
-
message?: string | undefined;
|
|
9332
|
-
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
9333
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9334
|
-
barcode: string;
|
|
9335
|
-
url: string;
|
|
9336
|
-
}, 200, "application/json">>>;
|
|
9337
|
-
/** Initialize password reset process. */
|
|
9338
|
-
initPasswordReset: (request: {
|
|
9339
|
-
data: {
|
|
9340
|
-
email: string;
|
|
9341
|
-
};
|
|
9342
|
-
headers?: {
|
|
9343
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9344
|
-
} | undefined;
|
|
9345
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9346
|
-
data: {
|
|
9347
|
-
email: string;
|
|
9348
|
-
};
|
|
9349
9240
|
} & {
|
|
9350
|
-
headers
|
|
9241
|
+
headers: {
|
|
9242
|
+
"x-access-token"?: string | undefined;
|
|
9243
|
+
} & Partial<{
|
|
9351
9244
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9352
|
-
}
|
|
9245
|
+
}>;
|
|
9353
9246
|
}, import("@mittwald/api-client-commons").Response<{
|
|
9354
|
-
|
|
9355
|
-
|
|
9356
|
-
|
|
9357
|
-
|
|
9358
|
-
|
|
9359
|
-
|
|
9360
|
-
|
|
9247
|
+
absolutePath: string;
|
|
9248
|
+
isDirectory?: boolean | undefined;
|
|
9249
|
+
isExecutable?: boolean | undefined;
|
|
9250
|
+
isFile?: boolean | undefined;
|
|
9251
|
+
isSymlink?: boolean | undefined;
|
|
9252
|
+
items?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectFilesystemDirectoryListing[] | undefined;
|
|
9253
|
+
name: string;
|
|
9254
|
+
size: number;
|
|
9255
|
+
target?: string | undefined;
|
|
9256
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9257
|
+
[x: string]: unknown;
|
|
9258
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9259
|
+
[x: string]: unknown;
|
|
9260
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9261
|
+
[x: string]: unknown;
|
|
9262
|
+
}, 503, "application/json">>>;
|
|
9263
|
+
/** Get a Project directory filesystem usage. */
|
|
9264
|
+
getDiskUsage: (request: {
|
|
9265
|
+
projectId: string;
|
|
9361
9266
|
headers?: {
|
|
9362
9267
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9363
9268
|
"x-access-token"?: string | undefined;
|
|
9364
9269
|
} | undefined;
|
|
9365
9270
|
queryParameters?: {
|
|
9366
9271
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9367
|
-
|
|
9272
|
+
directory?: string | undefined;
|
|
9368
9273
|
} | undefined;
|
|
9369
9274
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9370
9275
|
headers?: Partial<{
|
|
@@ -9372,11 +9277,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9372
9277
|
}> | undefined;
|
|
9373
9278
|
} & {
|
|
9374
9279
|
pathParameters: {
|
|
9375
|
-
|
|
9280
|
+
projectId: string;
|
|
9376
9281
|
};
|
|
9377
9282
|
} & {
|
|
9378
9283
|
queryParameters: {
|
|
9379
|
-
|
|
9284
|
+
directory?: string | undefined;
|
|
9380
9285
|
} & Partial<{
|
|
9381
9286
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9382
9287
|
}>;
|
|
@@ -9386,138 +9291,323 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9386
9291
|
} & Partial<{
|
|
9387
9292
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9388
9293
|
}>;
|
|
9389
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
9390
|
-
|
|
9391
|
-
|
|
9392
|
-
|
|
9393
|
-
|
|
9394
|
-
|
|
9395
|
-
|
|
9396
|
-
|
|
9294
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
9295
|
+
path?: string | undefined;
|
|
9296
|
+
totalBytes?: number | undefined;
|
|
9297
|
+
usedBytes?: number | undefined;
|
|
9298
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9299
|
+
[x: string]: unknown;
|
|
9300
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9301
|
+
[x: string]: unknown;
|
|
9302
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9303
|
+
[x: string]: unknown;
|
|
9304
|
+
}, 503, "application/json">>>;
|
|
9305
|
+
/** Get a Project file's content. */
|
|
9306
|
+
getFileContent: (request: {
|
|
9307
|
+
projectId: string;
|
|
9308
|
+
headers?: {
|
|
9309
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9310
|
+
"x-access-token"?: string | undefined;
|
|
9311
|
+
} | undefined;
|
|
9312
|
+
queryParameters?: {
|
|
9313
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9314
|
+
file?: string | undefined;
|
|
9315
|
+
inline?: boolean | undefined;
|
|
9316
|
+
} | undefined;
|
|
9317
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9397
9318
|
headers?: Partial<{
|
|
9398
9319
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9399
9320
|
}> | undefined;
|
|
9321
|
+
} & {
|
|
9322
|
+
pathParameters: {
|
|
9323
|
+
projectId: string;
|
|
9324
|
+
};
|
|
9325
|
+
} & {
|
|
9326
|
+
queryParameters: {
|
|
9327
|
+
file?: string | undefined;
|
|
9328
|
+
inline?: boolean | undefined;
|
|
9329
|
+
} & Partial<{
|
|
9330
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9331
|
+
}>;
|
|
9400
9332
|
} & {
|
|
9401
9333
|
headers: {
|
|
9402
9334
|
"x-access-token"?: string | undefined;
|
|
9403
9335
|
} & Partial<{
|
|
9404
9336
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9405
9337
|
}>;
|
|
9406
|
-
}, import("@mittwald/api-client-commons").Response<
|
|
9407
|
-
|
|
9408
|
-
|
|
9338
|
+
}, import("@mittwald/api-client-commons").Response<string, 200, "text/plain"> | import("@mittwald/api-client-commons").Response<{
|
|
9339
|
+
[x: string]: unknown;
|
|
9340
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9341
|
+
[x: string]: unknown;
|
|
9342
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9343
|
+
[x: string]: unknown;
|
|
9344
|
+
}, 503, "application/json">>>;
|
|
9345
|
+
/** Get a Project's file/filesystem authorization token. */
|
|
9346
|
+
getJwt: (request: {
|
|
9347
|
+
projectId: string;
|
|
9409
9348
|
headers?: {
|
|
9410
9349
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9411
9350
|
"x-access-token"?: string | undefined;
|
|
9412
9351
|
} | undefined;
|
|
9413
|
-
}
|
|
9352
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9414
9353
|
headers?: Partial<{
|
|
9415
9354
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9416
9355
|
}> | undefined;
|
|
9356
|
+
} & {
|
|
9357
|
+
pathParameters: {
|
|
9358
|
+
projectId: string;
|
|
9359
|
+
};
|
|
9417
9360
|
} & {
|
|
9418
9361
|
headers: {
|
|
9419
9362
|
"x-access-token"?: string | undefined;
|
|
9420
9363
|
} & Partial<{
|
|
9421
9364
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9422
9365
|
}>;
|
|
9423
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9424
|
-
|
|
9425
|
-
|
|
9366
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
9367
|
+
jwt: string;
|
|
9368
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9369
|
+
[x: string]: unknown;
|
|
9370
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9371
|
+
[x: string]: unknown;
|
|
9372
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9373
|
+
[x: string]: unknown;
|
|
9374
|
+
}, 503, "application/json">>>;
|
|
9375
|
+
/** Get a Project file's information. */
|
|
9376
|
+
listFiles: (request: {
|
|
9377
|
+
projectId: string;
|
|
9426
9378
|
headers?: {
|
|
9427
9379
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9428
9380
|
"x-access-token"?: string | undefined;
|
|
9429
9381
|
} | undefined;
|
|
9430
|
-
|
|
9382
|
+
queryParameters?: {
|
|
9383
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9384
|
+
file?: string | undefined;
|
|
9385
|
+
} | undefined;
|
|
9386
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9431
9387
|
headers?: Partial<{
|
|
9432
9388
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9433
9389
|
}> | undefined;
|
|
9390
|
+
} & {
|
|
9391
|
+
pathParameters: {
|
|
9392
|
+
projectId: string;
|
|
9393
|
+
};
|
|
9394
|
+
} & {
|
|
9395
|
+
queryParameters: {
|
|
9396
|
+
file?: string | undefined;
|
|
9397
|
+
} & Partial<{
|
|
9398
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9399
|
+
}>;
|
|
9434
9400
|
} & {
|
|
9435
9401
|
headers: {
|
|
9436
9402
|
"x-access-token"?: string | undefined;
|
|
9437
9403
|
} & Partial<{
|
|
9438
9404
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9439
9405
|
}>;
|
|
9440
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9441
|
-
|
|
9442
|
-
|
|
9443
|
-
|
|
9444
|
-
|
|
9445
|
-
|
|
9446
|
-
|
|
9406
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
9407
|
+
absolutePath: string;
|
|
9408
|
+
isDirectory?: boolean | undefined;
|
|
9409
|
+
isExecutable?: boolean | undefined;
|
|
9410
|
+
isFile?: boolean | undefined;
|
|
9411
|
+
isSymlink?: boolean | undefined;
|
|
9412
|
+
items?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectFilesystemDirectoryListing[] | undefined;
|
|
9413
|
+
name: string;
|
|
9414
|
+
size: number;
|
|
9415
|
+
target?: string | undefined;
|
|
9416
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9417
|
+
[x: string]: unknown;
|
|
9418
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9419
|
+
[x: string]: unknown;
|
|
9420
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9421
|
+
[x: string]: unknown;
|
|
9422
|
+
}, 503, "application/json">>>;
|
|
9423
|
+
};
|
|
9424
|
+
/** The relocation API allows you to manage your relocations. */
|
|
9425
|
+
readonly relocation: {
|
|
9426
|
+
/** Register a tariff change for a legacy tariff. */
|
|
9427
|
+
createLegacyTariffChange: (request: {
|
|
9447
9428
|
data: {
|
|
9448
|
-
|
|
9449
|
-
|
|
9450
|
-
|
|
9429
|
+
pAccount: string;
|
|
9430
|
+
targetTariff: string;
|
|
9431
|
+
};
|
|
9432
|
+
headers?: {
|
|
9433
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9434
|
+
} | undefined;
|
|
9435
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9436
|
+
data: {
|
|
9437
|
+
pAccount: string;
|
|
9438
|
+
targetTariff: string;
|
|
9439
|
+
};
|
|
9440
|
+
} & {
|
|
9441
|
+
headers?: Partial<{
|
|
9442
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9443
|
+
}> | undefined;
|
|
9444
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
9445
|
+
messageId: string;
|
|
9446
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9447
|
+
[x: string]: unknown;
|
|
9448
|
+
}, 403, "application/json">>>;
|
|
9449
|
+
/** Relocate an external Project to mittwald. */
|
|
9450
|
+
createRelocation: (request: {
|
|
9451
|
+
data: {
|
|
9452
|
+
allowPasswordChange: boolean;
|
|
9453
|
+
contact: {
|
|
9454
|
+
email: string;
|
|
9451
9455
|
firstName: string;
|
|
9452
9456
|
lastName: string;
|
|
9453
|
-
|
|
9457
|
+
phoneNumber?: string | undefined;
|
|
9454
9458
|
};
|
|
9459
|
+
provider: {
|
|
9460
|
+
loginUrl: string;
|
|
9461
|
+
name: string;
|
|
9462
|
+
password: string;
|
|
9463
|
+
sourceAccount: string;
|
|
9464
|
+
userName: string;
|
|
9465
|
+
};
|
|
9466
|
+
target: {
|
|
9467
|
+
organisation: string;
|
|
9468
|
+
product: string;
|
|
9469
|
+
projectName: string;
|
|
9470
|
+
system: "kc" | "mstudio";
|
|
9471
|
+
};
|
|
9472
|
+
allDomains?: boolean | undefined;
|
|
9473
|
+
domains?: import("./types.js").MittwaldAPIV2.Components.Schemas.DirectusDomain[] | undefined;
|
|
9474
|
+
notes?: string | undefined;
|
|
9455
9475
|
};
|
|
9456
9476
|
headers?: {
|
|
9457
9477
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9458
9478
|
} | undefined;
|
|
9459
9479
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9460
9480
|
data: {
|
|
9461
|
-
|
|
9462
|
-
|
|
9463
|
-
|
|
9481
|
+
allDomains?: boolean | undefined;
|
|
9482
|
+
allowPasswordChange: boolean;
|
|
9483
|
+
contact: {
|
|
9484
|
+
email: string;
|
|
9485
|
+
firstName: string;
|
|
9486
|
+
lastName: string;
|
|
9487
|
+
phoneNumber?: string | undefined;
|
|
9488
|
+
};
|
|
9489
|
+
domains?: import("./types.js").MittwaldAPIV2.Components.Schemas.DirectusDomain[] | undefined;
|
|
9490
|
+
notes?: string | undefined;
|
|
9491
|
+
provider: {
|
|
9492
|
+
loginUrl: string;
|
|
9493
|
+
name: string;
|
|
9494
|
+
password: string;
|
|
9495
|
+
sourceAccount: string;
|
|
9496
|
+
userName: string;
|
|
9497
|
+
};
|
|
9498
|
+
target: {
|
|
9499
|
+
organisation: string;
|
|
9500
|
+
product: string;
|
|
9501
|
+
projectName: string;
|
|
9502
|
+
system: "kc" | "mstudio";
|
|
9503
|
+
};
|
|
9464
9504
|
};
|
|
9465
9505
|
} & {
|
|
9466
9506
|
headers?: Partial<{
|
|
9467
9507
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9468
9508
|
}> | undefined;
|
|
9469
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9470
|
-
|
|
9471
|
-
|
|
9472
|
-
|
|
9473
|
-
|
|
9474
|
-
|
|
9475
|
-
|
|
9476
|
-
|
|
9477
|
-
|
|
9478
|
-
userId: string;
|
|
9509
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
9510
|
+
[x: string]: unknown;
|
|
9511
|
+
}, 400, "application/json">>>;
|
|
9512
|
+
};
|
|
9513
|
+
/** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
|
|
9514
|
+
readonly sshsftpUser: {
|
|
9515
|
+
/** Get all SFTPUsers for a Project. */
|
|
9516
|
+
sftpUserListSftpUsers: (request: {
|
|
9517
|
+
projectId: string;
|
|
9479
9518
|
headers?: {
|
|
9480
9519
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9481
9520
|
"x-access-token"?: string | undefined;
|
|
9482
9521
|
} | undefined;
|
|
9522
|
+
queryParameters?: {
|
|
9523
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9524
|
+
limit?: number | undefined;
|
|
9525
|
+
skip?: number | undefined;
|
|
9526
|
+
} | undefined;
|
|
9483
9527
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9484
9528
|
headers?: Partial<{
|
|
9485
9529
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9486
9530
|
}> | undefined;
|
|
9487
9531
|
} & {
|
|
9488
9532
|
pathParameters: {
|
|
9489
|
-
|
|
9533
|
+
projectId: string;
|
|
9490
9534
|
};
|
|
9535
|
+
} & {
|
|
9536
|
+
queryParameters: {
|
|
9537
|
+
limit?: number | undefined;
|
|
9538
|
+
skip?: number | undefined;
|
|
9539
|
+
} & Partial<{
|
|
9540
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9541
|
+
}>;
|
|
9491
9542
|
} & {
|
|
9492
9543
|
headers: {
|
|
9493
9544
|
"x-access-token"?: string | undefined;
|
|
9494
9545
|
} & Partial<{
|
|
9495
9546
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9496
9547
|
}>;
|
|
9497
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9498
|
-
|
|
9499
|
-
|
|
9500
|
-
|
|
9501
|
-
|
|
9502
|
-
|
|
9503
|
-
|
|
9504
|
-
|
|
9505
|
-
|
|
9506
|
-
|
|
9507
|
-
|
|
9508
|
-
|
|
9509
|
-
|
|
9510
|
-
|
|
9511
|
-
|
|
9512
|
-
} | undefined;
|
|
9513
|
-
} | undefined;
|
|
9548
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserSftpUser[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9549
|
+
[x: string]: unknown;
|
|
9550
|
+
}, 404, "application/json">>>;
|
|
9551
|
+
/** Create an SFTPUser for a Project. */
|
|
9552
|
+
sftpUserCreateSftpUser: (request: {
|
|
9553
|
+
data: {
|
|
9554
|
+
authentication: {
|
|
9555
|
+
password: string;
|
|
9556
|
+
} | {
|
|
9557
|
+
publicKeys: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[];
|
|
9558
|
+
};
|
|
9559
|
+
description: string;
|
|
9560
|
+
directories: [string, ...string[]];
|
|
9561
|
+
accessLevel?: "read" | "full" | undefined;
|
|
9562
|
+
expiresAt?: string | undefined;
|
|
9514
9563
|
};
|
|
9515
|
-
|
|
9564
|
+
projectId: string;
|
|
9565
|
+
headers?: {
|
|
9566
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9567
|
+
"x-access-token"?: string | undefined;
|
|
9568
|
+
} | undefined;
|
|
9569
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9570
|
+
data: {
|
|
9571
|
+
accessLevel?: "read" | "full" | undefined;
|
|
9572
|
+
authentication: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserAuthentication;
|
|
9573
|
+
description: string;
|
|
9574
|
+
directories: [string, ...string[]];
|
|
9575
|
+
expiresAt?: string | undefined;
|
|
9576
|
+
};
|
|
9577
|
+
} & {
|
|
9578
|
+
pathParameters: {
|
|
9579
|
+
projectId: string;
|
|
9580
|
+
};
|
|
9581
|
+
} & {
|
|
9582
|
+
headers?: Partial<{
|
|
9583
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9584
|
+
}> | undefined;
|
|
9585
|
+
} & {
|
|
9586
|
+
headers: {
|
|
9587
|
+
"x-access-token"?: string | undefined;
|
|
9588
|
+
} & Partial<{
|
|
9589
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9590
|
+
}>;
|
|
9591
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
9592
|
+
accessLevel: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserAccessLevel;
|
|
9593
|
+
active?: boolean | undefined;
|
|
9594
|
+
authUpdatedAt: string;
|
|
9595
|
+
createdAt: string;
|
|
9596
|
+
description: string;
|
|
9597
|
+
directories?: string[] | undefined;
|
|
9598
|
+
expiresAt?: string | undefined;
|
|
9599
|
+
hasPassword: boolean;
|
|
9600
|
+
id: string;
|
|
9601
|
+
projectId: string;
|
|
9602
|
+
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
9603
|
+
updatedAt?: string | undefined;
|
|
9604
|
+
userName: string;
|
|
9605
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9516
9606
|
[x: string]: unknown;
|
|
9517
9607
|
}, 400, "application/json">>>;
|
|
9518
|
-
/**
|
|
9519
|
-
|
|
9520
|
-
|
|
9608
|
+
/** Get an SFTPUser. */
|
|
9609
|
+
sftpUserGetSftpUser: (request: {
|
|
9610
|
+
sftpUserId: string;
|
|
9521
9611
|
headers?: {
|
|
9522
9612
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9523
9613
|
"x-access-token"?: string | undefined;
|
|
@@ -9528,7 +9618,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9528
9618
|
}> | undefined;
|
|
9529
9619
|
} & {
|
|
9530
9620
|
pathParameters: {
|
|
9531
|
-
|
|
9621
|
+
sftpUserId: string;
|
|
9532
9622
|
};
|
|
9533
9623
|
} & {
|
|
9534
9624
|
headers: {
|
|
@@ -9536,51 +9626,112 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9536
9626
|
} & Partial<{
|
|
9537
9627
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9538
9628
|
}>;
|
|
9539
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9629
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
9630
|
+
accessLevel: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserAccessLevel;
|
|
9631
|
+
active?: boolean | undefined;
|
|
9632
|
+
authUpdatedAt: string;
|
|
9633
|
+
createdAt: string;
|
|
9634
|
+
description: string;
|
|
9635
|
+
directories?: string[] | undefined;
|
|
9636
|
+
expiresAt?: string | undefined;
|
|
9637
|
+
hasPassword: boolean;
|
|
9638
|
+
id: string;
|
|
9639
|
+
projectId: string;
|
|
9640
|
+
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
9641
|
+
updatedAt?: string | undefined;
|
|
9642
|
+
userName: string;
|
|
9643
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9540
9644
|
[x: string]: unknown;
|
|
9541
|
-
},
|
|
9542
|
-
/**
|
|
9543
|
-
|
|
9544
|
-
|
|
9545
|
-
|
|
9546
|
-
|
|
9645
|
+
}, 404, "application/json">>>;
|
|
9646
|
+
/** Delete an SFTPUser. */
|
|
9647
|
+
sftpUserDeleteSftpUser: (request: {
|
|
9648
|
+
sftpUserId: string;
|
|
9649
|
+
headers?: {
|
|
9650
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9651
|
+
"x-access-token"?: string | undefined;
|
|
9652
|
+
} | undefined;
|
|
9653
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9654
|
+
headers?: Partial<{
|
|
9655
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9656
|
+
}> | undefined;
|
|
9657
|
+
} & {
|
|
9658
|
+
pathParameters: {
|
|
9659
|
+
sftpUserId: string;
|
|
9547
9660
|
};
|
|
9661
|
+
} & {
|
|
9662
|
+
headers: {
|
|
9663
|
+
"x-access-token"?: string | undefined;
|
|
9664
|
+
} & Partial<{
|
|
9665
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9666
|
+
}>;
|
|
9667
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
9668
|
+
/** Update an SFTPUser. */
|
|
9669
|
+
sftpUserUpdateSftpUser: (request: {
|
|
9670
|
+
sftpUserId: string;
|
|
9671
|
+
data?: {
|
|
9672
|
+
accessLevel?: "read" | "full" | undefined;
|
|
9673
|
+
active?: boolean | undefined;
|
|
9674
|
+
description?: string | undefined;
|
|
9675
|
+
directories?: [string, ...string[]] | undefined;
|
|
9676
|
+
expiresAt?: string | undefined;
|
|
9677
|
+
password?: string | undefined;
|
|
9678
|
+
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
9679
|
+
} | undefined;
|
|
9548
9680
|
headers?: {
|
|
9549
9681
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9682
|
+
"x-access-token"?: string | undefined;
|
|
9550
9683
|
} | undefined;
|
|
9551
9684
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9552
9685
|
data: {
|
|
9553
|
-
|
|
9554
|
-
|
|
9686
|
+
accessLevel?: "read" | "full" | undefined;
|
|
9687
|
+
active?: boolean | undefined;
|
|
9688
|
+
description?: string | undefined;
|
|
9689
|
+
directories?: [string, ...string[]] | undefined;
|
|
9690
|
+
expiresAt?: string | undefined;
|
|
9691
|
+
password?: string | undefined;
|
|
9692
|
+
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
9693
|
+
};
|
|
9694
|
+
} & {
|
|
9695
|
+
pathParameters: {
|
|
9696
|
+
sftpUserId: string;
|
|
9555
9697
|
};
|
|
9556
9698
|
} & {
|
|
9557
9699
|
headers?: Partial<{
|
|
9558
9700
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9559
9701
|
}> | undefined;
|
|
9702
|
+
} & {
|
|
9703
|
+
headers: {
|
|
9704
|
+
"x-access-token"?: string | undefined;
|
|
9705
|
+
} & Partial<{
|
|
9706
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9707
|
+
}>;
|
|
9560
9708
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
9561
|
-
type: "ValidationError";
|
|
9562
|
-
message?: string | undefined;
|
|
9563
|
-
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
9564
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9565
9709
|
[x: string]: unknown;
|
|
9566
|
-
},
|
|
9567
|
-
/**
|
|
9568
|
-
|
|
9710
|
+
}, 400, "application/json">>>;
|
|
9711
|
+
/** Get all SSHUsers for a Project. */
|
|
9712
|
+
sshUserListSshUsers: (request: {
|
|
9713
|
+
projectId: string;
|
|
9569
9714
|
headers?: {
|
|
9570
9715
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9571
9716
|
"x-access-token"?: string | undefined;
|
|
9572
9717
|
} | undefined;
|
|
9573
9718
|
queryParameters?: {
|
|
9574
9719
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9575
|
-
|
|
9720
|
+
limit?: number | undefined;
|
|
9721
|
+
skip?: number | undefined;
|
|
9576
9722
|
} | undefined;
|
|
9577
|
-
}
|
|
9723
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9578
9724
|
headers?: Partial<{
|
|
9579
9725
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9580
9726
|
}> | undefined;
|
|
9727
|
+
} & {
|
|
9728
|
+
pathParameters: {
|
|
9729
|
+
projectId: string;
|
|
9730
|
+
};
|
|
9581
9731
|
} & {
|
|
9582
9732
|
queryParameters: {
|
|
9583
|
-
|
|
9733
|
+
limit?: number | undefined;
|
|
9734
|
+
skip?: number | undefined;
|
|
9584
9735
|
} & Partial<{
|
|
9585
9736
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9586
9737
|
}>;
|
|
@@ -9590,24 +9741,34 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9590
9741
|
} & Partial<{
|
|
9591
9742
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9592
9743
|
}>;
|
|
9593
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9594
|
-
|
|
9595
|
-
|
|
9596
|
-
|
|
9597
|
-
|
|
9598
|
-
verifyEmail: (request: {
|
|
9744
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserSshUser[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9745
|
+
[x: string]: unknown;
|
|
9746
|
+
}, 404, "application/json">>>;
|
|
9747
|
+
/** Create an SSHUser for a Project. */
|
|
9748
|
+
sshUserCreateSshUser: (request: {
|
|
9599
9749
|
data: {
|
|
9600
|
-
|
|
9601
|
-
|
|
9750
|
+
authentication: {
|
|
9751
|
+
password: string;
|
|
9752
|
+
} | {
|
|
9753
|
+
publicKeys: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[];
|
|
9754
|
+
};
|
|
9755
|
+
description: string;
|
|
9756
|
+
expiresAt?: string | undefined;
|
|
9602
9757
|
};
|
|
9758
|
+
projectId: string;
|
|
9603
9759
|
headers?: {
|
|
9604
9760
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9605
9761
|
"x-access-token"?: string | undefined;
|
|
9606
9762
|
} | undefined;
|
|
9607
9763
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9608
9764
|
data: {
|
|
9609
|
-
|
|
9610
|
-
|
|
9765
|
+
authentication: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserAuthentication;
|
|
9766
|
+
description: string;
|
|
9767
|
+
expiresAt?: string | undefined;
|
|
9768
|
+
};
|
|
9769
|
+
} & {
|
|
9770
|
+
pathParameters: {
|
|
9771
|
+
projectId: string;
|
|
9611
9772
|
};
|
|
9612
9773
|
} & {
|
|
9613
9774
|
headers?: Partial<{
|
|
@@ -9619,77 +9780,118 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9619
9780
|
} & Partial<{
|
|
9620
9781
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9621
9782
|
}>;
|
|
9622
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9623
|
-
|
|
9624
|
-
|
|
9625
|
-
|
|
9626
|
-
|
|
9783
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
9784
|
+
active?: boolean | undefined;
|
|
9785
|
+
authUpdatedAt: string;
|
|
9786
|
+
createdAt: string;
|
|
9787
|
+
description: string;
|
|
9788
|
+
expiresAt?: string | undefined;
|
|
9789
|
+
hasPassword: boolean;
|
|
9790
|
+
id: string;
|
|
9791
|
+
projectId: string;
|
|
9792
|
+
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
9793
|
+
updatedAt?: string | undefined;
|
|
9794
|
+
userName: string;
|
|
9795
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9627
9796
|
[x: string]: unknown;
|
|
9628
|
-
},
|
|
9629
|
-
/**
|
|
9630
|
-
|
|
9631
|
-
|
|
9632
|
-
code: string;
|
|
9633
|
-
phoneNumber: string;
|
|
9634
|
-
};
|
|
9635
|
-
userId: string;
|
|
9797
|
+
}, 400, "application/json">>>;
|
|
9798
|
+
/** Get an SSHUser. */
|
|
9799
|
+
sshUserGetSshUser: (request: {
|
|
9800
|
+
sshUserId: string;
|
|
9636
9801
|
headers?: {
|
|
9637
9802
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9638
9803
|
"x-access-token"?: string | undefined;
|
|
9639
9804
|
} | undefined;
|
|
9640
9805
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9641
|
-
|
|
9642
|
-
|
|
9643
|
-
|
|
9644
|
-
};
|
|
9806
|
+
headers?: Partial<{
|
|
9807
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9808
|
+
}> | undefined;
|
|
9645
9809
|
} & {
|
|
9646
9810
|
pathParameters: {
|
|
9647
|
-
|
|
9811
|
+
sshUserId: string;
|
|
9648
9812
|
};
|
|
9649
9813
|
} & {
|
|
9814
|
+
headers: {
|
|
9815
|
+
"x-access-token"?: string | undefined;
|
|
9816
|
+
} & Partial<{
|
|
9817
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9818
|
+
}>;
|
|
9819
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
9820
|
+
active?: boolean | undefined;
|
|
9821
|
+
authUpdatedAt: string;
|
|
9822
|
+
createdAt: string;
|
|
9823
|
+
description: string;
|
|
9824
|
+
expiresAt?: string | undefined;
|
|
9825
|
+
hasPassword: boolean;
|
|
9826
|
+
id: string;
|
|
9827
|
+
projectId: string;
|
|
9828
|
+
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
9829
|
+
updatedAt?: string | undefined;
|
|
9830
|
+
userName: string;
|
|
9831
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9832
|
+
[x: string]: unknown;
|
|
9833
|
+
}, 404, "application/json">>>;
|
|
9834
|
+
/** Delete an SSHUser. */
|
|
9835
|
+
sshUserDeleteSshUser: (request: {
|
|
9836
|
+
sshUserId: string;
|
|
9837
|
+
headers?: {
|
|
9838
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9839
|
+
"x-access-token"?: string | undefined;
|
|
9840
|
+
} | undefined;
|
|
9841
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9650
9842
|
headers?: Partial<{
|
|
9651
9843
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9652
9844
|
}> | undefined;
|
|
9845
|
+
} & {
|
|
9846
|
+
pathParameters: {
|
|
9847
|
+
sshUserId: string;
|
|
9848
|
+
};
|
|
9653
9849
|
} & {
|
|
9654
9850
|
headers: {
|
|
9655
9851
|
"x-access-token"?: string | undefined;
|
|
9656
9852
|
} & Partial<{
|
|
9657
9853
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9658
9854
|
}>;
|
|
9659
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"
|
|
9660
|
-
|
|
9661
|
-
|
|
9662
|
-
|
|
9663
|
-
|
|
9664
|
-
|
|
9665
|
-
|
|
9666
|
-
|
|
9667
|
-
|
|
9668
|
-
|
|
9669
|
-
|
|
9670
|
-
token: string;
|
|
9671
|
-
userId: string;
|
|
9672
|
-
};
|
|
9855
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
9856
|
+
/** Update an SSHUser. */
|
|
9857
|
+
sshUserUpdateSshUser: (request: {
|
|
9858
|
+
sshUserId: string;
|
|
9859
|
+
data?: {
|
|
9860
|
+
active?: boolean | undefined;
|
|
9861
|
+
description?: string | undefined;
|
|
9862
|
+
expiresAt?: string | undefined;
|
|
9863
|
+
password?: string | undefined;
|
|
9864
|
+
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
9865
|
+
} | undefined;
|
|
9673
9866
|
headers?: {
|
|
9674
9867
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9868
|
+
"x-access-token"?: string | undefined;
|
|
9675
9869
|
} | undefined;
|
|
9676
9870
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9677
9871
|
data: {
|
|
9678
|
-
|
|
9679
|
-
|
|
9680
|
-
|
|
9872
|
+
active?: boolean | undefined;
|
|
9873
|
+
description?: string | undefined;
|
|
9874
|
+
expiresAt?: string | undefined;
|
|
9875
|
+
password?: string | undefined;
|
|
9876
|
+
publicKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserPublicKey[] | undefined;
|
|
9877
|
+
};
|
|
9878
|
+
} & {
|
|
9879
|
+
pathParameters: {
|
|
9880
|
+
sshUserId: string;
|
|
9681
9881
|
};
|
|
9682
9882
|
} & {
|
|
9683
9883
|
headers?: Partial<{
|
|
9684
9884
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9685
9885
|
}> | undefined;
|
|
9686
|
-
}
|
|
9687
|
-
|
|
9688
|
-
|
|
9689
|
-
|
|
9690
|
-
|
|
9886
|
+
} & {
|
|
9887
|
+
headers: {
|
|
9888
|
+
"x-access-token"?: string | undefined;
|
|
9889
|
+
} & Partial<{
|
|
9890
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9891
|
+
}>;
|
|
9892
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
9691
9893
|
[x: string]: unknown;
|
|
9692
|
-
},
|
|
9894
|
+
}, 400, "application/json">>>;
|
|
9693
9895
|
};
|
|
9694
9896
|
}
|
|
9695
9897
|
export default MittwaldAPIV2Client;
|