@mittwald/api-client 2.0.22 → 3.0.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/README.md +90 -0
- package/dist/cjs/generated/v2/client.d.ts +250 -717
- package/dist/cjs/generated/v2/types.d.ts +1 -1
- package/dist/cjs/v2.d.ts +1 -0
- package/dist/cjs/v2.js +13 -6
- package/dist/esm/generated/v2/client.d.ts +250 -717
- package/dist/esm/generated/v2/types.d.ts +1 -1
- package/dist/esm/v2.d.ts +1 -0
- package/dist/esm/v2.js +14 -7
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +3 -2
|
@@ -4,10 +4,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4
4
|
readonly app: {
|
|
5
5
|
/** execute a runtime concerning action on a specific `AppInstallation` */
|
|
6
6
|
executeAction: (request: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
action: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAction;
|
|
10
|
-
};
|
|
7
|
+
appInstallationId: string;
|
|
8
|
+
action: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAction;
|
|
11
9
|
headers?: {
|
|
12
10
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
13
11
|
} | undefined;
|
|
@@ -25,9 +23,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25
23
|
}, 404, "application/json">>>;
|
|
26
24
|
/** get a specific `App` */
|
|
27
25
|
getApp: (request: {
|
|
28
|
-
|
|
29
|
-
appId: string;
|
|
30
|
-
};
|
|
26
|
+
appId: string;
|
|
31
27
|
headers?: {
|
|
32
28
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
33
29
|
"x-access-token"?: string | undefined;
|
|
@@ -56,9 +52,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
56
52
|
}, 404, "application/json">>>;
|
|
57
53
|
/** get a specific `AppInstallation` */
|
|
58
54
|
getAppinstallation: (request: {
|
|
59
|
-
|
|
60
|
-
appInstallationId: string;
|
|
61
|
-
};
|
|
55
|
+
appInstallationId: string;
|
|
62
56
|
headers?: {
|
|
63
57
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
64
58
|
"x-access-token"?: string | undefined;
|
|
@@ -98,9 +92,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
98
92
|
}, 404, "application/json">>>;
|
|
99
93
|
/** start uninstallation process for a specific `AppInstallation` */
|
|
100
94
|
uninstallAppinstallation: (request: {
|
|
101
|
-
|
|
102
|
-
appInstallationId: string;
|
|
103
|
-
};
|
|
95
|
+
appInstallationId: string;
|
|
104
96
|
headers?: {
|
|
105
97
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
106
98
|
"x-access-token"?: string | undefined;
|
|
@@ -124,9 +116,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
124
116
|
}, 404, "application/json">>>;
|
|
125
117
|
/** patch desired properties of a specific `AppInstallation` */
|
|
126
118
|
patchAppinstallation: (request: {
|
|
127
|
-
|
|
128
|
-
appInstallationId: string;
|
|
129
|
-
};
|
|
119
|
+
appInstallationId: string;
|
|
130
120
|
data?: {
|
|
131
121
|
appVersionId?: string | undefined;
|
|
132
122
|
customDocumentRoot?: string | undefined;
|
|
@@ -170,10 +160,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
170
160
|
}, 404, "application/json">>>;
|
|
171
161
|
/** get a specific `AppVersion` */
|
|
172
162
|
getAppversion: (request: {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
appVersionId: string;
|
|
176
|
-
};
|
|
163
|
+
appId: string;
|
|
164
|
+
appVersionId: string;
|
|
177
165
|
headers?: {
|
|
178
166
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
179
167
|
"x-access-token"?: string | undefined;
|
|
@@ -210,12 +198,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
210
198
|
}, 404, "application/json">>>;
|
|
211
199
|
/** get the missing requirements of an appInstallation for a specific target AppVersion */
|
|
212
200
|
getMissingDependenciesForAppinstallation: (request: {
|
|
213
|
-
pathParameters: {
|
|
214
|
-
appInstallationId: string;
|
|
215
|
-
};
|
|
216
201
|
queryParameters: {
|
|
217
202
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
218
203
|
};
|
|
204
|
+
appInstallationId: string;
|
|
219
205
|
headers?: {
|
|
220
206
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
221
207
|
"x-access-token"?: string | undefined;
|
|
@@ -248,9 +234,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
248
234
|
}, 404, "application/json">>>;
|
|
249
235
|
/** get a specific `SystemSoftware` */
|
|
250
236
|
getSystemsoftware: (request: {
|
|
251
|
-
|
|
252
|
-
systemSoftwareId: string;
|
|
253
|
-
};
|
|
237
|
+
systemSoftwareId: string;
|
|
254
238
|
headers?: {
|
|
255
239
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
256
240
|
"x-access-token"?: string | undefined;
|
|
@@ -278,10 +262,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
278
262
|
}, 404, "application/json">>>;
|
|
279
263
|
/** get a specific `SystemSoftwareVersion` */
|
|
280
264
|
getSystemsoftwareversion: (request: {
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
systemSoftwareVersionId: string;
|
|
284
|
-
};
|
|
265
|
+
systemSoftwareId: string;
|
|
266
|
+
systemSoftwareVersionId: string;
|
|
285
267
|
headers?: {
|
|
286
268
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
287
269
|
"x-access-token"?: string | undefined;
|
|
@@ -320,9 +302,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
320
302
|
[x: string]: string;
|
|
321
303
|
} | undefined;
|
|
322
304
|
};
|
|
323
|
-
|
|
324
|
-
appInstallationId: string;
|
|
325
|
-
};
|
|
305
|
+
appInstallationId: string;
|
|
326
306
|
headers?: {
|
|
327
307
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
328
308
|
"x-access-token"?: string | undefined;
|
|
@@ -354,9 +334,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
354
334
|
}, 404, "application/json">>>;
|
|
355
335
|
/** get all `AppInstallations` inside a specific `Project` */
|
|
356
336
|
listAppinstallations: (request: {
|
|
357
|
-
|
|
358
|
-
projectId: string;
|
|
359
|
-
};
|
|
337
|
+
projectId: string;
|
|
360
338
|
headers?: {
|
|
361
339
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
362
340
|
"x-access-token"?: string | undefined;
|
|
@@ -398,9 +376,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
398
376
|
updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
399
377
|
userInputs: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
|
|
400
378
|
};
|
|
401
|
-
|
|
402
|
-
projectId: string;
|
|
403
|
-
};
|
|
379
|
+
projectId: string;
|
|
404
380
|
headers?: {
|
|
405
381
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
406
382
|
} | undefined;
|
|
@@ -458,9 +434,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
458
434
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppApp[], 200, "application/json">>>;
|
|
459
435
|
/** get all `AppVersions` of a specific `App` */
|
|
460
436
|
listAppversions: (request: {
|
|
461
|
-
|
|
462
|
-
appId: string;
|
|
463
|
-
};
|
|
437
|
+
appId: string;
|
|
464
438
|
headers?: {
|
|
465
439
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
466
440
|
"x-access-token"?: string | undefined;
|
|
@@ -513,9 +487,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
513
487
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftware[], 200, "application/json">>>;
|
|
514
488
|
/** get all available `SystemSoftwareVersions` of a specific `SystemSoftware` */
|
|
515
489
|
listSystemsoftwareversions: (request: {
|
|
516
|
-
|
|
517
|
-
systemSoftwareId: string;
|
|
518
|
-
};
|
|
490
|
+
systemSoftwareId: string;
|
|
519
491
|
headers?: {
|
|
520
492
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
521
493
|
"x-access-token"?: string | undefined;
|
|
@@ -547,10 +519,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
547
519
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftwareVersion[], 200, "application/json">>>;
|
|
548
520
|
/** get all update candidates for a specific `AppVersion` */
|
|
549
521
|
listUpdateCandidatesForAppversion: (request: {
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
baseAppVersionId: string;
|
|
553
|
-
};
|
|
522
|
+
appId: string;
|
|
523
|
+
baseAppVersionId: string;
|
|
554
524
|
headers?: {
|
|
555
525
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
556
526
|
"x-access-token"?: string | undefined;
|
|
@@ -580,9 +550,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
580
550
|
databaseUserName?: string | undefined;
|
|
581
551
|
installationDirectory: string;
|
|
582
552
|
}[];
|
|
583
|
-
|
|
584
|
-
projectShortId: string;
|
|
585
|
-
};
|
|
553
|
+
projectShortId: string;
|
|
586
554
|
headers?: {
|
|
587
555
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
588
556
|
} | undefined;
|
|
@@ -610,9 +578,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
610
578
|
data: {
|
|
611
579
|
description: string;
|
|
612
580
|
};
|
|
613
|
-
|
|
614
|
-
id: string;
|
|
615
|
-
};
|
|
581
|
+
id: string;
|
|
616
582
|
headers?: {
|
|
617
583
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
618
584
|
} | undefined;
|
|
@@ -635,9 +601,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
635
601
|
}, 404, "application/json">>>;
|
|
636
602
|
/** get runtime status of a specific `AppInstallation` */
|
|
637
603
|
retrieveStatus: (request: {
|
|
638
|
-
|
|
639
|
-
appInstallationId: string;
|
|
640
|
-
};
|
|
604
|
+
appInstallationId: string;
|
|
641
605
|
headers?: {
|
|
642
606
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
643
607
|
} | undefined;
|
|
@@ -659,10 +623,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
659
623
|
}, 404, "application/json">>>;
|
|
660
624
|
/** create linkage between an `AppInstallation` and `DatabaseUsers` */
|
|
661
625
|
setDatabaseUsers: (request: {
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
databaseId: string;
|
|
665
|
-
};
|
|
626
|
+
appInstallationId: string;
|
|
627
|
+
databaseId: string;
|
|
666
628
|
data?: {
|
|
667
629
|
databaseUserIds: {
|
|
668
630
|
[x: string]: string;
|
|
@@ -698,10 +660,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
698
660
|
}, 404, "application/json">>>;
|
|
699
661
|
/** remove linkage between an `AppInstallation` and a `Database` */
|
|
700
662
|
unlinkDatabase: (request: {
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
databaseId: string;
|
|
704
|
-
};
|
|
663
|
+
appInstallationId: string;
|
|
664
|
+
databaseId: string;
|
|
705
665
|
headers?: {
|
|
706
666
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
707
667
|
"x-access-token"?: string | undefined;
|
|
@@ -729,9 +689,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
729
689
|
readonly article: {
|
|
730
690
|
/** Get an Article. */
|
|
731
691
|
getArticle: (request: {
|
|
732
|
-
|
|
733
|
-
articleId: string;
|
|
734
|
-
};
|
|
692
|
+
articleId: string;
|
|
735
693
|
headers?: {
|
|
736
694
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
737
695
|
} | undefined;
|
|
@@ -825,9 +783,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
825
783
|
format: "tar" | "zip";
|
|
826
784
|
password?: string | undefined;
|
|
827
785
|
};
|
|
828
|
-
|
|
829
|
-
projectBackupId: string;
|
|
830
|
-
};
|
|
786
|
+
projectBackupId: string;
|
|
831
787
|
headers?: {
|
|
832
788
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
833
789
|
"x-access-token"?: string | undefined;
|
|
@@ -860,9 +816,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
860
816
|
}, 404, "application/json">>>;
|
|
861
817
|
/** Delete a ProjectBackupExport. */
|
|
862
818
|
deleteProjectBackupExport: (request: {
|
|
863
|
-
|
|
864
|
-
projectBackupId: string;
|
|
865
|
-
};
|
|
819
|
+
projectBackupId: string;
|
|
866
820
|
headers?: {
|
|
867
821
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
868
822
|
"x-access-token"?: string | undefined;
|
|
@@ -888,9 +842,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
888
842
|
}, 404, "application/json">>>;
|
|
889
843
|
/** List BackupSchedules belonging to a Project. */
|
|
890
844
|
listProjectBackupSchedules: (request: {
|
|
891
|
-
|
|
892
|
-
projectId: string;
|
|
893
|
-
};
|
|
845
|
+
projectId: string;
|
|
894
846
|
headers?: {
|
|
895
847
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
896
848
|
"x-access-token"?: string | undefined;
|
|
@@ -917,9 +869,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
917
869
|
ttl: string;
|
|
918
870
|
description?: string | undefined;
|
|
919
871
|
};
|
|
920
|
-
|
|
921
|
-
projectId: string;
|
|
922
|
-
};
|
|
872
|
+
projectId: string;
|
|
923
873
|
headers?: {
|
|
924
874
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
925
875
|
"x-access-token"?: string | undefined;
|
|
@@ -960,9 +910,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
960
910
|
}, 404, "application/json">>>;
|
|
961
911
|
/** List Backups belonging to a Project. */
|
|
962
912
|
listProjectBackups: (request: {
|
|
963
|
-
|
|
964
|
-
projectId: string;
|
|
965
|
-
};
|
|
913
|
+
projectId: string;
|
|
966
914
|
headers?: {
|
|
967
915
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
968
916
|
"x-access-token"?: string | undefined;
|
|
@@ -988,9 +936,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
988
936
|
expirationTime: string;
|
|
989
937
|
description?: string | undefined;
|
|
990
938
|
};
|
|
991
|
-
|
|
992
|
-
projectId: string;
|
|
993
|
-
};
|
|
939
|
+
projectId: string;
|
|
994
940
|
headers?: {
|
|
995
941
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
996
942
|
"x-access-token"?: string | undefined;
|
|
@@ -1031,9 +977,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1031
977
|
}, 404, "application/json">>>;
|
|
1032
978
|
/** Get a ProjectBackupSchedule. */
|
|
1033
979
|
getProjectBackupSchedule: (request: {
|
|
1034
|
-
|
|
1035
|
-
projectBackupScheduleId: string;
|
|
1036
|
-
};
|
|
980
|
+
projectBackupScheduleId: string;
|
|
1037
981
|
headers?: {
|
|
1038
982
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1039
983
|
"x-access-token"?: string | undefined;
|
|
@@ -1068,9 +1012,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1068
1012
|
}, 404, "application/json">>>;
|
|
1069
1013
|
/** Delete a ProjectBackupSchedule. */
|
|
1070
1014
|
deleteProjectBackupSchedule: (request: {
|
|
1071
|
-
|
|
1072
|
-
projectBackupScheduleId: string;
|
|
1073
|
-
};
|
|
1015
|
+
projectBackupScheduleId: string;
|
|
1074
1016
|
headers?: {
|
|
1075
1017
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1076
1018
|
"x-access-token"?: string | undefined;
|
|
@@ -1096,9 +1038,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1096
1038
|
}, 404, "application/json">>>;
|
|
1097
1039
|
/** Update a ProjectBackupSchedule. */
|
|
1098
1040
|
updateProjectBackupSchedule: (request: {
|
|
1099
|
-
|
|
1100
|
-
projectBackupScheduleId: string;
|
|
1101
|
-
};
|
|
1041
|
+
projectBackupScheduleId: string;
|
|
1102
1042
|
data?: {
|
|
1103
1043
|
description?: string | undefined;
|
|
1104
1044
|
schedule?: string | undefined;
|
|
@@ -1137,9 +1077,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1137
1077
|
}, 412, "application/json">>>;
|
|
1138
1078
|
/** Get a ProjectBackup. */
|
|
1139
1079
|
getProjectBackup: (request: {
|
|
1140
|
-
|
|
1141
|
-
projectBackupId: string;
|
|
1142
|
-
};
|
|
1080
|
+
projectBackupId: string;
|
|
1143
1081
|
headers?: {
|
|
1144
1082
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1145
1083
|
"x-access-token"?: string | undefined;
|
|
@@ -1175,9 +1113,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1175
1113
|
}, 404, "application/json">>>;
|
|
1176
1114
|
/** Delete a ProjectBackup. */
|
|
1177
1115
|
deleteProjectBackup: (request: {
|
|
1178
|
-
|
|
1179
|
-
projectBackupId: string;
|
|
1180
|
-
};
|
|
1116
|
+
projectBackupId: string;
|
|
1181
1117
|
headers?: {
|
|
1182
1118
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1183
1119
|
"x-access-token"?: string | undefined;
|
|
@@ -1203,9 +1139,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1203
1139
|
}, 404, "application/json">>>;
|
|
1204
1140
|
/** Change the description of a ProjectBackup. */
|
|
1205
1141
|
updateProjectBackupDescription: (request: {
|
|
1206
|
-
|
|
1207
|
-
projectBackupId: string;
|
|
1208
|
-
};
|
|
1142
|
+
projectBackupId: string;
|
|
1209
1143
|
data?: {
|
|
1210
1144
|
description?: string | undefined;
|
|
1211
1145
|
} | undefined;
|
|
@@ -1243,10 +1177,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1243
1177
|
readonly contract: {
|
|
1244
1178
|
/** Schedule the Termination of a ContractItem. */
|
|
1245
1179
|
terminateContractItem: (request: {
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
contractItemId: string;
|
|
1249
|
-
};
|
|
1180
|
+
contractId: string;
|
|
1181
|
+
contractItemId: string;
|
|
1250
1182
|
data?: {
|
|
1251
1183
|
reason?: string | undefined;
|
|
1252
1184
|
terminationTargetDate?: string | undefined;
|
|
@@ -1287,10 +1219,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1287
1219
|
}, 404, "application/json">>>;
|
|
1288
1220
|
/** Cancel the Termination for the referred ContractItem. */
|
|
1289
1221
|
cancelContractItemTermination: (request: {
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
contractItemId: string;
|
|
1293
|
-
};
|
|
1222
|
+
contractId: string;
|
|
1223
|
+
contractItemId: string;
|
|
1294
1224
|
headers?: {
|
|
1295
1225
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1296
1226
|
"x-access-token"?: string | undefined;
|
|
@@ -1321,10 +1251,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1321
1251
|
}, 404, "application/json">>>;
|
|
1322
1252
|
/** Cancel the TariffChange for the referred ContractItem. */
|
|
1323
1253
|
cancelContractTariffChange: (request: {
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
contractItemId: string;
|
|
1327
|
-
};
|
|
1254
|
+
contractId: string;
|
|
1255
|
+
contractItemId: string;
|
|
1328
1256
|
headers?: {
|
|
1329
1257
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1330
1258
|
"x-access-token"?: string | undefined;
|
|
@@ -1355,9 +1283,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1355
1283
|
}, 404, "application/json">>>;
|
|
1356
1284
|
/** Schedule the Termination of a Contract. */
|
|
1357
1285
|
terminateContract: (request: {
|
|
1358
|
-
|
|
1359
|
-
contractId: string;
|
|
1360
|
-
};
|
|
1286
|
+
contractId: string;
|
|
1361
1287
|
data?: {
|
|
1362
1288
|
reason?: string | undefined;
|
|
1363
1289
|
terminationTargetDate?: string | undefined;
|
|
@@ -1397,9 +1323,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1397
1323
|
}, 404, "application/json">>>;
|
|
1398
1324
|
/** Cancel the Termination for the referred Contract. */
|
|
1399
1325
|
cancelContractTermination: (request: {
|
|
1400
|
-
|
|
1401
|
-
contractId: string;
|
|
1402
|
-
};
|
|
1326
|
+
contractId: string;
|
|
1403
1327
|
headers?: {
|
|
1404
1328
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1405
1329
|
"x-access-token"?: string | undefined;
|
|
@@ -1428,9 +1352,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1428
1352
|
}, 404, "application/json">>>;
|
|
1429
1353
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
1430
1354
|
getBaseItemOfContract: (request: {
|
|
1431
|
-
|
|
1432
|
-
contractId: string;
|
|
1433
|
-
};
|
|
1355
|
+
contractId: string;
|
|
1434
1356
|
headers?: {
|
|
1435
1357
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1436
1358
|
"x-access-token"?: string | undefined;
|
|
@@ -1478,9 +1400,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1478
1400
|
}, 404, "application/json">>>;
|
|
1479
1401
|
/** Return the Contract for the given Domain. */
|
|
1480
1402
|
getDetailOfContractByDomain: (request: {
|
|
1481
|
-
|
|
1482
|
-
domainId: string;
|
|
1483
|
-
};
|
|
1403
|
+
domainId: string;
|
|
1484
1404
|
headers?: {
|
|
1485
1405
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1486
1406
|
"x-access-token"?: string | undefined;
|
|
@@ -1516,9 +1436,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1516
1436
|
}, 404, "application/json">>>;
|
|
1517
1437
|
/** Return the Contract for the given Project. */
|
|
1518
1438
|
getDetailOfContractByProject: (request: {
|
|
1519
|
-
|
|
1520
|
-
projectId: string;
|
|
1521
|
-
};
|
|
1439
|
+
projectId: string;
|
|
1522
1440
|
headers?: {
|
|
1523
1441
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1524
1442
|
"x-access-token"?: string | undefined;
|
|
@@ -1554,9 +1472,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1554
1472
|
}, 404, "application/json">>>;
|
|
1555
1473
|
/** Return the Contract for the given Server. */
|
|
1556
1474
|
getDetailOfContractByServer: (request: {
|
|
1557
|
-
|
|
1558
|
-
serverId: string;
|
|
1559
|
-
};
|
|
1475
|
+
serverId: string;
|
|
1560
1476
|
headers?: {
|
|
1561
1477
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1562
1478
|
"x-access-token"?: string | undefined;
|
|
@@ -1592,10 +1508,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1592
1508
|
}, 404, "application/json">>>;
|
|
1593
1509
|
/** Get the ContractItem with the given ID. */
|
|
1594
1510
|
getDetailOfContractItem: (request: {
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
contractItemId: string;
|
|
1598
|
-
};
|
|
1511
|
+
contractId: string;
|
|
1512
|
+
contractItemId: string;
|
|
1599
1513
|
headers?: {
|
|
1600
1514
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1601
1515
|
"x-access-token"?: string | undefined;
|
|
@@ -1644,9 +1558,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1644
1558
|
}, 404, "application/json">>>;
|
|
1645
1559
|
/** Returns the Contract with the given ID. */
|
|
1646
1560
|
getDetailOfContract: (request: {
|
|
1647
|
-
|
|
1648
|
-
contractId: string;
|
|
1649
|
-
};
|
|
1561
|
+
contractId: string;
|
|
1650
1562
|
headers?: {
|
|
1651
1563
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1652
1564
|
"x-access-token"?: string | undefined;
|
|
@@ -1682,10 +1594,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1682
1594
|
}, 404, "application/json">>>;
|
|
1683
1595
|
/** Return the next TerminationDate for the ContractItem with the given ID. */
|
|
1684
1596
|
getNextTerminationDateForItem: (request: {
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
contractItemId: string;
|
|
1688
|
-
};
|
|
1597
|
+
contractId: string;
|
|
1598
|
+
contractItemId: string;
|
|
1689
1599
|
headers?: {
|
|
1690
1600
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1691
1601
|
"x-access-token"?: string | undefined;
|
|
@@ -1715,9 +1625,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1715
1625
|
}, 404, "application/json">>>;
|
|
1716
1626
|
/** Return a list of Contracts for the given Customer. */
|
|
1717
1627
|
listContracts: (request: {
|
|
1718
|
-
|
|
1719
|
-
customerId: string;
|
|
1720
|
-
};
|
|
1628
|
+
customerId: string;
|
|
1721
1629
|
headers?: {
|
|
1722
1630
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1723
1631
|
"x-access-token"?: string | undefined;
|
|
@@ -1757,10 +1665,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1757
1665
|
}, 404, "application/json">>>;
|
|
1758
1666
|
/** Get details of an Invoice. */
|
|
1759
1667
|
invoiceDetailOfInvoice: (request: {
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
invoiceId: string;
|
|
1763
|
-
};
|
|
1668
|
+
customerId: string;
|
|
1669
|
+
invoiceId: string;
|
|
1764
1670
|
headers?: {
|
|
1765
1671
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1766
1672
|
"x-access-token"?: string | undefined;
|
|
@@ -1809,9 +1715,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1809
1715
|
}, 404, "application/json">>>;
|
|
1810
1716
|
/** Get InvoiceSettings of a Customer. */
|
|
1811
1717
|
invoiceGetDetailOfInvoiceSettings: (request: {
|
|
1812
|
-
|
|
1813
|
-
customerId: string;
|
|
1814
|
-
};
|
|
1718
|
+
customerId: string;
|
|
1815
1719
|
headers?: {
|
|
1816
1720
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1817
1721
|
"x-access-token"?: string | undefined;
|
|
@@ -1879,9 +1783,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1879
1783
|
recipientSameAsOwner?: boolean | undefined;
|
|
1880
1784
|
targetDay?: number | undefined;
|
|
1881
1785
|
};
|
|
1882
|
-
|
|
1883
|
-
customerId: string;
|
|
1884
|
-
};
|
|
1786
|
+
customerId: string;
|
|
1885
1787
|
headers?: {
|
|
1886
1788
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1887
1789
|
"x-access-token"?: string | undefined;
|
|
@@ -1927,9 +1829,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1927
1829
|
}, 404, "application/json">>>;
|
|
1928
1830
|
/** List Invoices of a Customer. */
|
|
1929
1831
|
invoiceListCustomerInvoices: (request: {
|
|
1930
|
-
|
|
1931
|
-
customerId: string;
|
|
1932
|
-
};
|
|
1832
|
+
customerId: string;
|
|
1933
1833
|
headers?: {
|
|
1934
1834
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1935
1835
|
"x-access-token"?: string | undefined;
|
|
@@ -2069,9 +1969,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2069
1969
|
}, 400, "application/json">>>;
|
|
2070
1970
|
/** Get Order for Customer. */
|
|
2071
1971
|
orderGetOrder: (request: {
|
|
2072
|
-
|
|
2073
|
-
orderId: string;
|
|
2074
|
-
};
|
|
1972
|
+
orderId: string;
|
|
2075
1973
|
headers?: {
|
|
2076
1974
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2077
1975
|
"x-access-token"?: string | undefined;
|
|
@@ -2106,9 +2004,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2106
2004
|
}, 200, "application/json">>>;
|
|
2107
2005
|
/** Get list of Orders of a Customer. */
|
|
2108
2006
|
orderListCustomerOrders: (request: {
|
|
2109
|
-
|
|
2110
|
-
customerId: string;
|
|
2111
|
-
};
|
|
2007
|
+
customerId: string;
|
|
2112
2008
|
headers?: {
|
|
2113
2009
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2114
2010
|
"x-access-token"?: string | undefined;
|
|
@@ -2150,9 +2046,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2150
2046
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[], 200, "application/json">>>;
|
|
2151
2047
|
/** Get list of Orders of a Project. */
|
|
2152
2048
|
orderListProjectOrders: (request: {
|
|
2153
|
-
|
|
2154
|
-
projectId: string;
|
|
2155
|
-
};
|
|
2049
|
+
projectId: string;
|
|
2156
2050
|
headers?: {
|
|
2157
2051
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2158
2052
|
"x-access-token"?: string | undefined;
|
|
@@ -2321,9 +2215,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2321
2215
|
}, 400, "application/json">>>;
|
|
2322
2216
|
/** Get all message of the conversation. */
|
|
2323
2217
|
listMessagesByConversation: (request: {
|
|
2324
|
-
|
|
2325
|
-
conversationId: string;
|
|
2326
|
-
};
|
|
2218
|
+
conversationId: string;
|
|
2327
2219
|
headers?: {
|
|
2328
2220
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2329
2221
|
} | undefined;
|
|
@@ -2342,9 +2234,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2342
2234
|
}, 404, "application/json">>>;
|
|
2343
2235
|
/** Send a new message in the conversation. */
|
|
2344
2236
|
createMessage: (request: {
|
|
2345
|
-
|
|
2346
|
-
conversationId: string;
|
|
2347
|
-
};
|
|
2237
|
+
conversationId: string;
|
|
2348
2238
|
data?: {
|
|
2349
2239
|
fileIds?: string[] | undefined;
|
|
2350
2240
|
messageContent?: string | undefined;
|
|
@@ -2377,9 +2267,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2377
2267
|
}, 404, "application/json">>>;
|
|
2378
2268
|
/** Get a specific conversation category. */
|
|
2379
2269
|
getCategory: (request: {
|
|
2380
|
-
|
|
2381
|
-
categoryId: string;
|
|
2382
|
-
};
|
|
2270
|
+
categoryId: string;
|
|
2383
2271
|
headers?: {
|
|
2384
2272
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2385
2273
|
} | undefined;
|
|
@@ -2402,9 +2290,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2402
2290
|
}, 404, "application/json">>>;
|
|
2403
2291
|
/** Get a support conversation. */
|
|
2404
2292
|
getConversation: (request: {
|
|
2405
|
-
|
|
2406
|
-
conversationId: string;
|
|
2407
|
-
};
|
|
2293
|
+
conversationId: string;
|
|
2408
2294
|
headers?: {
|
|
2409
2295
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2410
2296
|
} | undefined;
|
|
@@ -2438,9 +2324,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2438
2324
|
}, 404, "application/json">>>;
|
|
2439
2325
|
/** Update the basic properties of the conversation. */
|
|
2440
2326
|
updateConversation: (request: {
|
|
2441
|
-
|
|
2442
|
-
conversationId: string;
|
|
2443
|
-
};
|
|
2327
|
+
conversationId: string;
|
|
2444
2328
|
data?: {
|
|
2445
2329
|
categoryId?: string | undefined;
|
|
2446
2330
|
relatedTo?: {
|
|
@@ -2488,9 +2372,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2488
2372
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationCategory[], 200, "application/json">>>;
|
|
2489
2373
|
/** Request a file upload token for the conversation. */
|
|
2490
2374
|
requestFileUpload: (request: {
|
|
2491
|
-
|
|
2492
|
-
conversationId: string;
|
|
2493
|
-
};
|
|
2375
|
+
conversationId: string;
|
|
2494
2376
|
headers?: {
|
|
2495
2377
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2496
2378
|
} | undefined;
|
|
@@ -2529,9 +2411,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2529
2411
|
data: {
|
|
2530
2412
|
status: "open" | "closed" | "answered";
|
|
2531
2413
|
};
|
|
2532
|
-
|
|
2533
|
-
conversationId: string;
|
|
2534
|
-
};
|
|
2414
|
+
conversationId: string;
|
|
2535
2415
|
headers?: {
|
|
2536
2416
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2537
2417
|
} | undefined;
|
|
@@ -2558,10 +2438,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2558
2438
|
}, 404, "application/json">>>;
|
|
2559
2439
|
/** Update the content of the message */
|
|
2560
2440
|
updateMessage: (request: {
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
messageId: string;
|
|
2564
|
-
};
|
|
2441
|
+
conversationId: string;
|
|
2442
|
+
messageId: string;
|
|
2565
2443
|
data?: {
|
|
2566
2444
|
messageContent?: string | undefined;
|
|
2567
2445
|
} | undefined;
|
|
@@ -2595,10 +2473,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2595
2473
|
readonly cronjob: {
|
|
2596
2474
|
/** Abort a CronjobExecution. */
|
|
2597
2475
|
abortExecution: (request: {
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
executionId: string;
|
|
2601
|
-
};
|
|
2476
|
+
cronjobId: string;
|
|
2477
|
+
executionId: string;
|
|
2602
2478
|
data?: {
|
|
2603
2479
|
[x: string]: unknown;
|
|
2604
2480
|
} | undefined;
|
|
@@ -2630,9 +2506,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2630
2506
|
}, 404, "application/json">>>;
|
|
2631
2507
|
/** List Cronjobs belonging to a Project. */
|
|
2632
2508
|
listCronjobs: (request: {
|
|
2633
|
-
|
|
2634
|
-
projectId: string;
|
|
2635
|
-
};
|
|
2509
|
+
projectId: string;
|
|
2636
2510
|
headers?: {
|
|
2637
2511
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2638
2512
|
"x-access-token"?: string | undefined;
|
|
@@ -2682,9 +2556,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2682
2556
|
interval: string;
|
|
2683
2557
|
email?: string | undefined;
|
|
2684
2558
|
};
|
|
2685
|
-
|
|
2686
|
-
projectId: string;
|
|
2687
|
-
};
|
|
2559
|
+
projectId: string;
|
|
2688
2560
|
headers?: {
|
|
2689
2561
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2690
2562
|
"x-access-token"?: string | undefined;
|
|
@@ -2721,9 +2593,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2721
2593
|
}, 412, "application/json">>>;
|
|
2722
2594
|
/** List CronjobExecutions belonging to a Cronjob. */
|
|
2723
2595
|
listExecutions: (request: {
|
|
2724
|
-
|
|
2725
|
-
cronjobId: string;
|
|
2726
|
-
};
|
|
2596
|
+
cronjobId: string;
|
|
2727
2597
|
headers?: {
|
|
2728
2598
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2729
2599
|
"x-access-token"?: string | undefined;
|
|
@@ -2765,9 +2635,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2765
2635
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecution[], 200, "application/json">>>;
|
|
2766
2636
|
/** Trigger a Cronjob. */
|
|
2767
2637
|
createExecution: (request: {
|
|
2768
|
-
|
|
2769
|
-
cronjobId: string;
|
|
2770
|
-
};
|
|
2638
|
+
cronjobId: string;
|
|
2771
2639
|
data?: {
|
|
2772
2640
|
[x: string]: unknown;
|
|
2773
2641
|
} | undefined;
|
|
@@ -2802,9 +2670,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2802
2670
|
}, 412, "application/json">>>;
|
|
2803
2671
|
/** Get a Cronjob. */
|
|
2804
2672
|
getCronjob: (request: {
|
|
2805
|
-
|
|
2806
|
-
cronjobId: string;
|
|
2807
|
-
};
|
|
2673
|
+
cronjobId: string;
|
|
2808
2674
|
headers?: {
|
|
2809
2675
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2810
2676
|
"x-access-token"?: string | undefined;
|
|
@@ -2842,9 +2708,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2842
2708
|
}, 404, "application/json">>>;
|
|
2843
2709
|
/** Delete a Cronjob. */
|
|
2844
2710
|
deleteCronjob: (request: {
|
|
2845
|
-
|
|
2846
|
-
cronjobId: string;
|
|
2847
|
-
};
|
|
2711
|
+
cronjobId: string;
|
|
2848
2712
|
headers?: {
|
|
2849
2713
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2850
2714
|
"x-access-token"?: string | undefined;
|
|
@@ -2870,9 +2734,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2870
2734
|
}, 412, "application/json">>>;
|
|
2871
2735
|
/** Update a Cronjob. */
|
|
2872
2736
|
updateCronjob: (request: {
|
|
2873
|
-
|
|
2874
|
-
cronjobId: string;
|
|
2875
|
-
};
|
|
2737
|
+
cronjobId: string;
|
|
2876
2738
|
data?: {
|
|
2877
2739
|
active?: boolean | undefined;
|
|
2878
2740
|
description?: string | undefined;
|
|
@@ -2921,10 +2783,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2921
2783
|
}, 412, "application/json">>>;
|
|
2922
2784
|
/** Get a CronjobExecution. */
|
|
2923
2785
|
getExecution: (request: {
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
cronjobId: string;
|
|
2927
|
-
};
|
|
2786
|
+
executionId: string;
|
|
2787
|
+
cronjobId: string;
|
|
2928
2788
|
headers?: {
|
|
2929
2789
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2930
2790
|
"x-access-token"?: string | undefined;
|
|
@@ -2968,9 +2828,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2968
2828
|
data: {
|
|
2969
2829
|
appId: string;
|
|
2970
2830
|
};
|
|
2971
|
-
|
|
2972
|
-
cronjobId: string;
|
|
2973
|
-
};
|
|
2831
|
+
cronjobId: string;
|
|
2974
2832
|
headers?: {
|
|
2975
2833
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2976
2834
|
"x-access-token"?: string | undefined;
|
|
@@ -3003,9 +2861,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3003
2861
|
readonly customer: {
|
|
3004
2862
|
/** Accept a CustomerInvite. */
|
|
3005
2863
|
acceptCustomerInvite: (request: {
|
|
3006
|
-
|
|
3007
|
-
inviteId: string;
|
|
3008
|
-
};
|
|
2864
|
+
inviteId: string;
|
|
3009
2865
|
data?: {
|
|
3010
2866
|
invitationToken?: string | undefined;
|
|
3011
2867
|
} | undefined;
|
|
@@ -3105,9 +2961,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3105
2961
|
membershipExpiresAt?: string | undefined;
|
|
3106
2962
|
message?: string | undefined;
|
|
3107
2963
|
};
|
|
3108
|
-
|
|
3109
|
-
customerId: string;
|
|
3110
|
-
};
|
|
2964
|
+
customerId: string;
|
|
3111
2965
|
headers?: {
|
|
3112
2966
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3113
2967
|
"x-access-token"?: string | undefined;
|
|
@@ -3235,9 +3089,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3235
3089
|
}, 400, "application/json">>>;
|
|
3236
3090
|
/** Decline a CustomerInvite. */
|
|
3237
3091
|
declineCustomerInvite: (request: {
|
|
3238
|
-
|
|
3239
|
-
inviteId: string;
|
|
3240
|
-
};
|
|
3092
|
+
inviteId: string;
|
|
3241
3093
|
data?: {
|
|
3242
3094
|
[x: string]: unknown;
|
|
3243
3095
|
} | undefined;
|
|
@@ -3266,9 +3118,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3266
3118
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
3267
3119
|
/** Get a customer category. */
|
|
3268
3120
|
getCustomerCategory: (request: {
|
|
3269
|
-
|
|
3270
|
-
categoryId: string;
|
|
3271
|
-
};
|
|
3121
|
+
categoryId: string;
|
|
3272
3122
|
headers?: {
|
|
3273
3123
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3274
3124
|
"x-access-token"?: string | undefined;
|
|
@@ -3303,9 +3153,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3303
3153
|
useAgencyDomainPrices: boolean;
|
|
3304
3154
|
useAgencySslPrices: boolean;
|
|
3305
3155
|
};
|
|
3306
|
-
|
|
3307
|
-
categoryId: string;
|
|
3308
|
-
};
|
|
3156
|
+
categoryId: string;
|
|
3309
3157
|
headers?: {
|
|
3310
3158
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3311
3159
|
"x-access-token"?: string | undefined;
|
|
@@ -3345,9 +3193,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3345
3193
|
}, 404, "application/json">>>;
|
|
3346
3194
|
/** Delete a customer category. */
|
|
3347
3195
|
deleteCategory: (request: {
|
|
3348
|
-
|
|
3349
|
-
categoryId: string;
|
|
3350
|
-
};
|
|
3196
|
+
categoryId: string;
|
|
3351
3197
|
headers?: {
|
|
3352
3198
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3353
3199
|
"x-access-token"?: string | undefined;
|
|
@@ -3371,9 +3217,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3371
3217
|
}, 200, "application/json">>>;
|
|
3372
3218
|
/** Get a CustomerInvite. */
|
|
3373
3219
|
getCustomerInvite: (request: {
|
|
3374
|
-
|
|
3375
|
-
inviteId: string;
|
|
3376
|
-
};
|
|
3220
|
+
inviteId: string;
|
|
3377
3221
|
headers?: {
|
|
3378
3222
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3379
3223
|
"x-access-token"?: string | undefined;
|
|
@@ -3407,9 +3251,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3407
3251
|
}, 404, "application/json">>>;
|
|
3408
3252
|
/** Delete a CustomerInvite. */
|
|
3409
3253
|
deleteCustomerInvite: (request: {
|
|
3410
|
-
|
|
3411
|
-
inviteId: string;
|
|
3412
|
-
};
|
|
3254
|
+
inviteId: string;
|
|
3413
3255
|
headers?: {
|
|
3414
3256
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3415
3257
|
"x-access-token"?: string | undefined;
|
|
@@ -3431,9 +3273,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3431
3273
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
3432
3274
|
/** Get a CustomerMembership. */
|
|
3433
3275
|
getCustomerMembership: (request: {
|
|
3434
|
-
|
|
3435
|
-
membershipId: string;
|
|
3436
|
-
};
|
|
3276
|
+
membershipId: string;
|
|
3437
3277
|
headers?: {
|
|
3438
3278
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3439
3279
|
"x-access-token"?: string | undefined;
|
|
@@ -3465,9 +3305,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3465
3305
|
}, 404, "application/json">>>;
|
|
3466
3306
|
/** Delete a CustomerMembership. */
|
|
3467
3307
|
deleteCustomerMembership: (request: {
|
|
3468
|
-
|
|
3469
|
-
membershipId: string;
|
|
3470
|
-
};
|
|
3308
|
+
membershipId: string;
|
|
3471
3309
|
headers?: {
|
|
3472
3310
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3473
3311
|
"x-access-token"?: string | undefined;
|
|
@@ -3493,9 +3331,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3493
3331
|
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
|
|
3494
3332
|
expiresAt?: string | undefined;
|
|
3495
3333
|
};
|
|
3496
|
-
|
|
3497
|
-
membershipId: string;
|
|
3498
|
-
};
|
|
3334
|
+
membershipId: string;
|
|
3499
3335
|
headers?: {
|
|
3500
3336
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3501
3337
|
"x-access-token"?: string | undefined;
|
|
@@ -3522,9 +3358,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3522
3358
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
3523
3359
|
/** Get a customer profile. */
|
|
3524
3360
|
getCustomer: (request: {
|
|
3525
|
-
|
|
3526
|
-
customerId: string;
|
|
3527
|
-
};
|
|
3361
|
+
customerId: string;
|
|
3528
3362
|
headers?: {
|
|
3529
3363
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3530
3364
|
"x-access-token"?: string | undefined;
|
|
@@ -3589,9 +3423,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3589
3423
|
} | undefined;
|
|
3590
3424
|
vatId?: string | undefined;
|
|
3591
3425
|
};
|
|
3592
|
-
|
|
3593
|
-
customerId: string;
|
|
3594
|
-
};
|
|
3426
|
+
customerId: string;
|
|
3595
3427
|
headers?: {
|
|
3596
3428
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3597
3429
|
"x-access-token"?: string | undefined;
|
|
@@ -3629,9 +3461,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3629
3461
|
}, 404, "application/json">>>;
|
|
3630
3462
|
/** Delete a customer profile. */
|
|
3631
3463
|
deleteCustomer: (request: {
|
|
3632
|
-
|
|
3633
|
-
customerId: string;
|
|
3634
|
-
};
|
|
3464
|
+
customerId: string;
|
|
3635
3465
|
headers?: {
|
|
3636
3466
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3637
3467
|
"x-access-token"?: string | undefined;
|
|
@@ -3687,9 +3517,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3687
3517
|
}, 404, "application/json">>>;
|
|
3688
3518
|
/** Check if the customer profile has a valid contract partner configured. */
|
|
3689
3519
|
isCustomerLegallyCompetent: (request: {
|
|
3690
|
-
|
|
3691
|
-
customerId: string;
|
|
3692
|
-
};
|
|
3520
|
+
customerId: string;
|
|
3693
3521
|
headers?: {
|
|
3694
3522
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3695
3523
|
"x-access-token"?: string | undefined;
|
|
@@ -3717,9 +3545,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3717
3545
|
}, 404, "application/json">>>;
|
|
3718
3546
|
/** Leave a Customer. */
|
|
3719
3547
|
leaveCustomer: (request: {
|
|
3720
|
-
|
|
3721
|
-
customerId: string;
|
|
3722
|
-
};
|
|
3548
|
+
customerId: string;
|
|
3723
3549
|
data?: {
|
|
3724
3550
|
[x: string]: unknown;
|
|
3725
3551
|
} | undefined;
|
|
@@ -3810,9 +3636,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3810
3636
|
}, 404, "application/json">>>;
|
|
3811
3637
|
/** List Invites belonging to a Customer. */
|
|
3812
3638
|
listInvitesForCustomer: (request: {
|
|
3813
|
-
|
|
3814
|
-
customerId: string;
|
|
3815
|
-
};
|
|
3639
|
+
customerId: string;
|
|
3816
3640
|
headers?: {
|
|
3817
3641
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3818
3642
|
"x-access-token"?: string | undefined;
|
|
@@ -3848,9 +3672,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3848
3672
|
}, 404, "application/json">>>;
|
|
3849
3673
|
/** List Memberships belonging to a Customer. */
|
|
3850
3674
|
listMembershipsForCustomer: (request: {
|
|
3851
|
-
|
|
3852
|
-
customerId: string;
|
|
3853
|
-
};
|
|
3675
|
+
customerId: string;
|
|
3854
3676
|
headers?: {
|
|
3855
3677
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3856
3678
|
"x-access-token"?: string | undefined;
|
|
@@ -3886,9 +3708,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3886
3708
|
}, 404, "application/json">>>;
|
|
3887
3709
|
/** Request a new avatar upload for the customer profile. */
|
|
3888
3710
|
requestAvatarUpload: (request: {
|
|
3889
|
-
|
|
3890
|
-
customerId: string;
|
|
3891
|
-
};
|
|
3711
|
+
customerId: string;
|
|
3892
3712
|
headers?: {
|
|
3893
3713
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3894
3714
|
"x-access-token"?: string | undefined;
|
|
@@ -3930,9 +3750,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3930
3750
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "application/json">>>;
|
|
3931
3751
|
/** Remove the avatar picture of the customer profile. */
|
|
3932
3752
|
removeAvatar: (request: {
|
|
3933
|
-
|
|
3934
|
-
customerId: string;
|
|
3935
|
-
};
|
|
3753
|
+
customerId: string;
|
|
3936
3754
|
headers?: {
|
|
3937
3755
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3938
3756
|
"x-access-token"?: string | undefined;
|
|
@@ -3958,9 +3776,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3958
3776
|
}, 500, "application/json">>>;
|
|
3959
3777
|
/** Resend the mail for a CustomerInvite. */
|
|
3960
3778
|
resendCustomerInviteMail: (request: {
|
|
3961
|
-
|
|
3962
|
-
inviteId: string;
|
|
3963
|
-
};
|
|
3779
|
+
inviteId: string;
|
|
3964
3780
|
data?: {
|
|
3965
3781
|
[x: string]: unknown;
|
|
3966
3782
|
} | undefined;
|
|
@@ -3994,9 +3810,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3994
3810
|
readonly database: {
|
|
3995
3811
|
/** List MySQLDatabases belonging to a Project. */
|
|
3996
3812
|
listMysqlDatabases: (request: {
|
|
3997
|
-
|
|
3998
|
-
projectId: string;
|
|
3999
|
-
};
|
|
3813
|
+
projectId: string;
|
|
4000
3814
|
headers?: {
|
|
4001
3815
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4002
3816
|
"x-access-token"?: string | undefined;
|
|
@@ -4039,9 +3853,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4039
3853
|
externalAccess?: boolean | undefined;
|
|
4040
3854
|
};
|
|
4041
3855
|
};
|
|
4042
|
-
|
|
4043
|
-
projectId: string;
|
|
4044
|
-
};
|
|
3856
|
+
projectId: string;
|
|
4045
3857
|
headers?: {
|
|
4046
3858
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4047
3859
|
"x-access-token"?: string | undefined;
|
|
@@ -4075,9 +3887,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4075
3887
|
}, 404, "application/json">>>;
|
|
4076
3888
|
/** List MySQLUsers belonging to a Database. */
|
|
4077
3889
|
listMysqlUsers: (request: {
|
|
4078
|
-
|
|
4079
|
-
databaseId: string;
|
|
4080
|
-
};
|
|
3890
|
+
databaseId: string;
|
|
4081
3891
|
headers?: {
|
|
4082
3892
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4083
3893
|
"x-access-token"?: string | undefined;
|
|
@@ -4111,9 +3921,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4111
3921
|
accessIpMask?: string | undefined;
|
|
4112
3922
|
externalAccess?: boolean | undefined;
|
|
4113
3923
|
};
|
|
4114
|
-
|
|
4115
|
-
databaseId: string;
|
|
4116
|
-
};
|
|
3924
|
+
databaseId: string;
|
|
4117
3925
|
headers?: {
|
|
4118
3926
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4119
3927
|
"x-access-token"?: string | undefined;
|
|
@@ -4150,9 +3958,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4150
3958
|
}, 404, "application/json">>>;
|
|
4151
3959
|
/** List RedisDatabases belonging to a Project. */
|
|
4152
3960
|
listRedisDatabases: (request: {
|
|
4153
|
-
|
|
4154
|
-
projectId: string;
|
|
4155
|
-
};
|
|
3961
|
+
projectId: string;
|
|
4156
3962
|
headers?: {
|
|
4157
3963
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4158
3964
|
"x-access-token"?: string | undefined;
|
|
@@ -4188,9 +3994,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4188
3994
|
persistent?: boolean | undefined;
|
|
4189
3995
|
} | undefined;
|
|
4190
3996
|
};
|
|
4191
|
-
|
|
4192
|
-
projectId: string;
|
|
4193
|
-
};
|
|
3997
|
+
projectId: string;
|
|
4194
3998
|
headers?: {
|
|
4195
3999
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4196
4000
|
"x-access-token"?: string | undefined;
|
|
@@ -4224,9 +4028,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4224
4028
|
}, 404, "application/json">>>;
|
|
4225
4029
|
/** Get a MySQLDatabase. */
|
|
4226
4030
|
getMysqlDatabase: (request: {
|
|
4227
|
-
|
|
4228
|
-
id: string;
|
|
4229
|
-
};
|
|
4031
|
+
id: string;
|
|
4230
4032
|
headers?: {
|
|
4231
4033
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4232
4034
|
"x-access-token"?: string | undefined;
|
|
@@ -4268,9 +4070,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4268
4070
|
}, 500, "application/json">>>;
|
|
4269
4071
|
/** Delete a MySQLDatabase. */
|
|
4270
4072
|
deleteMysqlDatabase: (request: {
|
|
4271
|
-
|
|
4272
|
-
id: string;
|
|
4273
|
-
};
|
|
4073
|
+
id: string;
|
|
4274
4074
|
headers?: {
|
|
4275
4075
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4276
4076
|
"x-access-token"?: string | undefined;
|
|
@@ -4300,9 +4100,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4300
4100
|
}, 503, "application/json">>>;
|
|
4301
4101
|
/** Get a MySQLUser. */
|
|
4302
4102
|
getMysqlUser: (request: {
|
|
4303
|
-
|
|
4304
|
-
id: string;
|
|
4305
|
-
};
|
|
4103
|
+
id: string;
|
|
4306
4104
|
headers?: {
|
|
4307
4105
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4308
4106
|
"x-access-token"?: string | undefined;
|
|
@@ -4347,9 +4145,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4347
4145
|
accessIpMask?: string | undefined;
|
|
4348
4146
|
externalAccess?: boolean | undefined;
|
|
4349
4147
|
};
|
|
4350
|
-
|
|
4351
|
-
id: string;
|
|
4352
|
-
};
|
|
4148
|
+
id: string;
|
|
4353
4149
|
headers?: {
|
|
4354
4150
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4355
4151
|
"x-access-token"?: string | undefined;
|
|
@@ -4382,9 +4178,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4382
4178
|
}, 404, "application/json">>>;
|
|
4383
4179
|
/** Delete a MySQLUser. */
|
|
4384
4180
|
deleteMysqlUser: (request: {
|
|
4385
|
-
|
|
4386
|
-
id: string;
|
|
4387
|
-
};
|
|
4181
|
+
id: string;
|
|
4388
4182
|
headers?: {
|
|
4389
4183
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4390
4184
|
"x-access-token"?: string | undefined;
|
|
@@ -4410,9 +4204,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4410
4204
|
}, 404, "application/json">>>;
|
|
4411
4205
|
/** Get a RedisDatabase. */
|
|
4412
4206
|
getRedisDatabase: (request: {
|
|
4413
|
-
|
|
4414
|
-
id: string;
|
|
4415
|
-
};
|
|
4207
|
+
id: string;
|
|
4416
4208
|
headers?: {
|
|
4417
4209
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4418
4210
|
"x-access-token"?: string | undefined;
|
|
@@ -4452,9 +4244,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4452
4244
|
}, 500, "application/json">>>;
|
|
4453
4245
|
/** Delete a RedisDatabase. */
|
|
4454
4246
|
deleteRedisDatabase: (request: {
|
|
4455
|
-
|
|
4456
|
-
id: string;
|
|
4457
|
-
};
|
|
4247
|
+
id: string;
|
|
4458
4248
|
headers?: {
|
|
4459
4249
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4460
4250
|
"x-access-token"?: string | undefined;
|
|
@@ -4484,9 +4274,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4484
4274
|
}, 503, "application/json">>>;
|
|
4485
4275
|
/** Disable a MySQLUser. */
|
|
4486
4276
|
disableMysqlUser: (request: {
|
|
4487
|
-
|
|
4488
|
-
id: string;
|
|
4489
|
-
};
|
|
4277
|
+
id: string;
|
|
4490
4278
|
data?: {
|
|
4491
4279
|
[x: string]: unknown;
|
|
4492
4280
|
} | undefined;
|
|
@@ -4519,9 +4307,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4519
4307
|
}, 404, "application/json">>>;
|
|
4520
4308
|
/** Enable a MySQLUser. */
|
|
4521
4309
|
enableMysqlUser: (request: {
|
|
4522
|
-
|
|
4523
|
-
id: string;
|
|
4524
|
-
};
|
|
4310
|
+
id: string;
|
|
4525
4311
|
data?: {
|
|
4526
4312
|
[x: string]: unknown;
|
|
4527
4313
|
} | undefined;
|
|
@@ -4554,9 +4340,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4554
4340
|
}, 404, "application/json">>>;
|
|
4555
4341
|
/** Get a MySQLUser's PhpMyAdmin-URL. */
|
|
4556
4342
|
getMysqlUserPhpMyAdminUrl: (request: {
|
|
4557
|
-
|
|
4558
|
-
id: string;
|
|
4559
|
-
};
|
|
4343
|
+
id: string;
|
|
4560
4344
|
headers?: {
|
|
4561
4345
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4562
4346
|
"x-access-token"?: string | undefined;
|
|
@@ -4683,9 +4467,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4683
4467
|
collation: string;
|
|
4684
4468
|
};
|
|
4685
4469
|
};
|
|
4686
|
-
|
|
4687
|
-
id: string;
|
|
4688
|
-
};
|
|
4470
|
+
id: string;
|
|
4689
4471
|
headers?: {
|
|
4690
4472
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4691
4473
|
"x-access-token"?: string | undefined;
|
|
@@ -4718,9 +4500,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4718
4500
|
data: {
|
|
4719
4501
|
description: string;
|
|
4720
4502
|
};
|
|
4721
|
-
|
|
4722
|
-
id: string;
|
|
4723
|
-
};
|
|
4503
|
+
id: string;
|
|
4724
4504
|
headers?: {
|
|
4725
4505
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4726
4506
|
"x-access-token"?: string | undefined;
|
|
@@ -4753,9 +4533,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4753
4533
|
data: {
|
|
4754
4534
|
password: string;
|
|
4755
4535
|
};
|
|
4756
|
-
|
|
4757
|
-
id: string;
|
|
4758
|
-
};
|
|
4536
|
+
id: string;
|
|
4759
4537
|
headers?: {
|
|
4760
4538
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4761
4539
|
"x-access-token"?: string | undefined;
|
|
@@ -4785,9 +4563,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4785
4563
|
}, 404, "application/json">>>;
|
|
4786
4564
|
/** Update a RedisDatabase's configuration. */
|
|
4787
4565
|
updateRedisDatabaseConfiguration: (request: {
|
|
4788
|
-
|
|
4789
|
-
id: string;
|
|
4790
|
-
};
|
|
4566
|
+
id: string;
|
|
4791
4567
|
data?: {
|
|
4792
4568
|
configuration?: {
|
|
4793
4569
|
additionalFlags?: string[] | undefined;
|
|
@@ -4828,9 +4604,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4828
4604
|
data: {
|
|
4829
4605
|
description: string;
|
|
4830
4606
|
};
|
|
4831
|
-
|
|
4832
|
-
id: string;
|
|
4833
|
-
};
|
|
4607
|
+
id: string;
|
|
4834
4608
|
headers?: {
|
|
4835
4609
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4836
4610
|
"x-access-token"?: string | undefined;
|
|
@@ -4863,9 +4637,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4863
4637
|
readonly domain: {
|
|
4864
4638
|
/** updates a-records for a specific zone */
|
|
4865
4639
|
dnsRecordAsetCustom: (request: {
|
|
4866
|
-
|
|
4867
|
-
zoneId: string;
|
|
4868
|
-
};
|
|
4640
|
+
zoneId: string;
|
|
4869
4641
|
headers?: {
|
|
4870
4642
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4871
4643
|
"x-access-token"?: string | undefined;
|
|
@@ -4882,9 +4654,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4882
4654
|
} | undefined;
|
|
4883
4655
|
};
|
|
4884
4656
|
};
|
|
4885
|
-
|
|
4886
|
-
zoneId: string;
|
|
4887
|
-
};
|
|
4657
|
+
zoneId: string;
|
|
4888
4658
|
headers?: {
|
|
4889
4659
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4890
4660
|
"x-access-token"?: string | undefined;
|
|
@@ -4918,9 +4688,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4918
4688
|
}, 400, "application/json">>>;
|
|
4919
4689
|
/** set a-records managed by ingress for a specific zone */
|
|
4920
4690
|
dnsRecordAsetManagedByIngress: (request: {
|
|
4921
|
-
|
|
4922
|
-
zoneId: string;
|
|
4923
|
-
};
|
|
4691
|
+
zoneId: string;
|
|
4924
4692
|
headers?: {
|
|
4925
4693
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4926
4694
|
"x-access-token"?: string | undefined;
|
|
@@ -4946,9 +4714,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4946
4714
|
}, 400, "application/json">>>;
|
|
4947
4715
|
/** updates cname-record for a specific zone */
|
|
4948
4716
|
dnsRecordCnameSet: (request: {
|
|
4949
|
-
|
|
4950
|
-
zoneId: string;
|
|
4951
|
-
};
|
|
4717
|
+
zoneId: string;
|
|
4952
4718
|
headers?: {
|
|
4953
4719
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4954
4720
|
"x-access-token"?: string | undefined;
|
|
@@ -4964,9 +4730,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4964
4730
|
} | undefined;
|
|
4965
4731
|
};
|
|
4966
4732
|
};
|
|
4967
|
-
|
|
4968
|
-
zoneId: string;
|
|
4969
|
-
};
|
|
4733
|
+
zoneId: string;
|
|
4970
4734
|
headers?: {
|
|
4971
4735
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4972
4736
|
"x-access-token"?: string | undefined;
|
|
@@ -4999,9 +4763,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4999
4763
|
}, 400, "application/json">>>;
|
|
5000
4764
|
/** updates mx-records for a specific zone */
|
|
5001
4765
|
dnsRecordMxSetCustom: (request: {
|
|
5002
|
-
|
|
5003
|
-
zoneId: string;
|
|
5004
|
-
};
|
|
4766
|
+
zoneId: string;
|
|
5005
4767
|
headers?: {
|
|
5006
4768
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5007
4769
|
"x-access-token"?: string | undefined;
|
|
@@ -5017,9 +4779,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5017
4779
|
} | undefined;
|
|
5018
4780
|
};
|
|
5019
4781
|
};
|
|
5020
|
-
|
|
5021
|
-
zoneId: string;
|
|
5022
|
-
};
|
|
4782
|
+
zoneId: string;
|
|
5023
4783
|
headers?: {
|
|
5024
4784
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5025
4785
|
"x-access-token"?: string | undefined;
|
|
@@ -5052,9 +4812,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5052
4812
|
}, 400, "application/json">>>;
|
|
5053
4813
|
/** sets mx-records to managed for a specific zone */
|
|
5054
4814
|
dnsRecordMxSetManaged: (request: {
|
|
5055
|
-
|
|
5056
|
-
zoneId: string;
|
|
5057
|
-
};
|
|
4815
|
+
zoneId: string;
|
|
5058
4816
|
headers?: {
|
|
5059
4817
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5060
4818
|
"x-access-token"?: string | undefined;
|
|
@@ -5078,9 +4836,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5078
4836
|
}, 400, "application/json">>>;
|
|
5079
4837
|
/** updates srv-records for a specific zone */
|
|
5080
4838
|
dnsRecordSrvSet: (request: {
|
|
5081
|
-
|
|
5082
|
-
zoneId: string;
|
|
5083
|
-
};
|
|
4839
|
+
zoneId: string;
|
|
5084
4840
|
headers?: {
|
|
5085
4841
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5086
4842
|
"x-access-token"?: string | undefined;
|
|
@@ -5096,9 +4852,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5096
4852
|
} | undefined;
|
|
5097
4853
|
};
|
|
5098
4854
|
};
|
|
5099
|
-
|
|
5100
|
-
zoneId: string;
|
|
5101
|
-
};
|
|
4855
|
+
zoneId: string;
|
|
5102
4856
|
headers?: {
|
|
5103
4857
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5104
4858
|
"x-access-token"?: string | undefined;
|
|
@@ -5131,9 +4885,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5131
4885
|
}, 400, "application/json">>>;
|
|
5132
4886
|
/** updates txt-records for a specific zone */
|
|
5133
4887
|
dnsRecordTxtSet: (request: {
|
|
5134
|
-
|
|
5135
|
-
zoneId: string;
|
|
5136
|
-
};
|
|
4888
|
+
zoneId: string;
|
|
5137
4889
|
headers?: {
|
|
5138
4890
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5139
4891
|
"x-access-token"?: string | undefined;
|
|
@@ -5149,9 +4901,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5149
4901
|
} | undefined;
|
|
5150
4902
|
};
|
|
5151
4903
|
};
|
|
5152
|
-
|
|
5153
|
-
zoneId: string;
|
|
5154
|
-
};
|
|
4904
|
+
zoneId: string;
|
|
5155
4905
|
headers?: {
|
|
5156
4906
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5157
4907
|
"x-access-token"?: string | undefined;
|
|
@@ -5214,9 +4964,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5214
4964
|
}, 400, "application/json">>>;
|
|
5215
4965
|
/** gets a specific zone */
|
|
5216
4966
|
dnsZoneGetSpecific: (request: {
|
|
5217
|
-
|
|
5218
|
-
zoneId: string;
|
|
5219
|
-
};
|
|
4967
|
+
zoneId: string;
|
|
5220
4968
|
headers?: {
|
|
5221
4969
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5222
4970
|
"x-access-token"?: string | undefined;
|
|
@@ -5250,9 +4998,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5250
4998
|
}, 400, "application/json">>>;
|
|
5251
4999
|
/** gets all dns zones by project id */
|
|
5252
5000
|
dnsZonesForProject: (request: {
|
|
5253
|
-
|
|
5254
|
-
projectId: string;
|
|
5255
|
-
};
|
|
5001
|
+
projectId: string;
|
|
5256
5002
|
headers?: {
|
|
5257
5003
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5258
5004
|
"x-access-token"?: string | undefined;
|
|
@@ -5276,9 +5022,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5276
5022
|
}, 400, "application/json">>>;
|
|
5277
5023
|
/** Abort a declare process. */
|
|
5278
5024
|
abortDeclareProcess: (request: {
|
|
5279
|
-
|
|
5280
|
-
domainId: string;
|
|
5281
|
-
};
|
|
5025
|
+
domainId: string;
|
|
5282
5026
|
headers?: {
|
|
5283
5027
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5284
5028
|
"x-access-token"?: string | undefined;
|
|
@@ -5307,9 +5051,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5307
5051
|
data: {
|
|
5308
5052
|
ownerC: [import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField[]];
|
|
5309
5053
|
};
|
|
5310
|
-
|
|
5311
|
-
domainId: string;
|
|
5312
|
-
};
|
|
5054
|
+
domainId: string;
|
|
5313
5055
|
headers?: {
|
|
5314
5056
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5315
5057
|
"x-access-token"?: string | undefined;
|
|
@@ -5341,9 +5083,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5341
5083
|
}, 404, "application/json">>>;
|
|
5342
5084
|
/** Change the Project relation of a Domain. */
|
|
5343
5085
|
changeProjectOfDomain: (request: {
|
|
5344
|
-
|
|
5345
|
-
domainId: string;
|
|
5346
|
-
};
|
|
5086
|
+
domainId: string;
|
|
5347
5087
|
data?: {
|
|
5348
5088
|
projectId?: string | undefined;
|
|
5349
5089
|
} | undefined;
|
|
@@ -5397,9 +5137,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5397
5137
|
}, 400, "application/json">>>;
|
|
5398
5138
|
/** Create an AuthCode for a Domains transfer out process. */
|
|
5399
5139
|
createAuthcodeForDomain: (request: {
|
|
5400
|
-
|
|
5401
|
-
domainId: string;
|
|
5402
|
-
};
|
|
5140
|
+
domainId: string;
|
|
5403
5141
|
data?: {
|
|
5404
5142
|
[x: string]: unknown;
|
|
5405
5143
|
} | undefined;
|
|
@@ -5434,9 +5172,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5434
5172
|
}, 404, "application/json">>>;
|
|
5435
5173
|
/** Create an AuthCode2. */
|
|
5436
5174
|
createAuthcode2ForDomain: (request: {
|
|
5437
|
-
|
|
5438
|
-
domainId: string;
|
|
5439
|
-
};
|
|
5175
|
+
domainId: string;
|
|
5440
5176
|
data?: {
|
|
5441
5177
|
[x: string]: unknown;
|
|
5442
5178
|
} | undefined;
|
|
@@ -5469,9 +5205,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5469
5205
|
}, 404, "application/json">>>;
|
|
5470
5206
|
/** Change all nameservers of a Domain. */
|
|
5471
5207
|
declareNameservers: (request: {
|
|
5472
|
-
|
|
5473
|
-
domainId: string;
|
|
5474
|
-
};
|
|
5208
|
+
domainId: string;
|
|
5475
5209
|
data?: {
|
|
5476
5210
|
nameservers?: [string, string, ...string[]] | undefined;
|
|
5477
5211
|
} | undefined;
|
|
@@ -5507,9 +5241,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5507
5241
|
data: {
|
|
5508
5242
|
authCode: string;
|
|
5509
5243
|
};
|
|
5510
|
-
|
|
5511
|
-
domainId: string;
|
|
5512
|
-
};
|
|
5244
|
+
domainId: string;
|
|
5513
5245
|
headers?: {
|
|
5514
5246
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5515
5247
|
"x-access-token"?: string | undefined;
|
|
@@ -5544,9 +5276,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5544
5276
|
data: {
|
|
5545
5277
|
ownerC: [import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField[]];
|
|
5546
5278
|
};
|
|
5547
|
-
|
|
5548
|
-
domainId: string;
|
|
5549
|
-
};
|
|
5279
|
+
domainId: string;
|
|
5550
5280
|
headers?: {
|
|
5551
5281
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5552
5282
|
"x-access-token"?: string | undefined;
|
|
@@ -5578,9 +5308,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5578
5308
|
}, 404, "application/json">>>;
|
|
5579
5309
|
/** Get a Domain. */
|
|
5580
5310
|
getDomain: (request: {
|
|
5581
|
-
|
|
5582
|
-
domainId: string;
|
|
5583
|
-
};
|
|
5311
|
+
domainId: string;
|
|
5584
5312
|
headers?: {
|
|
5585
5313
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5586
5314
|
"x-access-token"?: string | undefined;
|
|
@@ -5623,9 +5351,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5623
5351
|
}, 404, "application/json">>>;
|
|
5624
5352
|
/** Delete a Domain. */
|
|
5625
5353
|
deleteDomain: (request: {
|
|
5626
|
-
|
|
5627
|
-
domainId: string;
|
|
5628
|
-
};
|
|
5354
|
+
domainId: string;
|
|
5629
5355
|
data?: {
|
|
5630
5356
|
transit?: boolean | undefined;
|
|
5631
5357
|
} | undefined;
|
|
@@ -5660,9 +5386,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5660
5386
|
}, 404, "application/json">>>;
|
|
5661
5387
|
/** Get a HandleSchema. */
|
|
5662
5388
|
getHandleFields: (request: {
|
|
5663
|
-
|
|
5664
|
-
domainName: string;
|
|
5665
|
-
};
|
|
5389
|
+
domainName: string;
|
|
5666
5390
|
headers?: {
|
|
5667
5391
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5668
5392
|
} | undefined;
|
|
@@ -5684,9 +5408,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5684
5408
|
domainName: string;
|
|
5685
5409
|
path: string;
|
|
5686
5410
|
};
|
|
5687
|
-
|
|
5688
|
-
domainId: string;
|
|
5689
|
-
};
|
|
5411
|
+
domainId: string;
|
|
5690
5412
|
headers?: {
|
|
5691
5413
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5692
5414
|
"x-access-token"?: string | undefined;
|
|
@@ -5717,9 +5439,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5717
5439
|
}, 404, "application/json">>>;
|
|
5718
5440
|
/** Get a domain ownership. */
|
|
5719
5441
|
getSpecificDomainOwnership: (request: {
|
|
5720
|
-
|
|
5721
|
-
domainOwnershipId: string;
|
|
5722
|
-
};
|
|
5442
|
+
domainOwnershipId: string;
|
|
5723
5443
|
headers?: {
|
|
5724
5444
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5725
5445
|
"x-access-token"?: string | undefined;
|
|
@@ -5750,9 +5470,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5750
5470
|
}, 404, "application/json">>>;
|
|
5751
5471
|
/** Verify a domain ownership. */
|
|
5752
5472
|
verifyDomainOwnership: (request: {
|
|
5753
|
-
|
|
5754
|
-
domainOwnershipId: string;
|
|
5755
|
-
};
|
|
5473
|
+
domainOwnershipId: string;
|
|
5756
5474
|
data?: {
|
|
5757
5475
|
[x: string]: unknown;
|
|
5758
5476
|
} | undefined;
|
|
@@ -5785,9 +5503,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5785
5503
|
}, 404, "application/json">>>;
|
|
5786
5504
|
/** List all domain ownerships of a project. */
|
|
5787
5505
|
listDomainOwnerships: (request: {
|
|
5788
|
-
|
|
5789
|
-
projectId: string;
|
|
5790
|
-
};
|
|
5506
|
+
projectId: string;
|
|
5791
5507
|
headers?: {
|
|
5792
5508
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5793
5509
|
"x-access-token"?: string | undefined;
|
|
@@ -5811,9 +5527,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5811
5527
|
}, 400, "application/json">>>;
|
|
5812
5528
|
/** List Domains belonging to a Project. */
|
|
5813
5529
|
listDomains: (request: {
|
|
5814
|
-
|
|
5815
|
-
projectId: string;
|
|
5816
|
-
};
|
|
5530
|
+
projectId: string;
|
|
5817
5531
|
headers?: {
|
|
5818
5532
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5819
5533
|
"x-access-token"?: string | undefined;
|
|
@@ -5851,9 +5565,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5851
5565
|
}, 400, "application/json">>>;
|
|
5852
5566
|
/** Resend a domain email. */
|
|
5853
5567
|
resendDomainEmail: (request: {
|
|
5854
|
-
|
|
5855
|
-
domainId: string;
|
|
5856
|
-
};
|
|
5568
|
+
domainId: string;
|
|
5857
5569
|
data?: {
|
|
5858
5570
|
[x: string]: unknown;
|
|
5859
5571
|
} | undefined;
|
|
@@ -5918,9 +5630,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5918
5630
|
}, 404, "application/json">>>;
|
|
5919
5631
|
/** Get an Ingress. */
|
|
5920
5632
|
ingressGetSpecific: (request: {
|
|
5921
|
-
|
|
5922
|
-
ingressId: string;
|
|
5923
|
-
};
|
|
5633
|
+
ingressId: string;
|
|
5924
5634
|
headers?: {
|
|
5925
5635
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5926
5636
|
"x-access-token"?: string | undefined;
|
|
@@ -5940,7 +5650,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5940
5650
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5941
5651
|
}>;
|
|
5942
5652
|
}, import("@mittwald/api-client-commons").Response<{
|
|
5943
|
-
dnsValidationErrors: ("ERROR_UNSPECIFIED" | "ERROR_QUAD_A" | "ERROR_NO_A_RECORD")[];
|
|
5653
|
+
dnsValidationErrors: ("ERROR_UNSPECIFIED" | "ERROR_QUAD_A" | "ERROR_NO_A_RECORD" | "ERROR_ACME_CERTIFICATE_REQUEST_DEADLINE_EXCEEDED")[];
|
|
5944
5654
|
hostname: string;
|
|
5945
5655
|
id: string;
|
|
5946
5656
|
ips: {
|
|
@@ -5956,9 +5666,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5956
5666
|
}, 404, "application/json">>>;
|
|
5957
5667
|
/** Delete an Ingress. */
|
|
5958
5668
|
ingressDelete: (request: {
|
|
5959
|
-
|
|
5960
|
-
ingressId: string;
|
|
5961
|
-
};
|
|
5669
|
+
ingressId: string;
|
|
5962
5670
|
headers?: {
|
|
5963
5671
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5964
5672
|
"x-access-token"?: string | undefined;
|
|
@@ -6001,9 +5709,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6001
5709
|
}, 404, "application/json">>>;
|
|
6002
5710
|
/** List Ingresses belonging to a project. */
|
|
6003
5711
|
ingressListForProject: (request: {
|
|
6004
|
-
|
|
6005
|
-
projectId: string;
|
|
6006
|
-
};
|
|
5712
|
+
projectId: string;
|
|
6007
5713
|
headers?: {
|
|
6008
5714
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6009
5715
|
"x-access-token"?: string | undefined;
|
|
@@ -6028,9 +5734,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6028
5734
|
/** Update an Ingresses paths. */
|
|
6029
5735
|
ingressPaths: (request: {
|
|
6030
5736
|
data: import("./types.js").MittwaldAPIV2.Components.Schemas.IngressPath[];
|
|
6031
|
-
|
|
6032
|
-
ingressId: string;
|
|
6033
|
-
};
|
|
5737
|
+
ingressId: string;
|
|
6034
5738
|
headers?: {
|
|
6035
5739
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6036
5740
|
"x-access-token"?: string | undefined;
|
|
@@ -6056,9 +5760,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6056
5760
|
}, 404, "application/json">>>;
|
|
6057
5761
|
/** Request ACME certificate issuance */
|
|
6058
5762
|
ingressRequestAcmeCertificateIssuance: (request: {
|
|
6059
|
-
|
|
6060
|
-
ingressId: string;
|
|
6061
|
-
};
|
|
5763
|
+
ingressId: string;
|
|
6062
5764
|
headers?: {
|
|
6063
5765
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6064
5766
|
"x-access-token"?: string | undefined;
|
|
@@ -6087,9 +5789,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6087
5789
|
data: {
|
|
6088
5790
|
acme: boolean;
|
|
6089
5791
|
};
|
|
6090
|
-
|
|
6091
|
-
ingressId: string;
|
|
6092
|
-
};
|
|
5792
|
+
ingressId: string;
|
|
6093
5793
|
headers?: {
|
|
6094
5794
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6095
5795
|
"x-access-token"?: string | undefined;
|
|
@@ -6098,9 +5798,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6098
5798
|
data: {
|
|
6099
5799
|
certificateId: string;
|
|
6100
5800
|
};
|
|
6101
|
-
|
|
6102
|
-
ingressId: string;
|
|
6103
|
-
};
|
|
5801
|
+
ingressId: string;
|
|
6104
5802
|
headers?: {
|
|
6105
5803
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6106
5804
|
"x-access-token"?: string | undefined;
|
|
@@ -6168,9 +5866,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6168
5866
|
}, 500, "application/json">>>;
|
|
6169
5867
|
/** Get a File's meta. */
|
|
6170
5868
|
getFileMeta: (request: {
|
|
6171
|
-
|
|
6172
|
-
id: string;
|
|
6173
|
-
};
|
|
5869
|
+
id: string;
|
|
6174
5870
|
headers?: {
|
|
6175
5871
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6176
5872
|
} | undefined;
|
|
@@ -6193,9 +5889,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6193
5889
|
}, 404, "application/json">>>;
|
|
6194
5890
|
/** Get a Token's upload rules. */
|
|
6195
5891
|
getFileTokenRules: (request: {
|
|
6196
|
-
|
|
6197
|
-
token: string;
|
|
6198
|
-
};
|
|
5892
|
+
token: string;
|
|
6199
5893
|
headers?: {
|
|
6200
5894
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6201
5895
|
} | undefined;
|
|
@@ -6229,9 +5923,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6229
5923
|
}, 500, "application/json">>>;
|
|
6230
5924
|
/** Get a Type's upload rules. */
|
|
6231
5925
|
getFileTypeRules: (request: {
|
|
6232
|
-
|
|
6233
|
-
name: "avatar" | "conversation";
|
|
6234
|
-
};
|
|
5926
|
+
name: "avatar" | "conversation";
|
|
6235
5927
|
headers?: {
|
|
6236
5928
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6237
5929
|
} | undefined;
|
|
@@ -6265,9 +5957,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6265
5957
|
}, 500, "application/json">>>;
|
|
6266
5958
|
/** Get a File. */
|
|
6267
5959
|
getFile: (request: {
|
|
6268
|
-
|
|
6269
|
-
id: string;
|
|
6270
|
-
};
|
|
5960
|
+
id: string;
|
|
6271
5961
|
headers?: {
|
|
6272
5962
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6273
5963
|
Accept?: "binary" | "base64" | "ocr" | undefined;
|
|
@@ -6300,9 +5990,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6300
5990
|
readonly mail: {
|
|
6301
5991
|
/** Get all deliveryboxes by project ID */
|
|
6302
5992
|
deliveryboxList: (request: {
|
|
6303
|
-
|
|
6304
|
-
projectId: string;
|
|
6305
|
-
};
|
|
5993
|
+
projectId: string;
|
|
6306
5994
|
headers?: {
|
|
6307
5995
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6308
5996
|
"x-access-token"?: string | undefined;
|
|
@@ -6328,9 +6016,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6328
6016
|
description: string;
|
|
6329
6017
|
password: string;
|
|
6330
6018
|
};
|
|
6331
|
-
|
|
6332
|
-
projectId: string;
|
|
6333
|
-
};
|
|
6019
|
+
projectId: string;
|
|
6334
6020
|
headers?: {
|
|
6335
6021
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6336
6022
|
"x-access-token"?: string | undefined;
|
|
@@ -6359,9 +6045,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6359
6045
|
}, 201, "application/json">>>;
|
|
6360
6046
|
/** Get a specific deliverybox */
|
|
6361
6047
|
deliveryboxGetSpecific: (request: {
|
|
6362
|
-
|
|
6363
|
-
id: string;
|
|
6364
|
-
};
|
|
6048
|
+
id: string;
|
|
6365
6049
|
headers?: {
|
|
6366
6050
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6367
6051
|
"x-access-token"?: string | undefined;
|
|
@@ -6392,9 +6076,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6392
6076
|
}, 200, "application/json">>>;
|
|
6393
6077
|
/** Delete a specific deliverybox */
|
|
6394
6078
|
deliveryboxDelete: (request: {
|
|
6395
|
-
|
|
6396
|
-
id: string;
|
|
6397
|
-
};
|
|
6079
|
+
id: string;
|
|
6398
6080
|
headers?: {
|
|
6399
6081
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6400
6082
|
"x-access-token"?: string | undefined;
|
|
@@ -6419,9 +6101,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6419
6101
|
data: {
|
|
6420
6102
|
description: string;
|
|
6421
6103
|
};
|
|
6422
|
-
|
|
6423
|
-
id: string;
|
|
6424
|
-
};
|
|
6104
|
+
id: string;
|
|
6425
6105
|
headers?: {
|
|
6426
6106
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6427
6107
|
"x-access-token"?: string | undefined;
|
|
@@ -6450,9 +6130,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6450
6130
|
data: {
|
|
6451
6131
|
password: string;
|
|
6452
6132
|
};
|
|
6453
|
-
|
|
6454
|
-
id: string;
|
|
6455
|
-
};
|
|
6133
|
+
id: string;
|
|
6456
6134
|
headers?: {
|
|
6457
6135
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6458
6136
|
"x-access-token"?: string | undefined;
|
|
@@ -6478,9 +6156,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6478
6156
|
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
|
|
6479
6157
|
/** Get all mail addresses for a project ID */
|
|
6480
6158
|
mailaddressList: (request: {
|
|
6481
|
-
|
|
6482
|
-
projectId: string;
|
|
6483
|
-
};
|
|
6159
|
+
projectId: string;
|
|
6484
6160
|
headers?: {
|
|
6485
6161
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6486
6162
|
"x-access-token"?: string | undefined;
|
|
@@ -6511,9 +6187,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6511
6187
|
quotaInBytes: number;
|
|
6512
6188
|
};
|
|
6513
6189
|
};
|
|
6514
|
-
|
|
6515
|
-
projectId: string;
|
|
6516
|
-
};
|
|
6190
|
+
projectId: string;
|
|
6517
6191
|
headers?: {
|
|
6518
6192
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6519
6193
|
"x-access-token"?: string | undefined;
|
|
@@ -6523,9 +6197,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6523
6197
|
address: string;
|
|
6524
6198
|
forwardAddresses: string[];
|
|
6525
6199
|
};
|
|
6526
|
-
|
|
6527
|
-
projectId: string;
|
|
6528
|
-
};
|
|
6200
|
+
projectId: string;
|
|
6529
6201
|
headers?: {
|
|
6530
6202
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6531
6203
|
"x-access-token"?: string | undefined;
|
|
@@ -6536,7 +6208,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6536
6208
|
isCatchAll: boolean;
|
|
6537
6209
|
mailbox: {
|
|
6538
6210
|
enableSpamProtection: boolean;
|
|
6539
|
-
password: string;
|
|
6211
|
+
password: string; /** Confirm password reset. */
|
|
6540
6212
|
quotaInBytes: number;
|
|
6541
6213
|
};
|
|
6542
6214
|
};
|
|
@@ -6566,9 +6238,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6566
6238
|
}, 400, "application/json">>>;
|
|
6567
6239
|
/** Get a specific mail address */
|
|
6568
6240
|
mailaddressGetSpecific: (request: {
|
|
6569
|
-
|
|
6570
|
-
id: string;
|
|
6571
|
-
};
|
|
6241
|
+
id: string;
|
|
6572
6242
|
headers?: {
|
|
6573
6243
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6574
6244
|
"x-access-token"?: string | undefined;
|
|
@@ -6591,7 +6261,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6591
6261
|
address: string;
|
|
6592
6262
|
autoResponder: {
|
|
6593
6263
|
active: boolean;
|
|
6594
|
-
/** Store a new ssh-key. */
|
|
6595
6264
|
expiresAt?: string | undefined;
|
|
6596
6265
|
message: string;
|
|
6597
6266
|
startsAt?: string | undefined;
|
|
@@ -6623,9 +6292,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6623
6292
|
}, 200, "application/json">>>;
|
|
6624
6293
|
/** Delete a specific mail address */
|
|
6625
6294
|
mailaddressDelete: (request: {
|
|
6626
|
-
|
|
6627
|
-
id: string;
|
|
6628
|
-
};
|
|
6295
|
+
id: string;
|
|
6629
6296
|
headers?: {
|
|
6630
6297
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6631
6298
|
"x-access-token"?: string | undefined;
|
|
@@ -6650,9 +6317,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6650
6317
|
data: {
|
|
6651
6318
|
address: string;
|
|
6652
6319
|
};
|
|
6653
|
-
|
|
6654
|
-
id: string;
|
|
6655
|
-
};
|
|
6320
|
+
id: string;
|
|
6656
6321
|
headers?: {
|
|
6657
6322
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6658
6323
|
"x-access-token"?: string | undefined;
|
|
@@ -6686,9 +6351,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6686
6351
|
startsAt?: string | undefined;
|
|
6687
6352
|
};
|
|
6688
6353
|
};
|
|
6689
|
-
|
|
6690
|
-
id: string;
|
|
6691
|
-
};
|
|
6354
|
+
id: string;
|
|
6692
6355
|
headers?: {
|
|
6693
6356
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6694
6357
|
"x-access-token"?: string | undefined;
|
|
@@ -6722,9 +6385,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6722
6385
|
data: {
|
|
6723
6386
|
active: boolean;
|
|
6724
6387
|
};
|
|
6725
|
-
|
|
6726
|
-
id: string;
|
|
6727
|
-
};
|
|
6388
|
+
id: string;
|
|
6728
6389
|
headers?: {
|
|
6729
6390
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6730
6391
|
"x-access-token"?: string | undefined;
|
|
@@ -6755,9 +6416,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6755
6416
|
data: {
|
|
6756
6417
|
forwardAddresses: string[];
|
|
6757
6418
|
};
|
|
6758
|
-
|
|
6759
|
-
id: string;
|
|
6760
|
-
};
|
|
6419
|
+
id: string;
|
|
6761
6420
|
headers?: {
|
|
6762
6421
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6763
6422
|
"x-access-token"?: string | undefined;
|
|
@@ -6786,9 +6445,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6786
6445
|
data: {
|
|
6787
6446
|
password: string;
|
|
6788
6447
|
};
|
|
6789
|
-
|
|
6790
|
-
id: string;
|
|
6791
|
-
};
|
|
6448
|
+
id: string;
|
|
6792
6449
|
headers?: {
|
|
6793
6450
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6794
6451
|
"x-access-token"?: string | undefined;
|
|
@@ -6817,9 +6474,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6817
6474
|
data: {
|
|
6818
6475
|
quotaInBytes: number;
|
|
6819
6476
|
};
|
|
6820
|
-
|
|
6821
|
-
id: string;
|
|
6822
|
-
};
|
|
6477
|
+
id: string;
|
|
6823
6478
|
headers?: {
|
|
6824
6479
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6825
6480
|
"x-access-token"?: string | undefined;
|
|
@@ -6853,9 +6508,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6853
6508
|
relocationMinSpamScore: number;
|
|
6854
6509
|
};
|
|
6855
6510
|
};
|
|
6856
|
-
|
|
6857
|
-
id: string;
|
|
6858
|
-
};
|
|
6511
|
+
id: string;
|
|
6859
6512
|
headers?: {
|
|
6860
6513
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6861
6514
|
"x-access-token"?: string | undefined;
|
|
@@ -6886,9 +6539,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6886
6539
|
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
|
|
6887
6540
|
/** Get settings for a given project ID */
|
|
6888
6541
|
projectsettingGetSpecific: (request: {
|
|
6889
|
-
|
|
6890
|
-
projectId: string;
|
|
6891
|
-
};
|
|
6542
|
+
projectId: string;
|
|
6892
6543
|
headers?: {
|
|
6893
6544
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6894
6545
|
"x-access-token"?: string | undefined;
|
|
@@ -6917,9 +6568,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6917
6568
|
data: {
|
|
6918
6569
|
blacklist: string[];
|
|
6919
6570
|
};
|
|
6920
|
-
|
|
6921
|
-
projectId: string;
|
|
6922
|
-
};
|
|
6571
|
+
projectId: string;
|
|
6923
6572
|
headers?: {
|
|
6924
6573
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6925
6574
|
"x-access-token"?: string | undefined;
|
|
@@ -6948,9 +6597,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6948
6597
|
data: {
|
|
6949
6598
|
whitelist: string[];
|
|
6950
6599
|
};
|
|
6951
|
-
|
|
6952
|
-
projectId: string;
|
|
6953
|
-
};
|
|
6600
|
+
projectId: string;
|
|
6954
6601
|
headers?: {
|
|
6955
6602
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6956
6603
|
"x-access-token"?: string | undefined;
|
|
@@ -7121,9 +6768,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7121
6768
|
data: {
|
|
7122
6769
|
status: "read";
|
|
7123
6770
|
};
|
|
7124
|
-
|
|
7125
|
-
messageId: string;
|
|
7126
|
-
};
|
|
6771
|
+
messageId: string;
|
|
7127
6772
|
headers?: {
|
|
7128
6773
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7129
6774
|
"x-access-token"?: string | undefined;
|
|
@@ -7156,9 +6801,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7156
6801
|
readonly project: {
|
|
7157
6802
|
/** Accept a ProjectInvite. */
|
|
7158
6803
|
acceptProjectInvite: (request: {
|
|
7159
|
-
|
|
7160
|
-
inviteId: string;
|
|
7161
|
-
};
|
|
6804
|
+
inviteId: string;
|
|
7162
6805
|
data?: {
|
|
7163
6806
|
invitationToken?: string | undefined;
|
|
7164
6807
|
} | undefined;
|
|
@@ -7199,9 +6842,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7199
6842
|
membershipExpiresAt?: string | undefined;
|
|
7200
6843
|
message?: string | undefined;
|
|
7201
6844
|
};
|
|
7202
|
-
|
|
7203
|
-
projectId: string;
|
|
7204
|
-
};
|
|
6845
|
+
projectId: string;
|
|
7205
6846
|
headers?: {
|
|
7206
6847
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7207
6848
|
"x-access-token"?: string | undefined;
|
|
@@ -7246,9 +6887,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7246
6887
|
data: {
|
|
7247
6888
|
description: string;
|
|
7248
6889
|
};
|
|
7249
|
-
|
|
7250
|
-
serverId: string;
|
|
7251
|
-
};
|
|
6890
|
+
serverId: string;
|
|
7252
6891
|
headers?: {
|
|
7253
6892
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7254
6893
|
"x-access-token"?: string | undefined;
|
|
@@ -7280,9 +6919,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7280
6919
|
}, 412, "application/json">>>;
|
|
7281
6920
|
/** Decline a ProjectInvite. */
|
|
7282
6921
|
declineProjectInvite: (request: {
|
|
7283
|
-
|
|
7284
|
-
inviteId: string;
|
|
7285
|
-
};
|
|
6922
|
+
inviteId: string;
|
|
7286
6923
|
data?: {
|
|
7287
6924
|
[x: string]: unknown;
|
|
7288
6925
|
} | undefined;
|
|
@@ -7311,9 +6948,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7311
6948
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
7312
6949
|
/** Request a Project avatar upload. */
|
|
7313
6950
|
requestProjectAvatarUpload: (request: {
|
|
7314
|
-
|
|
7315
|
-
projectId: string;
|
|
7316
|
-
};
|
|
6951
|
+
projectId: string;
|
|
7317
6952
|
headers?: {
|
|
7318
6953
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7319
6954
|
"x-access-token"?: string | undefined;
|
|
@@ -7340,9 +6975,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7340
6975
|
}, 400, "application/json">>>;
|
|
7341
6976
|
/** Delete a Project's avatar. */
|
|
7342
6977
|
deleteProjectAvatar: (request: {
|
|
7343
|
-
|
|
7344
|
-
projectId: string;
|
|
7345
|
-
};
|
|
6978
|
+
projectId: string;
|
|
7346
6979
|
headers?: {
|
|
7347
6980
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7348
6981
|
"x-access-token"?: string | undefined;
|
|
@@ -7366,9 +6999,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7366
6999
|
}, 400, "application/json">>>;
|
|
7367
7000
|
/** Get a ProjectInvite. */
|
|
7368
7001
|
getProjectInvite: (request: {
|
|
7369
|
-
|
|
7370
|
-
inviteId: string;
|
|
7371
|
-
};
|
|
7002
|
+
inviteId: string;
|
|
7372
7003
|
headers?: {
|
|
7373
7004
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7374
7005
|
"x-access-token"?: string | undefined;
|
|
@@ -7401,9 +7032,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7401
7032
|
}, 404, "application/json">>>;
|
|
7402
7033
|
/** Delete a ProjectInvite. */
|
|
7403
7034
|
deleteProjectInvite: (request: {
|
|
7404
|
-
|
|
7405
|
-
inviteId: string;
|
|
7406
|
-
};
|
|
7035
|
+
inviteId: string;
|
|
7407
7036
|
headers?: {
|
|
7408
7037
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7409
7038
|
"x-access-token"?: string | undefined;
|
|
@@ -7425,9 +7054,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7425
7054
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
7426
7055
|
/** Get a ProjectMembership */
|
|
7427
7056
|
getProjectMembership: (request: {
|
|
7428
|
-
|
|
7429
|
-
membershipId: string;
|
|
7430
|
-
};
|
|
7057
|
+
membershipId: string;
|
|
7431
7058
|
headers?: {
|
|
7432
7059
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7433
7060
|
"x-access-token"?: string | undefined;
|
|
@@ -7460,9 +7087,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7460
7087
|
}, 404, "application/json">>>;
|
|
7461
7088
|
/** Delete a ProjectMembership. */
|
|
7462
7089
|
deleteProjectMembership: (request: {
|
|
7463
|
-
|
|
7464
|
-
membershipId: string;
|
|
7465
|
-
};
|
|
7090
|
+
membershipId: string;
|
|
7466
7091
|
headers?: {
|
|
7467
7092
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7468
7093
|
"x-access-token"?: string | undefined;
|
|
@@ -7488,9 +7113,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7488
7113
|
role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
7489
7114
|
expiresAt?: string | undefined;
|
|
7490
7115
|
};
|
|
7491
|
-
|
|
7492
|
-
membershipId: string;
|
|
7493
|
-
};
|
|
7116
|
+
membershipId: string;
|
|
7494
7117
|
headers?: {
|
|
7495
7118
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7496
7119
|
"x-access-token"?: string | undefined;
|
|
@@ -7517,9 +7140,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7517
7140
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
7518
7141
|
/** Delete a Project. */
|
|
7519
7142
|
deleteProject: (request: {
|
|
7520
|
-
|
|
7521
|
-
projectId: string;
|
|
7522
|
-
};
|
|
7143
|
+
projectId: string;
|
|
7523
7144
|
headers?: {
|
|
7524
7145
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7525
7146
|
"x-access-token"?: string | undefined;
|
|
@@ -7547,9 +7168,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7547
7168
|
}, 500, "application/json">>>;
|
|
7548
7169
|
/** Request a Server avatar upload. */
|
|
7549
7170
|
requestServerAvatarUpload: (request: {
|
|
7550
|
-
|
|
7551
|
-
serverId: string;
|
|
7552
|
-
};
|
|
7171
|
+
serverId: string;
|
|
7553
7172
|
headers?: {
|
|
7554
7173
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7555
7174
|
"x-access-token"?: string | undefined;
|
|
@@ -7576,9 +7195,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7576
7195
|
}, 400, "application/json">>>;
|
|
7577
7196
|
/** Delete a Server's avatar. */
|
|
7578
7197
|
deleteServerAvatar: (request: {
|
|
7579
|
-
|
|
7580
|
-
serverId: string;
|
|
7581
|
-
};
|
|
7198
|
+
serverId: string;
|
|
7582
7199
|
headers?: {
|
|
7583
7200
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7584
7201
|
"x-access-token"?: string | undefined;
|
|
@@ -7631,9 +7248,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7631
7248
|
}, 404, "application/json">>>;
|
|
7632
7249
|
/** Get a Project. */
|
|
7633
7250
|
getProject: (request: {
|
|
7634
|
-
|
|
7635
|
-
id: string;
|
|
7636
|
-
};
|
|
7251
|
+
id: string;
|
|
7637
7252
|
headers?: {
|
|
7638
7253
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7639
7254
|
"x-access-token"?: string | undefined;
|
|
@@ -7677,9 +7292,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7677
7292
|
}, 404, "application/json">>>;
|
|
7678
7293
|
/** Get the executing user's membership in a Project. */
|
|
7679
7294
|
getSelfMembershipForProject: (request: {
|
|
7680
|
-
|
|
7681
|
-
projectId: string;
|
|
7682
|
-
};
|
|
7295
|
+
projectId: string;
|
|
7683
7296
|
headers?: {
|
|
7684
7297
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7685
7298
|
"x-access-token"?: string | undefined;
|
|
@@ -7712,9 +7325,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7712
7325
|
}, 404, "application/json">>>;
|
|
7713
7326
|
/** Get a Server. */
|
|
7714
7327
|
getServer: (request: {
|
|
7715
|
-
|
|
7716
|
-
serverId: string;
|
|
7717
|
-
};
|
|
7328
|
+
serverId: string;
|
|
7718
7329
|
headers?: {
|
|
7719
7330
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7720
7331
|
"x-access-token"?: string | undefined;
|
|
@@ -7751,9 +7362,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7751
7362
|
}, 404, "application/json">>>;
|
|
7752
7363
|
/** Leave a Project. */
|
|
7753
7364
|
leaveProject: (request: {
|
|
7754
|
-
|
|
7755
|
-
projectId: string;
|
|
7756
|
-
};
|
|
7365
|
+
projectId: string;
|
|
7757
7366
|
data?: {
|
|
7758
7367
|
[x: string]: unknown;
|
|
7759
7368
|
} | undefined;
|
|
@@ -7782,9 +7391,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7782
7391
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
7783
7392
|
/** List Invites belonging to a Project. */
|
|
7784
7393
|
listInvitesForProject: (request: {
|
|
7785
|
-
|
|
7786
|
-
projectId: string;
|
|
7787
|
-
};
|
|
7394
|
+
projectId: string;
|
|
7788
7395
|
headers?: {
|
|
7789
7396
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7790
7397
|
"x-access-token"?: string | undefined;
|
|
@@ -7820,9 +7427,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7820
7427
|
}, 404, "application/json">>>;
|
|
7821
7428
|
/** List Memberships belonging to a Project. */
|
|
7822
7429
|
listMembershipsForProject: (request: {
|
|
7823
|
-
|
|
7824
|
-
projectId: string;
|
|
7825
|
-
};
|
|
7430
|
+
projectId: string;
|
|
7826
7431
|
headers?: {
|
|
7827
7432
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7828
7433
|
"x-access-token"?: string | undefined;
|
|
@@ -8002,9 +7607,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8002
7607
|
}, 403, "application/json">>>;
|
|
8003
7608
|
/** Resend the mail for a ProjectInvite. */
|
|
8004
7609
|
resendProjectInviteMail: (request: {
|
|
8005
|
-
|
|
8006
|
-
inviteId: string;
|
|
8007
|
-
};
|
|
7610
|
+
inviteId: string;
|
|
8008
7611
|
data?: {
|
|
8009
7612
|
[x: string]: unknown;
|
|
8010
7613
|
} | undefined;
|
|
@@ -8038,9 +7641,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8038
7641
|
data: {
|
|
8039
7642
|
description: string;
|
|
8040
7643
|
};
|
|
8041
|
-
|
|
8042
|
-
id: string;
|
|
8043
|
-
};
|
|
7644
|
+
id: string;
|
|
8044
7645
|
headers?: {
|
|
8045
7646
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8046
7647
|
"x-access-token"?: string | undefined;
|
|
@@ -8073,9 +7674,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8073
7674
|
data: {
|
|
8074
7675
|
description: string;
|
|
8075
7676
|
};
|
|
8076
|
-
|
|
8077
|
-
serverId: string;
|
|
8078
|
-
};
|
|
7677
|
+
serverId: string;
|
|
8079
7678
|
headers?: {
|
|
8080
7679
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8081
7680
|
"x-access-token"?: string | undefined;
|
|
@@ -8106,9 +7705,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8106
7705
|
readonly projectFileSystem: {
|
|
8107
7706
|
/** List directories belonging to a Project. */
|
|
8108
7707
|
getDirectories: (request: {
|
|
8109
|
-
|
|
8110
|
-
projectId: string;
|
|
8111
|
-
};
|
|
7708
|
+
projectId: string;
|
|
8112
7709
|
headers?: {
|
|
8113
7710
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8114
7711
|
"x-access-token"?: string | undefined;
|
|
@@ -8166,9 +7763,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8166
7763
|
}, 503, "application/json">>>;
|
|
8167
7764
|
/** Get a Project directory filesystem usage. */
|
|
8168
7765
|
getDiskUsage: (request: {
|
|
8169
|
-
|
|
8170
|
-
projectId: string;
|
|
8171
|
-
};
|
|
7766
|
+
projectId: string;
|
|
8172
7767
|
headers?: {
|
|
8173
7768
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8174
7769
|
"x-access-token"?: string | undefined;
|
|
@@ -8210,9 +7805,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8210
7805
|
}, 503, "application/json">>>;
|
|
8211
7806
|
/** Get a Project file's content. */
|
|
8212
7807
|
getFileContent: (request: {
|
|
8213
|
-
|
|
8214
|
-
projectId: string;
|
|
8215
|
-
};
|
|
7808
|
+
projectId: string;
|
|
8216
7809
|
headers?: {
|
|
8217
7810
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8218
7811
|
"x-access-token"?: string | undefined;
|
|
@@ -8252,9 +7845,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8252
7845
|
}, 503, "application/json">>>;
|
|
8253
7846
|
/** Get a Project's file/filesystem authorization token. */
|
|
8254
7847
|
getJwt: (request: {
|
|
8255
|
-
|
|
8256
|
-
projectId: string;
|
|
8257
|
-
};
|
|
7848
|
+
projectId: string;
|
|
8258
7849
|
headers?: {
|
|
8259
7850
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8260
7851
|
"x-access-token"?: string | undefined;
|
|
@@ -8284,9 +7875,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8284
7875
|
}, 503, "application/json">>>;
|
|
8285
7876
|
/** Get a Project file's information. */
|
|
8286
7877
|
listFiles: (request: {
|
|
8287
|
-
|
|
8288
|
-
projectId: string;
|
|
8289
|
-
};
|
|
7878
|
+
projectId: string;
|
|
8290
7879
|
headers?: {
|
|
8291
7880
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8292
7881
|
"x-access-token"?: string | undefined;
|
|
@@ -8337,9 +7926,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8337
7926
|
readonly sshsftpUser: {
|
|
8338
7927
|
/** Get all SFTPUsers for a Project. */
|
|
8339
7928
|
sftpUserListSftpUsers: (request: {
|
|
8340
|
-
|
|
8341
|
-
projectId: string;
|
|
8342
|
-
};
|
|
7929
|
+
projectId: string;
|
|
8343
7930
|
headers?: {
|
|
8344
7931
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8345
7932
|
"x-access-token"?: string | undefined;
|
|
@@ -8386,9 +7973,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8386
7973
|
accessLevel?: "full" | "read" | undefined;
|
|
8387
7974
|
expiresAt?: string | undefined;
|
|
8388
7975
|
};
|
|
8389
|
-
|
|
8390
|
-
projectId: string;
|
|
8391
|
-
};
|
|
7976
|
+
projectId: string;
|
|
8392
7977
|
headers?: {
|
|
8393
7978
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8394
7979
|
"x-access-token"?: string | undefined;
|
|
@@ -8434,9 +8019,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8434
8019
|
}, 400, "application/json">>>;
|
|
8435
8020
|
/** Get an SFTPUser. */
|
|
8436
8021
|
sftpUserGetSftpUser: (request: {
|
|
8437
|
-
|
|
8438
|
-
sftpUserId: string;
|
|
8439
|
-
};
|
|
8022
|
+
sftpUserId: string;
|
|
8440
8023
|
headers?: {
|
|
8441
8024
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8442
8025
|
"x-access-token"?: string | undefined;
|
|
@@ -8474,9 +8057,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8474
8057
|
}, 404, "application/json">>>;
|
|
8475
8058
|
/** Delete an SFTPUser. */
|
|
8476
8059
|
sftpUserDeleteSftpUser: (request: {
|
|
8477
|
-
|
|
8478
|
-
sftpUserId: string;
|
|
8479
|
-
};
|
|
8060
|
+
sftpUserId: string;
|
|
8480
8061
|
headers?: {
|
|
8481
8062
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8482
8063
|
"x-access-token"?: string | undefined;
|
|
@@ -8498,9 +8079,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8498
8079
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
8499
8080
|
/** Update an SFTPUser. */
|
|
8500
8081
|
sftpUserUpdateSftpUser: (request: {
|
|
8501
|
-
|
|
8502
|
-
sftpUserId: string;
|
|
8503
|
-
};
|
|
8082
|
+
sftpUserId: string;
|
|
8504
8083
|
data?: {
|
|
8505
8084
|
accessLevel?: "full" | "read" | undefined;
|
|
8506
8085
|
active?: boolean | undefined;
|
|
@@ -8543,9 +8122,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8543
8122
|
}, 400, "application/json">>>;
|
|
8544
8123
|
/** Get all SSHUsers for a Project. */
|
|
8545
8124
|
sshUserListSshUsers: (request: {
|
|
8546
|
-
|
|
8547
|
-
projectId: string;
|
|
8548
|
-
};
|
|
8125
|
+
projectId: string;
|
|
8549
8126
|
headers?: {
|
|
8550
8127
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8551
8128
|
"x-access-token"?: string | undefined;
|
|
@@ -8590,9 +8167,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8590
8167
|
description: string;
|
|
8591
8168
|
expiresAt?: string | undefined;
|
|
8592
8169
|
};
|
|
8593
|
-
|
|
8594
|
-
projectId: string;
|
|
8595
|
-
};
|
|
8170
|
+
projectId: string;
|
|
8596
8171
|
headers?: {
|
|
8597
8172
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8598
8173
|
"x-access-token"?: string | undefined;
|
|
@@ -8634,9 +8209,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8634
8209
|
}, 400, "application/json">>>;
|
|
8635
8210
|
/** Get an SSHUser. */
|
|
8636
8211
|
sshUserGetSshUser: (request: {
|
|
8637
|
-
|
|
8638
|
-
sshUserId: string;
|
|
8639
|
-
};
|
|
8212
|
+
sshUserId: string;
|
|
8640
8213
|
headers?: {
|
|
8641
8214
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8642
8215
|
"x-access-token"?: string | undefined;
|
|
@@ -8672,9 +8245,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8672
8245
|
}, 404, "application/json">>>;
|
|
8673
8246
|
/** Delete an SSHUser. */
|
|
8674
8247
|
sshUserDeleteSshUser: (request: {
|
|
8675
|
-
|
|
8676
|
-
sshUserId: string;
|
|
8677
|
-
};
|
|
8248
|
+
sshUserId: string;
|
|
8678
8249
|
headers?: {
|
|
8679
8250
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8680
8251
|
"x-access-token"?: string | undefined;
|
|
@@ -8696,9 +8267,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8696
8267
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
|
|
8697
8268
|
/** Update an SSHUser. */
|
|
8698
8269
|
sshUserUpdateSshUser: (request: {
|
|
8699
|
-
|
|
8700
|
-
sshUserId: string;
|
|
8701
|
-
};
|
|
8270
|
+
sshUserId: string;
|
|
8702
8271
|
data?: {
|
|
8703
8272
|
active?: boolean | undefined;
|
|
8704
8273
|
description?: string | undefined;
|
|
@@ -8743,9 +8312,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8743
8312
|
data: {
|
|
8744
8313
|
phoneNumber: string;
|
|
8745
8314
|
};
|
|
8746
|
-
|
|
8747
|
-
userId: string;
|
|
8748
|
-
};
|
|
8315
|
+
userId: string;
|
|
8749
8316
|
headers?: {
|
|
8750
8317
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8751
8318
|
"x-access-token"?: string | undefined;
|
|
@@ -8777,9 +8344,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8777
8344
|
}, 409, "application/json">>>;
|
|
8778
8345
|
/** Remove phone number. */
|
|
8779
8346
|
removePhoneNumber: (request: {
|
|
8780
|
-
|
|
8781
|
-
userId: string;
|
|
8782
|
-
};
|
|
8347
|
+
userId: string;
|
|
8783
8348
|
headers?: {
|
|
8784
8349
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8785
8350
|
"x-access-token"?: string | undefined;
|
|
@@ -9238,9 +8803,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9238
8803
|
}, 400, "application/json">>>;
|
|
9239
8804
|
/** Get a specific ApiToken. */
|
|
9240
8805
|
getApiToken: (request: {
|
|
9241
|
-
|
|
9242
|
-
apiTokenId: string;
|
|
9243
|
-
};
|
|
8806
|
+
apiTokenId: string;
|
|
9244
8807
|
headers?: {
|
|
9245
8808
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9246
8809
|
"x-access-token"?: string | undefined;
|
|
@@ -9274,9 +8837,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9274
8837
|
description: string;
|
|
9275
8838
|
expiresAt?: string | undefined;
|
|
9276
8839
|
};
|
|
9277
|
-
|
|
9278
|
-
apiTokenId: string;
|
|
9279
|
-
};
|
|
8840
|
+
apiTokenId: string;
|
|
9280
8841
|
headers?: {
|
|
9281
8842
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9282
8843
|
"x-access-token"?: string | undefined;
|
|
@@ -9305,9 +8866,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9305
8866
|
}, 400, "application/json">>>;
|
|
9306
8867
|
/** Deletes an ApiToken. */
|
|
9307
8868
|
deleteApiToken: (request: {
|
|
9308
|
-
|
|
9309
|
-
apiTokenId: string;
|
|
9310
|
-
};
|
|
8869
|
+
apiTokenId: string;
|
|
9311
8870
|
headers?: {
|
|
9312
8871
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9313
8872
|
"x-access-token"?: string | undefined;
|
|
@@ -9331,9 +8890,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9331
8890
|
}, 400, "application/json">>>;
|
|
9332
8891
|
/** Get a specific stored ssh-key. */
|
|
9333
8892
|
getSshKey: (request: {
|
|
9334
|
-
|
|
9335
|
-
sshKeyId: string;
|
|
9336
|
-
};
|
|
8893
|
+
sshKeyId: string;
|
|
9337
8894
|
headers?: {
|
|
9338
8895
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9339
8896
|
"x-access-token"?: string | undefined;
|
|
@@ -9363,9 +8920,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9363
8920
|
comment: string;
|
|
9364
8921
|
expiresAt?: string | undefined;
|
|
9365
8922
|
};
|
|
9366
|
-
|
|
9367
|
-
sshKeyId: string;
|
|
9368
|
-
};
|
|
8923
|
+
sshKeyId: string;
|
|
9369
8924
|
headers?: {
|
|
9370
8925
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9371
8926
|
"x-access-token"?: string | undefined;
|
|
@@ -9394,9 +8949,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9394
8949
|
}, 400, "application/json">>>;
|
|
9395
8950
|
/** Remove a ssh-key. */
|
|
9396
8951
|
deleteSshKey: (request: {
|
|
9397
|
-
|
|
9398
|
-
sshKeyId: string;
|
|
9399
|
-
};
|
|
8952
|
+
sshKeyId: string;
|
|
9400
8953
|
headers?: {
|
|
9401
8954
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9402
8955
|
"x-access-token"?: string | undefined;
|
|
@@ -9529,9 +9082,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9529
9082
|
}, 200, "application/json">>>;
|
|
9530
9083
|
/** Get personalized settings. */
|
|
9531
9084
|
getPersonalizedSettings: (request: {
|
|
9532
|
-
|
|
9533
|
-
userId: string;
|
|
9534
|
-
};
|
|
9085
|
+
userId: string;
|
|
9535
9086
|
headers?: {
|
|
9536
9087
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9537
9088
|
"x-access-token"?: string | undefined;
|
|
@@ -9558,9 +9109,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9558
9109
|
data: {
|
|
9559
9110
|
settingsString: string;
|
|
9560
9111
|
};
|
|
9561
|
-
|
|
9562
|
-
userId: string;
|
|
9563
|
-
};
|
|
9112
|
+
userId: string;
|
|
9564
9113
|
headers?: {
|
|
9565
9114
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9566
9115
|
"x-access-token"?: string | undefined;
|
|
@@ -9588,9 +9137,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9588
9137
|
}, 400, "application/json">>>;
|
|
9589
9138
|
/** Get a specific session. */
|
|
9590
9139
|
getSession: (request: {
|
|
9591
|
-
|
|
9592
|
-
tokenId: string;
|
|
9593
|
-
};
|
|
9140
|
+
tokenId: string;
|
|
9594
9141
|
headers?: {
|
|
9595
9142
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9596
9143
|
"x-access-token"?: string | undefined;
|
|
@@ -9620,9 +9167,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9620
9167
|
}, 404, "application/json">>>;
|
|
9621
9168
|
/** Terminate a specific Session. */
|
|
9622
9169
|
terminateSession: (request: {
|
|
9623
|
-
|
|
9624
|
-
tokenId: string;
|
|
9625
|
-
};
|
|
9170
|
+
tokenId: string;
|
|
9626
9171
|
headers?: {
|
|
9627
9172
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9628
9173
|
"x-access-token"?: string | undefined;
|
|
@@ -9646,9 +9191,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9646
9191
|
}, 404, "application/json">>>;
|
|
9647
9192
|
/** Get profile information for a user. */
|
|
9648
9193
|
getUser: (request: {
|
|
9649
|
-
|
|
9650
|
-
userId: string;
|
|
9651
|
-
};
|
|
9194
|
+
userId: string;
|
|
9652
9195
|
headers?: {
|
|
9653
9196
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9654
9197
|
"x-access-token"?: string | undefined;
|
|
@@ -9690,9 +9233,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9690
9233
|
title?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation | undefined;
|
|
9691
9234
|
};
|
|
9692
9235
|
};
|
|
9693
|
-
|
|
9694
|
-
userId: string;
|
|
9695
|
-
};
|
|
9236
|
+
userId: string;
|
|
9696
9237
|
headers?: {
|
|
9697
9238
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9698
9239
|
"x-access-token"?: string | undefined;
|
|
@@ -9765,9 +9306,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9765
9306
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 201, "empty">>>;
|
|
9766
9307
|
/** Submitted feedback of the given user. */
|
|
9767
9308
|
listFeedback: (request: {
|
|
9768
|
-
|
|
9769
|
-
userId: string;
|
|
9770
|
-
};
|
|
9309
|
+
userId: string;
|
|
9771
9310
|
headers?: {
|
|
9772
9311
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9773
9312
|
"x-access-token"?: string | undefined;
|
|
@@ -9885,9 +9424,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9885
9424
|
}, 201, "application/json">>>;
|
|
9886
9425
|
/** Request a new avatar image upload. */
|
|
9887
9426
|
requestAvatarUpload: (request: {
|
|
9888
|
-
|
|
9889
|
-
userId: string;
|
|
9890
|
-
};
|
|
9427
|
+
userId: string;
|
|
9891
9428
|
headers?: {
|
|
9892
9429
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9893
9430
|
"x-access-token"?: string | undefined;
|
|
@@ -9929,9 +9466,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9929
9466
|
}, 400, "application/json">>>;
|
|
9930
9467
|
/** Remove Avatar. */
|
|
9931
9468
|
removeAvatar: (request: {
|
|
9932
|
-
|
|
9933
|
-
userId: string;
|
|
9934
|
-
};
|
|
9469
|
+
userId: string;
|
|
9935
9470
|
headers?: {
|
|
9936
9471
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9937
9472
|
"x-access-token"?: string | undefined;
|
|
@@ -10046,9 +9581,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10046
9581
|
code: string;
|
|
10047
9582
|
phoneNumber: string;
|
|
10048
9583
|
};
|
|
10049
|
-
|
|
10050
|
-
userId: string;
|
|
10051
|
-
};
|
|
9584
|
+
userId: string;
|
|
10052
9585
|
headers?: {
|
|
10053
9586
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
10054
9587
|
"x-access-token"?: string | undefined;
|