@mittwald/api-client 0.0.0-development-93599d7-20260507 → 0.0.0-development-e8f2771-20260612
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client-react.js +9 -3
- package/dist/esm/generated/v2/client.js +19 -9
- package/dist/esm/generated/v2/descriptors.js +49 -19
- package/dist/esm/index.js +1 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +58 -6
- package/dist/types/generated/v2/client.d.ts +453 -86
- package/dist/types/generated/v2/descriptors.d.ts +21 -11
- package/dist/types/generated/v2/types.d.ts +796 -84
- package/dist/types/index.d.ts +1 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -931,6 +931,69 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
931
931
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
932
932
|
[x: string]: unknown;
|
|
933
933
|
}, 429, "application/json">>>;
|
|
934
|
+
/** Links a container with a project licence. */
|
|
935
|
+
projectLinkContainer: (request: {
|
|
936
|
+
data: {
|
|
937
|
+
containerId: string;
|
|
938
|
+
ingressId: string;
|
|
939
|
+
stackId: string;
|
|
940
|
+
};
|
|
941
|
+
projectId: string;
|
|
942
|
+
keyId: string;
|
|
943
|
+
headers?: {
|
|
944
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
945
|
+
} | undefined;
|
|
946
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
947
|
+
data: {
|
|
948
|
+
containerId: string;
|
|
949
|
+
ingressId: string;
|
|
950
|
+
stackId: string;
|
|
951
|
+
};
|
|
952
|
+
} & {
|
|
953
|
+
pathParameters: {
|
|
954
|
+
projectId: string;
|
|
955
|
+
keyId: string;
|
|
956
|
+
};
|
|
957
|
+
} & {
|
|
958
|
+
headers?: Partial<{
|
|
959
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
960
|
+
}>;
|
|
961
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
962
|
+
[x: string]: unknown;
|
|
963
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
964
|
+
[x: string]: unknown;
|
|
965
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
966
|
+
[x: string]: unknown;
|
|
967
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
968
|
+
[x: string]: unknown;
|
|
969
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
970
|
+
[x: string]: unknown;
|
|
971
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
972
|
+
data: {
|
|
973
|
+
containerId: string;
|
|
974
|
+
ingressId: string;
|
|
975
|
+
stackId: string;
|
|
976
|
+
};
|
|
977
|
+
} & {
|
|
978
|
+
pathParameters: {
|
|
979
|
+
projectId: string;
|
|
980
|
+
keyId: string;
|
|
981
|
+
};
|
|
982
|
+
} & {
|
|
983
|
+
headers?: Partial<{
|
|
984
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
985
|
+
}>;
|
|
986
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
987
|
+
[x: string]: unknown;
|
|
988
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
989
|
+
[x: string]: unknown;
|
|
990
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
991
|
+
[x: string]: unknown;
|
|
992
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
993
|
+
[x: string]: unknown;
|
|
994
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
995
|
+
[x: string]: unknown;
|
|
996
|
+
}, 429, "application/json">>>;
|
|
934
997
|
};
|
|
935
998
|
/** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
|
|
936
999
|
readonly app: {
|
|
@@ -1019,6 +1082,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1019
1082
|
deletionRequested?: boolean | undefined;
|
|
1020
1083
|
description: string;
|
|
1021
1084
|
disabled: boolean;
|
|
1085
|
+
hostname?: string | undefined;
|
|
1022
1086
|
id: string;
|
|
1023
1087
|
installationPath: string;
|
|
1024
1088
|
lastError?: string | undefined;
|
|
@@ -1027,6 +1091,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1027
1091
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
|
|
1028
1092
|
} | undefined;
|
|
1029
1093
|
phase: import("./types.js").MittwaldAPIV2.Components.Schemas.AppPhase;
|
|
1094
|
+
ports?: {
|
|
1095
|
+
name?: string;
|
|
1096
|
+
port?: number;
|
|
1097
|
+
}[] | undefined;
|
|
1030
1098
|
projectDescription: string;
|
|
1031
1099
|
projectId: string;
|
|
1032
1100
|
screenshotId?: string | undefined;
|
|
@@ -1064,6 +1132,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1064
1132
|
deletionRequested?: boolean | undefined;
|
|
1065
1133
|
description: string;
|
|
1066
1134
|
disabled: boolean;
|
|
1135
|
+
hostname?: string | undefined;
|
|
1067
1136
|
id: string;
|
|
1068
1137
|
installationPath: string;
|
|
1069
1138
|
lastError?: string | undefined;
|
|
@@ -1072,6 +1141,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1072
1141
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
|
|
1073
1142
|
} | undefined;
|
|
1074
1143
|
phase: import("./types.js").MittwaldAPIV2.Components.Schemas.AppPhase;
|
|
1144
|
+
ports?: {
|
|
1145
|
+
name?: string;
|
|
1146
|
+
port?: number;
|
|
1147
|
+
}[] | undefined;
|
|
1075
1148
|
projectDescription: string;
|
|
1076
1149
|
projectId: string;
|
|
1077
1150
|
screenshotId?: string | undefined;
|
|
@@ -1613,6 +1686,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1613
1686
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1614
1687
|
appIds?: string[] | undefined;
|
|
1615
1688
|
searchTerm?: string | undefined;
|
|
1689
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallationSortOrder | undefined;
|
|
1616
1690
|
limit?: number | undefined;
|
|
1617
1691
|
skip?: number | undefined;
|
|
1618
1692
|
page?: number | undefined;
|
|
@@ -1625,6 +1699,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1625
1699
|
queryParameters: {
|
|
1626
1700
|
appIds?: string[] | undefined;
|
|
1627
1701
|
searchTerm?: string | undefined;
|
|
1702
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallationSortOrder | undefined;
|
|
1628
1703
|
limit?: number | undefined;
|
|
1629
1704
|
skip?: number | undefined;
|
|
1630
1705
|
page?: number | undefined;
|
|
@@ -1647,6 +1722,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1647
1722
|
queryParameters: {
|
|
1648
1723
|
appIds?: string[] | undefined;
|
|
1649
1724
|
searchTerm?: string | undefined;
|
|
1725
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallationSortOrder | undefined;
|
|
1650
1726
|
limit?: number | undefined;
|
|
1651
1727
|
skip?: number | undefined;
|
|
1652
1728
|
page?: number | undefined;
|
|
@@ -1673,6 +1749,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1673
1749
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1674
1750
|
appIds?: string[] | undefined;
|
|
1675
1751
|
searchTerm?: string | undefined;
|
|
1752
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallationSortOrder | undefined;
|
|
1676
1753
|
limit?: number | undefined;
|
|
1677
1754
|
skip?: number | undefined;
|
|
1678
1755
|
page?: number | undefined;
|
|
@@ -1689,6 +1766,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1689
1766
|
queryParameters: {
|
|
1690
1767
|
appIds?: string[] | undefined;
|
|
1691
1768
|
searchTerm?: string | undefined;
|
|
1769
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallationSortOrder | undefined;
|
|
1692
1770
|
limit?: number | undefined;
|
|
1693
1771
|
skip?: number | undefined;
|
|
1694
1772
|
page?: number | undefined;
|
|
@@ -1715,6 +1793,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1715
1793
|
queryParameters: {
|
|
1716
1794
|
appIds?: string[] | undefined;
|
|
1717
1795
|
searchTerm?: string | undefined;
|
|
1796
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallationSortOrder | undefined;
|
|
1718
1797
|
limit?: number | undefined;
|
|
1719
1798
|
skip?: number | undefined;
|
|
1720
1799
|
page?: number | undefined;
|
|
@@ -2137,6 +2216,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2137
2216
|
requestAppinstallationCopy: (request: {
|
|
2138
2217
|
data: {
|
|
2139
2218
|
description: string;
|
|
2219
|
+
domain?: string | undefined;
|
|
2140
2220
|
installationPath?: string | undefined;
|
|
2141
2221
|
targetProjectId?: string | undefined;
|
|
2142
2222
|
};
|
|
@@ -2147,6 +2227,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2147
2227
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2148
2228
|
data: {
|
|
2149
2229
|
description: string;
|
|
2230
|
+
domain?: string | undefined;
|
|
2150
2231
|
installationPath?: string | undefined;
|
|
2151
2232
|
targetProjectId?: string | undefined;
|
|
2152
2233
|
};
|
|
@@ -2167,6 +2248,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2167
2248
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2168
2249
|
data: {
|
|
2169
2250
|
description: string;
|
|
2251
|
+
domain?: string | undefined;
|
|
2170
2252
|
installationPath?: string | undefined;
|
|
2171
2253
|
targetProjectId?: string | undefined;
|
|
2172
2254
|
};
|
|
@@ -3200,7 +3282,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3200
3282
|
[x: string]: unknown;
|
|
3201
3283
|
}, 429, "application/json">>>;
|
|
3202
3284
|
/** List database dump's for a ProjectBackup. */
|
|
3203
|
-
|
|
3285
|
+
getProjectBackupDatabaseDumps: (request: {
|
|
3204
3286
|
projectBackupId: string;
|
|
3205
3287
|
headers?: {
|
|
3206
3288
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -3415,7 +3497,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3415
3497
|
[x: string]: unknown;
|
|
3416
3498
|
}, 429, "application/json">>>;
|
|
3417
3499
|
/** Restore a ProjectBackup. */
|
|
3418
|
-
|
|
3500
|
+
requestProjectBackupRestore: (request: {
|
|
3419
3501
|
projectBackupId: string;
|
|
3420
3502
|
data?: {
|
|
3421
3503
|
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
@@ -10199,9 +10281,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10199
10281
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
10200
10282
|
} | undefined;
|
|
10201
10283
|
id: string;
|
|
10284
|
+
nextScheduledWebhookExecution?: string | undefined;
|
|
10202
10285
|
pendingInstallation: boolean;
|
|
10203
10286
|
pendingRemoval: boolean;
|
|
10204
10287
|
variantKey?: string | undefined;
|
|
10288
|
+
webhookExecutionHalted: boolean;
|
|
10205
10289
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10206
10290
|
[x: string]: unknown;
|
|
10207
10291
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -10240,9 +10324,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10240
10324
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
10241
10325
|
} | undefined;
|
|
10242
10326
|
id: string;
|
|
10327
|
+
nextScheduledWebhookExecution?: string | undefined;
|
|
10243
10328
|
pendingInstallation: boolean;
|
|
10244
10329
|
pendingRemoval: boolean;
|
|
10245
10330
|
variantKey?: string | undefined;
|
|
10331
|
+
webhookExecutionHalted: boolean;
|
|
10246
10332
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10247
10333
|
[x: string]: unknown;
|
|
10248
10334
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -10425,7 +10511,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10425
10511
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10426
10512
|
[x: string]: unknown;
|
|
10427
10513
|
}, 429, "application/json">>>;
|
|
10428
|
-
/** Delete an
|
|
10514
|
+
/** Delete an Extension. */
|
|
10429
10515
|
extensionDeleteExtension: (request: {
|
|
10430
10516
|
contributorId: string;
|
|
10431
10517
|
extensionId: string;
|
|
@@ -11252,9 +11338,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11252
11338
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
11253
11339
|
} | undefined;
|
|
11254
11340
|
id: string;
|
|
11341
|
+
nextScheduledWebhookExecution?: string | undefined;
|
|
11255
11342
|
pendingInstallation: boolean;
|
|
11256
11343
|
pendingRemoval: boolean;
|
|
11257
11344
|
variantKey?: string | undefined;
|
|
11345
|
+
webhookExecutionHalted: boolean;
|
|
11258
11346
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11259
11347
|
[x: string]: unknown;
|
|
11260
11348
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -11294,9 +11382,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11294
11382
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
11295
11383
|
} | undefined;
|
|
11296
11384
|
id: string;
|
|
11385
|
+
nextScheduledWebhookExecution?: string | undefined;
|
|
11297
11386
|
pendingInstallation: boolean;
|
|
11298
11387
|
pendingRemoval: boolean;
|
|
11299
11388
|
variantKey?: string | undefined;
|
|
11389
|
+
webhookExecutionHalted: boolean;
|
|
11300
11390
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11301
11391
|
[x: string]: unknown;
|
|
11302
11392
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -11345,9 +11435,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11345
11435
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
11346
11436
|
} | undefined;
|
|
11347
11437
|
id: string;
|
|
11438
|
+
nextScheduledWebhookExecution?: string | undefined;
|
|
11348
11439
|
pendingInstallation: boolean;
|
|
11349
11440
|
pendingRemoval: boolean;
|
|
11350
11441
|
variantKey?: string | undefined;
|
|
11442
|
+
webhookExecutionHalted: boolean;
|
|
11351
11443
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11352
11444
|
[x: string]: unknown;
|
|
11353
11445
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -11387,9 +11479,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11387
11479
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
11388
11480
|
} | undefined;
|
|
11389
11481
|
id: string;
|
|
11482
|
+
nextScheduledWebhookExecution?: string | undefined;
|
|
11390
11483
|
pendingInstallation: boolean;
|
|
11391
11484
|
pendingRemoval: boolean;
|
|
11392
11485
|
variantKey?: string | undefined;
|
|
11486
|
+
webhookExecutionHalted: boolean;
|
|
11393
11487
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11394
11488
|
[x: string]: unknown;
|
|
11395
11489
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -11598,6 +11692,80 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11598
11692
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11599
11693
|
[x: string]: unknown;
|
|
11600
11694
|
}, 429, "application/json">>>;
|
|
11695
|
+
/** List all Webhook Executions. */
|
|
11696
|
+
extensionListAllExtensionInstanceWebhookExecutions: (request: {
|
|
11697
|
+
contributorId: string;
|
|
11698
|
+
headers?: {
|
|
11699
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
11700
|
+
"x-access-token"?: string | undefined;
|
|
11701
|
+
} | undefined;
|
|
11702
|
+
queryParameters?: {
|
|
11703
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
11704
|
+
extensionId?: string | undefined;
|
|
11705
|
+
extensionInstanceId?: string | undefined;
|
|
11706
|
+
limit?: number | undefined;
|
|
11707
|
+
skip?: number | undefined;
|
|
11708
|
+
page?: number | undefined;
|
|
11709
|
+
sort?: ("attempts" | "nextScheduledExecution")[] | undefined;
|
|
11710
|
+
order?: ("asc" | "desc")[] | undefined;
|
|
11711
|
+
} | undefined;
|
|
11712
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
11713
|
+
headers?: Partial<{
|
|
11714
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11715
|
+
}>;
|
|
11716
|
+
} & {
|
|
11717
|
+
pathParameters: {
|
|
11718
|
+
contributorId: string;
|
|
11719
|
+
};
|
|
11720
|
+
} & {
|
|
11721
|
+
queryParameters: {
|
|
11722
|
+
extensionId?: string | undefined;
|
|
11723
|
+
extensionInstanceId?: string | undefined;
|
|
11724
|
+
limit?: number | undefined;
|
|
11725
|
+
skip?: number | undefined;
|
|
11726
|
+
page?: number | undefined;
|
|
11727
|
+
sort?: ("attempts" | "nextScheduledExecution")[] | undefined;
|
|
11728
|
+
order?: ("asc" | "desc")[] | undefined;
|
|
11729
|
+
} & Partial<{
|
|
11730
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11731
|
+
}>;
|
|
11732
|
+
} & {
|
|
11733
|
+
headers: {
|
|
11734
|
+
"x-access-token"?: string | undefined;
|
|
11735
|
+
} & Partial<{
|
|
11736
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11737
|
+
}>;
|
|
11738
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecution[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11739
|
+
[x: string]: unknown;
|
|
11740
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
11741
|
+
headers?: Partial<{
|
|
11742
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11743
|
+
}>;
|
|
11744
|
+
} & {
|
|
11745
|
+
pathParameters: {
|
|
11746
|
+
contributorId: string;
|
|
11747
|
+
};
|
|
11748
|
+
} & {
|
|
11749
|
+
queryParameters: {
|
|
11750
|
+
extensionId?: string | undefined;
|
|
11751
|
+
extensionInstanceId?: string | undefined;
|
|
11752
|
+
limit?: number | undefined;
|
|
11753
|
+
skip?: number | undefined;
|
|
11754
|
+
page?: number | undefined;
|
|
11755
|
+
sort?: ("attempts" | "nextScheduledExecution")[] | undefined;
|
|
11756
|
+
order?: ("asc" | "desc")[] | undefined;
|
|
11757
|
+
} & Partial<{
|
|
11758
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11759
|
+
}>;
|
|
11760
|
+
} & {
|
|
11761
|
+
headers: {
|
|
11762
|
+
"x-access-token"?: string | undefined;
|
|
11763
|
+
} & Partial<{
|
|
11764
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11765
|
+
}>;
|
|
11766
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecution[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11767
|
+
[x: string]: unknown;
|
|
11768
|
+
}, 429, "application/json">>>;
|
|
11601
11769
|
/** List Contributors. */
|
|
11602
11770
|
extensionListContributors: (request?: {
|
|
11603
11771
|
headers?: {
|
|
@@ -14320,6 +14488,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14320
14488
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
14321
14489
|
limit?: number | undefined;
|
|
14322
14490
|
skip?: number | undefined;
|
|
14491
|
+
searchTerm?: string | undefined;
|
|
14323
14492
|
} | undefined;
|
|
14324
14493
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
14325
14494
|
headers?: Partial<{
|
|
@@ -14333,6 +14502,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14333
14502
|
queryParameters: {
|
|
14334
14503
|
limit?: number | undefined;
|
|
14335
14504
|
skip?: number | undefined;
|
|
14505
|
+
searchTerm?: string | undefined;
|
|
14336
14506
|
} & Partial<{
|
|
14337
14507
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14338
14508
|
}>;
|
|
@@ -14358,6 +14528,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14358
14528
|
queryParameters: {
|
|
14359
14529
|
limit?: number | undefined;
|
|
14360
14530
|
skip?: number | undefined;
|
|
14531
|
+
searchTerm?: string | undefined;
|
|
14361
14532
|
} & Partial<{
|
|
14362
14533
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14363
14534
|
}>;
|
|
@@ -15603,6 +15774,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15603
15774
|
skip?: number | undefined;
|
|
15604
15775
|
hasExpiry?: boolean | undefined;
|
|
15605
15776
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
15777
|
+
searchTerm?: string | undefined;
|
|
15606
15778
|
} | undefined;
|
|
15607
15779
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
15608
15780
|
headers?: Partial<{
|
|
@@ -15618,6 +15790,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15618
15790
|
skip?: number | undefined;
|
|
15619
15791
|
hasExpiry?: boolean | undefined;
|
|
15620
15792
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
15793
|
+
searchTerm?: string | undefined;
|
|
15621
15794
|
} & Partial<{
|
|
15622
15795
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15623
15796
|
}>;
|
|
@@ -15645,6 +15818,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15645
15818
|
skip?: number | undefined;
|
|
15646
15819
|
hasExpiry?: boolean | undefined;
|
|
15647
15820
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
15821
|
+
searchTerm?: string | undefined;
|
|
15648
15822
|
} & Partial<{
|
|
15649
15823
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15650
15824
|
}>;
|
|
@@ -16429,6 +16603,74 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16429
16603
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16430
16604
|
[x: string]: unknown;
|
|
16431
16605
|
}, 503, "application/json">>>;
|
|
16606
|
+
/** Update a MySqlDatabase. */
|
|
16607
|
+
patchMysqlDatabase: (request: {
|
|
16608
|
+
mysqlDatabaseId: string;
|
|
16609
|
+
data?: {
|
|
16610
|
+
characterSettings?: {
|
|
16611
|
+
characterSet: string;
|
|
16612
|
+
collation: string;
|
|
16613
|
+
} | undefined;
|
|
16614
|
+
description?: string | undefined;
|
|
16615
|
+
version?: string | undefined;
|
|
16616
|
+
} | undefined;
|
|
16617
|
+
headers?: {
|
|
16618
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
16619
|
+
"x-access-token"?: string | undefined;
|
|
16620
|
+
} | undefined;
|
|
16621
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
16622
|
+
data: {
|
|
16623
|
+
characterSettings?: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCharacterSettings | undefined;
|
|
16624
|
+
description?: string | undefined;
|
|
16625
|
+
version?: string | undefined;
|
|
16626
|
+
};
|
|
16627
|
+
} & {
|
|
16628
|
+
pathParameters: {
|
|
16629
|
+
mysqlDatabaseId: string;
|
|
16630
|
+
};
|
|
16631
|
+
} & {
|
|
16632
|
+
headers?: Partial<{
|
|
16633
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16634
|
+
}>;
|
|
16635
|
+
} & {
|
|
16636
|
+
headers: {
|
|
16637
|
+
"x-access-token"?: string | undefined;
|
|
16638
|
+
} & Partial<{
|
|
16639
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16640
|
+
}>;
|
|
16641
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
16642
|
+
[x: string]: unknown;
|
|
16643
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16644
|
+
[x: string]: unknown;
|
|
16645
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16646
|
+
[x: string]: unknown;
|
|
16647
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
16648
|
+
data: {
|
|
16649
|
+
characterSettings?: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCharacterSettings | undefined;
|
|
16650
|
+
description?: string | undefined;
|
|
16651
|
+
version?: string | undefined;
|
|
16652
|
+
};
|
|
16653
|
+
} & {
|
|
16654
|
+
pathParameters: {
|
|
16655
|
+
mysqlDatabaseId: string;
|
|
16656
|
+
};
|
|
16657
|
+
} & {
|
|
16658
|
+
headers?: Partial<{
|
|
16659
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16660
|
+
}>;
|
|
16661
|
+
} & {
|
|
16662
|
+
headers: {
|
|
16663
|
+
"x-access-token"?: string | undefined;
|
|
16664
|
+
} & Partial<{
|
|
16665
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16666
|
+
}>;
|
|
16667
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
16668
|
+
[x: string]: unknown;
|
|
16669
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16670
|
+
[x: string]: unknown;
|
|
16671
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16672
|
+
[x: string]: unknown;
|
|
16673
|
+
}, 429, "application/json">>>;
|
|
16432
16674
|
/** Get a MySQLUser. */
|
|
16433
16675
|
getMysqlUser: (request: {
|
|
16434
16676
|
mysqlUserId: string;
|
|
@@ -16763,6 +17005,76 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16763
17005
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16764
17006
|
[x: string]: unknown;
|
|
16765
17007
|
}, 503, "application/json">>>;
|
|
17008
|
+
/** Update a RedisDatabase. */
|
|
17009
|
+
patchRedisDatabase: (request: {
|
|
17010
|
+
redisDatabaseId: string;
|
|
17011
|
+
data?: {
|
|
17012
|
+
configuration?: {
|
|
17013
|
+
additionalFlags?: string[] | undefined;
|
|
17014
|
+
maxMemory?: string | undefined;
|
|
17015
|
+
maxMemoryPolicy?: string | undefined;
|
|
17016
|
+
persistent?: boolean | undefined;
|
|
17017
|
+
} | undefined;
|
|
17018
|
+
description?: string | undefined;
|
|
17019
|
+
version?: string | undefined;
|
|
17020
|
+
} | undefined;
|
|
17021
|
+
headers?: {
|
|
17022
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17023
|
+
"x-access-token"?: string | undefined;
|
|
17024
|
+
} | undefined;
|
|
17025
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17026
|
+
data: {
|
|
17027
|
+
configuration?: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseRedisDatabaseConfiguration | undefined;
|
|
17028
|
+
description?: string | undefined;
|
|
17029
|
+
version?: string | undefined;
|
|
17030
|
+
};
|
|
17031
|
+
} & {
|
|
17032
|
+
pathParameters: {
|
|
17033
|
+
redisDatabaseId: string;
|
|
17034
|
+
};
|
|
17035
|
+
} & {
|
|
17036
|
+
headers?: Partial<{
|
|
17037
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17038
|
+
}>;
|
|
17039
|
+
} & {
|
|
17040
|
+
headers: {
|
|
17041
|
+
"x-access-token"?: string | undefined;
|
|
17042
|
+
} & Partial<{
|
|
17043
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17044
|
+
}>;
|
|
17045
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17046
|
+
[x: string]: unknown;
|
|
17047
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17048
|
+
[x: string]: unknown;
|
|
17049
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17050
|
+
[x: string]: unknown;
|
|
17051
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17052
|
+
data: {
|
|
17053
|
+
configuration?: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseRedisDatabaseConfiguration | undefined;
|
|
17054
|
+
description?: string | undefined;
|
|
17055
|
+
version?: string | undefined;
|
|
17056
|
+
};
|
|
17057
|
+
} & {
|
|
17058
|
+
pathParameters: {
|
|
17059
|
+
redisDatabaseId: string;
|
|
17060
|
+
};
|
|
17061
|
+
} & {
|
|
17062
|
+
headers?: Partial<{
|
|
17063
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17064
|
+
}>;
|
|
17065
|
+
} & {
|
|
17066
|
+
headers: {
|
|
17067
|
+
"x-access-token"?: string | undefined;
|
|
17068
|
+
} & Partial<{
|
|
17069
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17070
|
+
}>;
|
|
17071
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17072
|
+
[x: string]: unknown;
|
|
17073
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17074
|
+
[x: string]: unknown;
|
|
17075
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17076
|
+
[x: string]: unknown;
|
|
17077
|
+
}, 429, "application/json">>>;
|
|
16766
17078
|
/** Disable a MySQLUser. */
|
|
16767
17079
|
disableMysqlUser: (request: {
|
|
16768
17080
|
mysqlUserId: string;
|
|
@@ -18832,8 +19144,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18832
19144
|
/** Check if a Domain-Migration from a pAccount into a Project is possible. */
|
|
18833
19145
|
migrationCheckMigrationIsPossible: (request: {
|
|
18834
19146
|
data: {
|
|
18835
|
-
|
|
18836
|
-
|
|
19147
|
+
pAccount: string;
|
|
19148
|
+
projectId: string;
|
|
18837
19149
|
};
|
|
18838
19150
|
headers: {
|
|
18839
19151
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -18842,8 +19154,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18842
19154
|
};
|
|
18843
19155
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18844
19156
|
data: {
|
|
18845
|
-
|
|
18846
|
-
|
|
19157
|
+
pAccount: string;
|
|
19158
|
+
projectId: string;
|
|
18847
19159
|
};
|
|
18848
19160
|
} & {
|
|
18849
19161
|
headers?: Partial<{
|
|
@@ -18867,8 +19179,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18867
19179
|
[x: string]: unknown;
|
|
18868
19180
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18869
19181
|
data: {
|
|
18870
|
-
|
|
18871
|
-
|
|
19182
|
+
pAccount: string;
|
|
19183
|
+
projectId: string;
|
|
18872
19184
|
};
|
|
18873
19185
|
} & {
|
|
18874
19186
|
headers?: Partial<{
|
|
@@ -18891,26 +19203,39 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18891
19203
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18892
19204
|
[x: string]: unknown;
|
|
18893
19205
|
}, 429, "application/json">>>;
|
|
18894
|
-
/** List Domain-Migrations belonging to a
|
|
18895
|
-
|
|
19206
|
+
/** List Domain-Migrations belonging to a pAccount. */
|
|
19207
|
+
migrationListMigrationsByPaccount: (request: {
|
|
18896
19208
|
headers: {
|
|
18897
19209
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18898
19210
|
Authorization: string;
|
|
18899
19211
|
};
|
|
18900
|
-
|
|
18901
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18902
|
-
pAccountName: string;
|
|
18903
|
-
};
|
|
19212
|
+
pAccount: string;
|
|
18904
19213
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18905
19214
|
headers?: Partial<{
|
|
18906
19215
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18907
19216
|
}>;
|
|
18908
19217
|
} & {
|
|
18909
|
-
|
|
18910
|
-
|
|
19218
|
+
pathParameters: {
|
|
19219
|
+
pAccount: string;
|
|
19220
|
+
};
|
|
19221
|
+
} & {
|
|
19222
|
+
headers: {
|
|
19223
|
+
Authorization: string;
|
|
18911
19224
|
} & Partial<{
|
|
18912
19225
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18913
19226
|
}>;
|
|
19227
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainmigrationMigration[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19228
|
+
[x: string]: unknown;
|
|
19229
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19230
|
+
[x: string]: unknown;
|
|
19231
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19232
|
+
headers?: Partial<{
|
|
19233
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19234
|
+
}>;
|
|
19235
|
+
} & {
|
|
19236
|
+
pathParameters: {
|
|
19237
|
+
pAccount: string;
|
|
19238
|
+
};
|
|
18914
19239
|
} & {
|
|
18915
19240
|
headers: {
|
|
18916
19241
|
Authorization: string;
|
|
@@ -18921,19 +19246,43 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18921
19246
|
[x: string]: unknown;
|
|
18922
19247
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18923
19248
|
[x: string]: unknown;
|
|
18924
|
-
}, 429, "application/json"
|
|
19249
|
+
}, 429, "application/json">>>;
|
|
19250
|
+
/** List Domain-Migrations belonging to a Project. */
|
|
19251
|
+
migrationListMigrationsByProjectId: (request: {
|
|
19252
|
+
projectId: string;
|
|
19253
|
+
headers?: {
|
|
19254
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19255
|
+
"x-access-token"?: string | undefined;
|
|
19256
|
+
} | undefined;
|
|
19257
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18925
19258
|
headers?: Partial<{
|
|
18926
19259
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18927
19260
|
}>;
|
|
18928
19261
|
} & {
|
|
18929
|
-
|
|
18930
|
-
|
|
19262
|
+
pathParameters: {
|
|
19263
|
+
projectId: string;
|
|
19264
|
+
};
|
|
19265
|
+
} & {
|
|
19266
|
+
headers: {
|
|
19267
|
+
"x-access-token"?: string | undefined;
|
|
18931
19268
|
} & Partial<{
|
|
18932
19269
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18933
19270
|
}>;
|
|
19271
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainmigrationMigration[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19272
|
+
[x: string]: unknown;
|
|
19273
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19274
|
+
[x: string]: unknown;
|
|
19275
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19276
|
+
headers?: Partial<{
|
|
19277
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19278
|
+
}>;
|
|
19279
|
+
} & {
|
|
19280
|
+
pathParameters: {
|
|
19281
|
+
projectId: string;
|
|
19282
|
+
};
|
|
18934
19283
|
} & {
|
|
18935
19284
|
headers: {
|
|
18936
|
-
|
|
19285
|
+
"x-access-token"?: string | undefined;
|
|
18937
19286
|
} & Partial<{
|
|
18938
19287
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18939
19288
|
}>;
|
|
@@ -18942,12 +19291,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18942
19291
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18943
19292
|
[x: string]: unknown;
|
|
18944
19293
|
}, 429, "application/json">>>;
|
|
18945
|
-
/**
|
|
18946
|
-
|
|
19294
|
+
/** Order a Domain-Migration from a pAccount into a Project. */
|
|
19295
|
+
migrationOrderDomainMigration: (request: {
|
|
18947
19296
|
data: {
|
|
18948
19297
|
domains: string[];
|
|
18949
|
-
|
|
18950
|
-
|
|
19298
|
+
pAccount: string;
|
|
19299
|
+
projectId: string;
|
|
18951
19300
|
};
|
|
18952
19301
|
headers: {
|
|
18953
19302
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -18957,8 +19306,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18957
19306
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18958
19307
|
data: {
|
|
18959
19308
|
domains: string[];
|
|
18960
|
-
|
|
18961
|
-
|
|
19309
|
+
pAccount: string;
|
|
19310
|
+
projectId: string;
|
|
18962
19311
|
};
|
|
18963
19312
|
} & {
|
|
18964
19313
|
headers?: Partial<{
|
|
@@ -18980,8 +19329,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18980
19329
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18981
19330
|
data: {
|
|
18982
19331
|
domains: string[];
|
|
18983
|
-
|
|
18984
|
-
|
|
19332
|
+
pAccount: string;
|
|
19333
|
+
projectId: string;
|
|
18985
19334
|
};
|
|
18986
19335
|
} & {
|
|
18987
19336
|
headers?: Partial<{
|
|
@@ -23071,6 +23420,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23071
23420
|
headers?: {
|
|
23072
23421
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
23073
23422
|
} | undefined;
|
|
23423
|
+
queryParameters?: {
|
|
23424
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
23425
|
+
cookieOnly?: boolean | undefined;
|
|
23426
|
+
} | undefined;
|
|
23074
23427
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23075
23428
|
data: {
|
|
23076
23429
|
email: string;
|
|
@@ -23081,7 +23434,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23081
23434
|
headers?: Partial<{
|
|
23082
23435
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23083
23436
|
}>;
|
|
23084
|
-
}
|
|
23437
|
+
} & {
|
|
23438
|
+
queryParameters: {
|
|
23439
|
+
cookieOnly?: boolean | undefined;
|
|
23440
|
+
} & Partial<{
|
|
23441
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23442
|
+
}>;
|
|
23443
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
23085
23444
|
type: "ValidationError";
|
|
23086
23445
|
message?: string | undefined;
|
|
23087
23446
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
@@ -23105,7 +23464,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23105
23464
|
headers?: Partial<{
|
|
23106
23465
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23107
23466
|
}>;
|
|
23108
|
-
}
|
|
23467
|
+
} & {
|
|
23468
|
+
queryParameters: {
|
|
23469
|
+
cookieOnly?: boolean | undefined;
|
|
23470
|
+
} & Partial<{
|
|
23471
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23472
|
+
}>;
|
|
23473
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
23109
23474
|
type: "ValidationError";
|
|
23110
23475
|
message?: string | undefined;
|
|
23111
23476
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
@@ -23148,17 +23513,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23148
23513
|
} & Partial<{
|
|
23149
23514
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23150
23515
|
}>;
|
|
23151
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
23152
|
-
expires
|
|
23153
|
-
refreshToken
|
|
23154
|
-
token
|
|
23516
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
23517
|
+
expires: string;
|
|
23518
|
+
refreshToken: string;
|
|
23519
|
+
token: string;
|
|
23155
23520
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23156
23521
|
name?: "SecondFactorRequired" | undefined;
|
|
23157
|
-
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23158
|
-
type: "ValidationError";
|
|
23159
|
-
message?: string | undefined;
|
|
23160
|
-
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
23161
|
-
}, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23522
|
+
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23162
23523
|
[x: string]: unknown;
|
|
23163
23524
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23164
23525
|
data: {
|
|
@@ -23175,17 +23536,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23175
23536
|
} & Partial<{
|
|
23176
23537
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23177
23538
|
}>;
|
|
23178
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
23179
|
-
expires
|
|
23180
|
-
refreshToken
|
|
23181
|
-
token
|
|
23539
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
23540
|
+
expires: string;
|
|
23541
|
+
refreshToken: string;
|
|
23542
|
+
token: string;
|
|
23182
23543
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23183
23544
|
name?: "SecondFactorRequired" | undefined;
|
|
23184
|
-
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23185
|
-
type: "ValidationError";
|
|
23186
|
-
message?: string | undefined;
|
|
23187
|
-
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
23188
|
-
}, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23545
|
+
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23189
23546
|
[x: string]: unknown;
|
|
23190
23547
|
}, 429, "application/json">>>;
|
|
23191
23548
|
/** Authenticate an user with an access token retrieval key. */
|
|
@@ -23389,43 +23746,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23389
23746
|
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23390
23747
|
[x: string]: unknown;
|
|
23391
23748
|
}, 429, "application/json">>>;
|
|
23392
|
-
/** Check token for validity. */
|
|
23393
|
-
checkToken: (request?: {
|
|
23394
|
-
headers?: {
|
|
23395
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
23396
|
-
"x-access-token"?: string | undefined;
|
|
23397
|
-
} | undefined;
|
|
23398
|
-
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23399
|
-
headers?: Partial<{
|
|
23400
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23401
|
-
}>;
|
|
23402
|
-
} & {
|
|
23403
|
-
headers: {
|
|
23404
|
-
"x-access-token"?: string | undefined;
|
|
23405
|
-
} & Partial<{
|
|
23406
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23407
|
-
}>;
|
|
23408
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
23409
|
-
id: string;
|
|
23410
|
-
publicToken: string;
|
|
23411
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23412
|
-
[x: string]: unknown;
|
|
23413
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23414
|
-
headers?: Partial<{
|
|
23415
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23416
|
-
}>;
|
|
23417
|
-
} & {
|
|
23418
|
-
headers: {
|
|
23419
|
-
"x-access-token"?: string | undefined;
|
|
23420
|
-
} & Partial<{
|
|
23421
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23422
|
-
}>;
|
|
23423
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
23424
|
-
id: string;
|
|
23425
|
-
publicToken: string;
|
|
23426
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23427
|
-
[x: string]: unknown;
|
|
23428
|
-
}, 429, "application/json">>>;
|
|
23429
23749
|
/** Get your current multi factor auth status. */
|
|
23430
23750
|
getMfaStatus: (request?: {
|
|
23431
23751
|
headers?: {
|
|
@@ -24306,6 +24626,47 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24306
24626
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24307
24627
|
[x: string]: unknown;
|
|
24308
24628
|
}, 429, "application/json">>>;
|
|
24629
|
+
/** Check status of the current session. */
|
|
24630
|
+
getCurrentSessionStatus: (request?: {
|
|
24631
|
+
headers?: {
|
|
24632
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
24633
|
+
"x-access-token"?: string | undefined;
|
|
24634
|
+
} | undefined;
|
|
24635
|
+
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24636
|
+
headers?: Partial<{
|
|
24637
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24638
|
+
}>;
|
|
24639
|
+
} & {
|
|
24640
|
+
headers: {
|
|
24641
|
+
"x-access-token"?: string | undefined;
|
|
24642
|
+
} & Partial<{
|
|
24643
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24644
|
+
}>;
|
|
24645
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
24646
|
+
isEmployee: boolean;
|
|
24647
|
+
isImpersonated: boolean;
|
|
24648
|
+
tokenId: string;
|
|
24649
|
+
userId: string;
|
|
24650
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24651
|
+
[x: string]: unknown;
|
|
24652
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24653
|
+
headers?: Partial<{
|
|
24654
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24655
|
+
}>;
|
|
24656
|
+
} & {
|
|
24657
|
+
headers: {
|
|
24658
|
+
"x-access-token"?: string | undefined;
|
|
24659
|
+
} & Partial<{
|
|
24660
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24661
|
+
}>;
|
|
24662
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
24663
|
+
isEmployee: boolean;
|
|
24664
|
+
isImpersonated: boolean;
|
|
24665
|
+
tokenId: string;
|
|
24666
|
+
userId: string;
|
|
24667
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24668
|
+
[x: string]: unknown;
|
|
24669
|
+
}, 429, "application/json">>>;
|
|
24309
24670
|
/** The timestamp of your latest password change. */
|
|
24310
24671
|
getPasswordUpdatedAt: (request?: {
|
|
24311
24672
|
headers?: {
|
|
@@ -27995,6 +28356,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
27995
28356
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
27996
28357
|
limit?: number | undefined;
|
|
27997
28358
|
skip?: number | undefined;
|
|
28359
|
+
searchTerm?: string | undefined;
|
|
27998
28360
|
} | undefined;
|
|
27999
28361
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
28000
28362
|
headers?: Partial<{
|
|
@@ -28008,6 +28370,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
28008
28370
|
queryParameters: {
|
|
28009
28371
|
limit?: number | undefined;
|
|
28010
28372
|
skip?: number | undefined;
|
|
28373
|
+
searchTerm?: string | undefined;
|
|
28011
28374
|
} & Partial<{
|
|
28012
28375
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28013
28376
|
}>;
|
|
@@ -28033,6 +28396,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
28033
28396
|
queryParameters: {
|
|
28034
28397
|
limit?: number | undefined;
|
|
28035
28398
|
skip?: number | undefined;
|
|
28399
|
+
searchTerm?: string | undefined;
|
|
28036
28400
|
} & Partial<{
|
|
28037
28401
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28038
28402
|
}>;
|
|
@@ -29111,6 +29475,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
29111
29475
|
isInherited?: boolean | undefined;
|
|
29112
29476
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
29113
29477
|
hasMfa?: boolean | undefined;
|
|
29478
|
+
searchTerm?: string | undefined;
|
|
29114
29479
|
} | undefined;
|
|
29115
29480
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29116
29481
|
headers?: Partial<{
|
|
@@ -29128,6 +29493,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
29128
29493
|
isInherited?: boolean | undefined;
|
|
29129
29494
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
29130
29495
|
hasMfa?: boolean | undefined;
|
|
29496
|
+
searchTerm?: string | undefined;
|
|
29131
29497
|
} & Partial<{
|
|
29132
29498
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29133
29499
|
}>;
|
|
@@ -29157,6 +29523,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
29157
29523
|
isInherited?: boolean | undefined;
|
|
29158
29524
|
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
29159
29525
|
hasMfa?: boolean | undefined;
|
|
29526
|
+
searchTerm?: string | undefined;
|
|
29160
29527
|
} & Partial<{
|
|
29161
29528
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29162
29529
|
}>;
|