@mittwald/api-client 0.0.0-development-e648af3-20251016 → 0.0.0-development-3821954-20251017
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 +0 -6
- package/dist/esm/generated/v2/client.js +4 -16
- package/dist/esm/generated/v2/descriptors.js +12 -48
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +3 -56
- package/dist/types/generated/v2/client.d.ts +118 -500
- package/dist/types/generated/v2/descriptors.d.ts +4 -16
- package/dist/types/generated/v2/types.d.ts +148 -420
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1299,34 +1299,23 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1299
1299
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1300
1300
|
[x: string]: unknown;
|
|
1301
1301
|
}, 429, "application/json">>>;
|
|
1302
|
-
/**
|
|
1303
|
-
|
|
1302
|
+
/** Remove linkage between an AppInstallation and a Database. */
|
|
1303
|
+
unlinkDatabase: (request: {
|
|
1304
1304
|
appInstallationId: string;
|
|
1305
1305
|
databaseId: string;
|
|
1306
|
-
data?: {
|
|
1307
|
-
databaseUserIds: {
|
|
1308
|
-
[x: string]: string;
|
|
1309
|
-
};
|
|
1310
|
-
} | undefined;
|
|
1311
1306
|
headers?: {
|
|
1312
1307
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1313
1308
|
"x-access-token"?: string | undefined;
|
|
1314
1309
|
} | undefined;
|
|
1315
1310
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
};
|
|
1320
|
-
};
|
|
1311
|
+
headers?: Partial<{
|
|
1312
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1313
|
+
}>;
|
|
1321
1314
|
} & {
|
|
1322
1315
|
pathParameters: {
|
|
1323
1316
|
appInstallationId: string;
|
|
1324
1317
|
databaseId: string;
|
|
1325
1318
|
};
|
|
1326
|
-
} & {
|
|
1327
|
-
headers?: Partial<{
|
|
1328
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1329
|
-
}>;
|
|
1330
1319
|
} & {
|
|
1331
1320
|
headers: {
|
|
1332
1321
|
"x-access-token"?: string | undefined;
|
|
@@ -1338,20 +1327,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1338
1327
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1339
1328
|
[x: string]: unknown;
|
|
1340
1329
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
};
|
|
1345
|
-
};
|
|
1330
|
+
headers?: Partial<{
|
|
1331
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1332
|
+
}>;
|
|
1346
1333
|
} & {
|
|
1347
1334
|
pathParameters: {
|
|
1348
1335
|
appInstallationId: string;
|
|
1349
1336
|
databaseId: string;
|
|
1350
1337
|
};
|
|
1351
|
-
} & {
|
|
1352
|
-
headers?: Partial<{
|
|
1353
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1354
|
-
}>;
|
|
1355
1338
|
} & {
|
|
1356
1339
|
headers: {
|
|
1357
1340
|
"x-access-token"?: string | undefined;
|
|
@@ -1363,23 +1346,34 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1363
1346
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1364
1347
|
[x: string]: unknown;
|
|
1365
1348
|
}, 429, "application/json">>>;
|
|
1366
|
-
/**
|
|
1367
|
-
|
|
1349
|
+
/** Create linkage between an AppInstallation and DatabaseUsers. */
|
|
1350
|
+
setDatabaseUsers: (request: {
|
|
1368
1351
|
appInstallationId: string;
|
|
1369
1352
|
databaseId: string;
|
|
1353
|
+
data?: {
|
|
1354
|
+
databaseUserIds: {
|
|
1355
|
+
[x: string]: string;
|
|
1356
|
+
};
|
|
1357
|
+
} | undefined;
|
|
1370
1358
|
headers?: {
|
|
1371
1359
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1372
1360
|
"x-access-token"?: string | undefined;
|
|
1373
1361
|
} | undefined;
|
|
1374
1362
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1363
|
+
data: {
|
|
1364
|
+
databaseUserIds: {
|
|
1365
|
+
[k: string]: string;
|
|
1366
|
+
};
|
|
1367
|
+
};
|
|
1378
1368
|
} & {
|
|
1379
1369
|
pathParameters: {
|
|
1380
1370
|
appInstallationId: string;
|
|
1381
1371
|
databaseId: string;
|
|
1382
1372
|
};
|
|
1373
|
+
} & {
|
|
1374
|
+
headers?: Partial<{
|
|
1375
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1376
|
+
}>;
|
|
1383
1377
|
} & {
|
|
1384
1378
|
headers: {
|
|
1385
1379
|
"x-access-token"?: string | undefined;
|
|
@@ -1391,14 +1385,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1391
1385
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1392
1386
|
[x: string]: unknown;
|
|
1393
1387
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1388
|
+
data: {
|
|
1389
|
+
databaseUserIds: {
|
|
1390
|
+
[k: string]: string;
|
|
1391
|
+
};
|
|
1392
|
+
};
|
|
1397
1393
|
} & {
|
|
1398
1394
|
pathParameters: {
|
|
1399
1395
|
appInstallationId: string;
|
|
1400
1396
|
databaseId: string;
|
|
1401
1397
|
};
|
|
1398
|
+
} & {
|
|
1399
|
+
headers?: Partial<{
|
|
1400
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1401
|
+
}>;
|
|
1402
1402
|
} & {
|
|
1403
1403
|
headers: {
|
|
1404
1404
|
"x-access-token"?: string | undefined;
|
|
@@ -1913,7 +1913,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1913
1913
|
parentId?: string | undefined;
|
|
1914
1914
|
projectId: string;
|
|
1915
1915
|
requestedAt: string;
|
|
1916
|
-
restorePath?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePath | undefined;
|
|
1917
1916
|
status: string;
|
|
1918
1917
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1919
1918
|
[x: string]: unknown;
|
|
@@ -1950,7 +1949,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1950
1949
|
parentId?: string | undefined;
|
|
1951
1950
|
projectId: string;
|
|
1952
1951
|
requestedAt: string;
|
|
1953
|
-
restorePath?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePath | undefined;
|
|
1954
1952
|
status: string;
|
|
1955
1953
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1956
1954
|
[x: string]: unknown;
|
|
@@ -2173,7 +2171,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2173
2171
|
parentId?: string | undefined;
|
|
2174
2172
|
projectId: string;
|
|
2175
2173
|
requestedAt: string;
|
|
2176
|
-
restorePath?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePath | undefined;
|
|
2177
2174
|
status: string;
|
|
2178
2175
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2179
2176
|
[x: string]: unknown;
|
|
@@ -2205,7 +2202,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2205
2202
|
parentId?: string | undefined;
|
|
2206
2203
|
projectId: string;
|
|
2207
2204
|
requestedAt: string;
|
|
2208
|
-
restorePath?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePath | undefined;
|
|
2209
2205
|
status: string;
|
|
2210
2206
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2211
2207
|
[x: string]: unknown;
|
|
@@ -2262,167 +2258,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2262
2258
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2263
2259
|
[x: string]: unknown;
|
|
2264
2260
|
}, 429, "application/json">>>;
|
|
2265
|
-
/** Get table of contents for a ProjectBackup. */
|
|
2266
|
-
getProjectBackupDirectories: (request: {
|
|
2267
|
-
projectBackupId: string;
|
|
2268
|
-
headers?: {
|
|
2269
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2270
|
-
"x-access-token"?: string | undefined;
|
|
2271
|
-
} | undefined;
|
|
2272
|
-
queryParameters?: {
|
|
2273
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2274
|
-
directory?: string | undefined;
|
|
2275
|
-
} | undefined;
|
|
2276
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2277
|
-
headers?: Partial<{
|
|
2278
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2279
|
-
}>;
|
|
2280
|
-
} & {
|
|
2281
|
-
pathParameters: {
|
|
2282
|
-
projectBackupId: string;
|
|
2283
|
-
};
|
|
2284
|
-
} & {
|
|
2285
|
-
queryParameters: {
|
|
2286
|
-
directory?: string | undefined;
|
|
2287
|
-
} & Partial<{
|
|
2288
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2289
|
-
}>;
|
|
2290
|
-
} & {
|
|
2291
|
-
headers: {
|
|
2292
|
-
"x-access-token"?: string | undefined;
|
|
2293
|
-
} & Partial<{
|
|
2294
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2295
|
-
}>;
|
|
2296
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
2297
|
-
absolutePath: string;
|
|
2298
|
-
isDirectory?: boolean | undefined;
|
|
2299
|
-
isExecutable?: boolean | undefined;
|
|
2300
|
-
isFile?: boolean | undefined;
|
|
2301
|
-
isSymlink?: boolean | undefined;
|
|
2302
|
-
items?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupPath[] | undefined;
|
|
2303
|
-
name: string;
|
|
2304
|
-
size: number;
|
|
2305
|
-
target?: string | undefined;
|
|
2306
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2307
|
-
[x: string]: unknown;
|
|
2308
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2309
|
-
[x: string]: unknown;
|
|
2310
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2311
|
-
[x: string]: unknown;
|
|
2312
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2313
|
-
[x: string]: unknown;
|
|
2314
|
-
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2315
|
-
[x: string]: unknown;
|
|
2316
|
-
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2317
|
-
headers?: Partial<{
|
|
2318
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2319
|
-
}>;
|
|
2320
|
-
} & {
|
|
2321
|
-
pathParameters: {
|
|
2322
|
-
projectBackupId: string;
|
|
2323
|
-
};
|
|
2324
|
-
} & {
|
|
2325
|
-
queryParameters: {
|
|
2326
|
-
directory?: string | undefined;
|
|
2327
|
-
} & Partial<{
|
|
2328
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2329
|
-
}>;
|
|
2330
|
-
} & {
|
|
2331
|
-
headers: {
|
|
2332
|
-
"x-access-token"?: string | undefined;
|
|
2333
|
-
} & Partial<{
|
|
2334
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2335
|
-
}>;
|
|
2336
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
2337
|
-
absolutePath: string;
|
|
2338
|
-
isDirectory?: boolean | undefined;
|
|
2339
|
-
isExecutable?: boolean | undefined;
|
|
2340
|
-
isFile?: boolean | undefined;
|
|
2341
|
-
isSymlink?: boolean | undefined;
|
|
2342
|
-
items?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupPath[] | undefined;
|
|
2343
|
-
name: string;
|
|
2344
|
-
size: number;
|
|
2345
|
-
target?: string | undefined;
|
|
2346
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2347
|
-
[x: string]: unknown;
|
|
2348
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2349
|
-
[x: string]: unknown;
|
|
2350
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2351
|
-
[x: string]: unknown;
|
|
2352
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2353
|
-
[x: string]: unknown;
|
|
2354
|
-
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2355
|
-
[x: string]: unknown;
|
|
2356
|
-
}, 503, "application/json">>>;
|
|
2357
|
-
/** Restore a ProjectBackup's path. */
|
|
2358
|
-
requestProjectBackupRestorePath: (request: {
|
|
2359
|
-
data: {
|
|
2360
|
-
sourcePath: string;
|
|
2361
|
-
clearTargetPath?: boolean | undefined;
|
|
2362
|
-
targetPath?: string | undefined;
|
|
2363
|
-
};
|
|
2364
|
-
projectBackupId: string;
|
|
2365
|
-
headers?: {
|
|
2366
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2367
|
-
"x-access-token"?: string | undefined;
|
|
2368
|
-
} | undefined;
|
|
2369
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2370
|
-
data: {
|
|
2371
|
-
clearTargetPath?: boolean | undefined;
|
|
2372
|
-
sourcePath: string;
|
|
2373
|
-
targetPath?: string | undefined;
|
|
2374
|
-
};
|
|
2375
|
-
} & {
|
|
2376
|
-
pathParameters: {
|
|
2377
|
-
projectBackupId: string;
|
|
2378
|
-
};
|
|
2379
|
-
} & {
|
|
2380
|
-
headers?: Partial<{
|
|
2381
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2382
|
-
}>;
|
|
2383
|
-
} & {
|
|
2384
|
-
headers: {
|
|
2385
|
-
"x-access-token"?: string | undefined;
|
|
2386
|
-
} & Partial<{
|
|
2387
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2388
|
-
}>;
|
|
2389
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2390
|
-
[x: string]: unknown;
|
|
2391
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2392
|
-
[x: string]: unknown;
|
|
2393
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2394
|
-
[x: string]: unknown;
|
|
2395
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2396
|
-
[x: string]: unknown;
|
|
2397
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2398
|
-
data: {
|
|
2399
|
-
clearTargetPath?: boolean | undefined;
|
|
2400
|
-
sourcePath: string;
|
|
2401
|
-
targetPath?: string | undefined;
|
|
2402
|
-
};
|
|
2403
|
-
} & {
|
|
2404
|
-
pathParameters: {
|
|
2405
|
-
projectBackupId: string;
|
|
2406
|
-
};
|
|
2407
|
-
} & {
|
|
2408
|
-
headers?: Partial<{
|
|
2409
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2410
|
-
}>;
|
|
2411
|
-
} & {
|
|
2412
|
-
headers: {
|
|
2413
|
-
"x-access-token"?: string | undefined;
|
|
2414
|
-
} & Partial<{
|
|
2415
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2416
|
-
}>;
|
|
2417
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2418
|
-
[x: string]: unknown;
|
|
2419
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2420
|
-
[x: string]: unknown;
|
|
2421
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2422
|
-
[x: string]: unknown;
|
|
2423
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2424
|
-
[x: string]: unknown;
|
|
2425
|
-
}, 429, "application/json">>>;
|
|
2426
2261
|
/** Change the description of a ProjectBackup. */
|
|
2427
2262
|
updateProjectBackupDescription: (request: {
|
|
2428
2263
|
projectBackupId: string;
|
|
@@ -8189,7 +8024,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8189
8024
|
domain: string;
|
|
8190
8025
|
id: string;
|
|
8191
8026
|
};
|
|
8192
|
-
chargeability
|
|
8027
|
+
chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
|
|
8193
8028
|
consentedScopes: string[];
|
|
8194
8029
|
contributorId: string;
|
|
8195
8030
|
contributorName: string;
|
|
@@ -8229,7 +8064,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8229
8064
|
domain: string;
|
|
8230
8065
|
id: string;
|
|
8231
8066
|
};
|
|
8232
|
-
chargeability
|
|
8067
|
+
chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
|
|
8233
8068
|
consentedScopes: string[];
|
|
8234
8069
|
contributorId: string;
|
|
8235
8070
|
contributorName: string;
|
|
@@ -9218,7 +9053,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9218
9053
|
domain: string;
|
|
9219
9054
|
id: string;
|
|
9220
9055
|
};
|
|
9221
|
-
chargeability
|
|
9056
|
+
chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
|
|
9222
9057
|
consentedScopes: string[];
|
|
9223
9058
|
contributorId: string;
|
|
9224
9059
|
contributorName: string;
|
|
@@ -9259,7 +9094,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9259
9094
|
domain: string;
|
|
9260
9095
|
id: string;
|
|
9261
9096
|
};
|
|
9262
|
-
chargeability
|
|
9097
|
+
chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
|
|
9263
9098
|
consentedScopes: string[];
|
|
9264
9099
|
contributorId: string;
|
|
9265
9100
|
contributorName: string;
|
|
@@ -9309,7 +9144,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9309
9144
|
domain: string;
|
|
9310
9145
|
id: string;
|
|
9311
9146
|
};
|
|
9312
|
-
chargeability
|
|
9147
|
+
chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
|
|
9313
9148
|
consentedScopes: string[];
|
|
9314
9149
|
contributorId: string;
|
|
9315
9150
|
contributorName: string;
|
|
@@ -9350,7 +9185,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9350
9185
|
domain: string;
|
|
9351
9186
|
id: string;
|
|
9352
9187
|
};
|
|
9353
|
-
chargeability
|
|
9188
|
+
chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
|
|
9354
9189
|
consentedScopes: string[];
|
|
9355
9190
|
contributorId: string;
|
|
9356
9191
|
contributorName: string;
|
|
@@ -17741,69 +17576,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17741
17576
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17742
17577
|
[x: string]: unknown;
|
|
17743
17578
|
}, 429, "application/json">>>;
|
|
17744
|
-
/** Update the certificate of a CertificateRequest. */
|
|
17745
|
-
sslSetCertificateRequestCertificate: (request: {
|
|
17746
|
-
data: {
|
|
17747
|
-
certificate: string;
|
|
17748
|
-
};
|
|
17749
|
-
certificateRequestId: string;
|
|
17750
|
-
headers?: {
|
|
17751
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17752
|
-
"x-access-token"?: string | undefined;
|
|
17753
|
-
} | undefined;
|
|
17754
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17755
|
-
data: {
|
|
17756
|
-
certificate: string;
|
|
17757
|
-
};
|
|
17758
|
-
} & {
|
|
17759
|
-
pathParameters: {
|
|
17760
|
-
certificateRequestId: string;
|
|
17761
|
-
};
|
|
17762
|
-
} & {
|
|
17763
|
-
headers?: Partial<{
|
|
17764
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17765
|
-
}>;
|
|
17766
|
-
} & {
|
|
17767
|
-
headers: {
|
|
17768
|
-
"x-access-token"?: string | undefined;
|
|
17769
|
-
} & Partial<{
|
|
17770
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17771
|
-
}>;
|
|
17772
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17773
|
-
[x: string]: unknown;
|
|
17774
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17775
|
-
[x: string]: unknown;
|
|
17776
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17777
|
-
[x: string]: unknown;
|
|
17778
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17779
|
-
[x: string]: unknown;
|
|
17780
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17781
|
-
data: {
|
|
17782
|
-
certificate: string;
|
|
17783
|
-
};
|
|
17784
|
-
} & {
|
|
17785
|
-
pathParameters: {
|
|
17786
|
-
certificateRequestId: string;
|
|
17787
|
-
};
|
|
17788
|
-
} & {
|
|
17789
|
-
headers?: Partial<{
|
|
17790
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17791
|
-
}>;
|
|
17792
|
-
} & {
|
|
17793
|
-
headers: {
|
|
17794
|
-
"x-access-token"?: string | undefined;
|
|
17795
|
-
} & Partial<{
|
|
17796
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17797
|
-
}>;
|
|
17798
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17799
|
-
[x: string]: unknown;
|
|
17800
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17801
|
-
[x: string]: unknown;
|
|
17802
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17803
|
-
[x: string]: unknown;
|
|
17804
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17805
|
-
[x: string]: unknown;
|
|
17806
|
-
}, 429, "application/json">>>;
|
|
17807
17579
|
};
|
|
17808
17580
|
/** The mail API allows you to manage your mail accounts. */
|
|
17809
17581
|
readonly mail: {
|
|
@@ -19094,237 +18866,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19094
18866
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19095
18867
|
[x: string]: unknown;
|
|
19096
18868
|
}, 503, "application/json">>>;
|
|
19097
|
-
/** Check if a Migration between two projects is possible. */
|
|
19098
|
-
migrationCheckMigrationIsPossible: (request: {
|
|
19099
|
-
data: {
|
|
19100
|
-
sourceLegacyProjectId: string;
|
|
19101
|
-
targetProjectId: string;
|
|
19102
|
-
};
|
|
19103
|
-
headers: {
|
|
19104
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19105
|
-
Authorization: string;
|
|
19106
|
-
"x-access-token"?: string | undefined;
|
|
19107
|
-
};
|
|
19108
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19109
|
-
data: {
|
|
19110
|
-
sourceLegacyProjectId: string;
|
|
19111
|
-
targetProjectId: string;
|
|
19112
|
-
};
|
|
19113
|
-
} & {
|
|
19114
|
-
headers?: Partial<{
|
|
19115
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19116
|
-
}>;
|
|
19117
|
-
} & {
|
|
19118
|
-
headers: {
|
|
19119
|
-
"x-access-token"?: string | undefined;
|
|
19120
|
-
Authorization: string;
|
|
19121
|
-
} & Partial<{
|
|
19122
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19123
|
-
}>;
|
|
19124
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
19125
|
-
errors?: import("./types.js").MittwaldAPIV2.Components.Schemas.MailmigrationPossibleCheckErrors | undefined;
|
|
19126
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19127
|
-
[x: string]: unknown;
|
|
19128
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19129
|
-
[x: string]: unknown;
|
|
19130
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19131
|
-
data: {
|
|
19132
|
-
sourceLegacyProjectId: string;
|
|
19133
|
-
targetProjectId: string;
|
|
19134
|
-
};
|
|
19135
|
-
} & {
|
|
19136
|
-
headers?: Partial<{
|
|
19137
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19138
|
-
}>;
|
|
19139
|
-
} & {
|
|
19140
|
-
headers: {
|
|
19141
|
-
"x-access-token"?: string | undefined;
|
|
19142
|
-
Authorization: string;
|
|
19143
|
-
} & Partial<{
|
|
19144
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19145
|
-
}>;
|
|
19146
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
19147
|
-
errors?: import("./types.js").MittwaldAPIV2.Components.Schemas.MailmigrationPossibleCheckErrors | undefined;
|
|
19148
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19149
|
-
[x: string]: unknown;
|
|
19150
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19151
|
-
[x: string]: unknown;
|
|
19152
|
-
}, 429, "application/json">>>;
|
|
19153
|
-
/** Get a Migration. */
|
|
19154
|
-
migrationGetMigration: (request: {
|
|
19155
|
-
migrationId: string;
|
|
19156
|
-
headers?: {
|
|
19157
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19158
|
-
"x-access-token"?: string | undefined;
|
|
19159
|
-
} | undefined;
|
|
19160
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19161
|
-
headers?: Partial<{
|
|
19162
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19163
|
-
}>;
|
|
19164
|
-
} & {
|
|
19165
|
-
pathParameters: {
|
|
19166
|
-
migrationId: string;
|
|
19167
|
-
};
|
|
19168
|
-
} & {
|
|
19169
|
-
headers: {
|
|
19170
|
-
"x-access-token"?: string | undefined;
|
|
19171
|
-
} & Partial<{
|
|
19172
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19173
|
-
}>;
|
|
19174
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
19175
|
-
aborted: boolean;
|
|
19176
|
-
addresses: import("./types.js").MittwaldAPIV2.Components.Schemas.MailmigrationMigrationMailAddress[];
|
|
19177
|
-
finalizers: import("./types.js").MittwaldAPIV2.Components.Schemas.MailmigrationMigrationFinalizeJob;
|
|
19178
|
-
finished: boolean;
|
|
19179
|
-
id: string;
|
|
19180
|
-
mailboxes: import("./types.js").MittwaldAPIV2.Components.Schemas.MailmigrationMigrationMailbox[];
|
|
19181
|
-
sourceCoabProjectId: string;
|
|
19182
|
-
targetNexusProjectId: string;
|
|
19183
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19184
|
-
[x: string]: unknown;
|
|
19185
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19186
|
-
[x: string]: unknown;
|
|
19187
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19188
|
-
headers?: Partial<{
|
|
19189
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19190
|
-
}>;
|
|
19191
|
-
} & {
|
|
19192
|
-
pathParameters: {
|
|
19193
|
-
migrationId: string;
|
|
19194
|
-
};
|
|
19195
|
-
} & {
|
|
19196
|
-
headers: {
|
|
19197
|
-
"x-access-token"?: string | undefined;
|
|
19198
|
-
} & Partial<{
|
|
19199
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19200
|
-
}>;
|
|
19201
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
19202
|
-
aborted: boolean;
|
|
19203
|
-
addresses: import("./types.js").MittwaldAPIV2.Components.Schemas.MailmigrationMigrationMailAddress[];
|
|
19204
|
-
finalizers: import("./types.js").MittwaldAPIV2.Components.Schemas.MailmigrationMigrationFinalizeJob;
|
|
19205
|
-
finished: boolean;
|
|
19206
|
-
id: string;
|
|
19207
|
-
mailboxes: import("./types.js").MittwaldAPIV2.Components.Schemas.MailmigrationMigrationMailbox[];
|
|
19208
|
-
sourceCoabProjectId: string;
|
|
19209
|
-
targetNexusProjectId: string;
|
|
19210
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19211
|
-
[x: string]: unknown;
|
|
19212
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19213
|
-
[x: string]: unknown;
|
|
19214
|
-
}, 429, "application/json">>>;
|
|
19215
|
-
/** List Migrations belonging to a Project in customer center or mStudio. */
|
|
19216
|
-
migrationListMigrations: (request: {
|
|
19217
|
-
headers: {
|
|
19218
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19219
|
-
Authorization: string;
|
|
19220
|
-
"x-access-token"?: string | undefined;
|
|
19221
|
-
};
|
|
19222
|
-
queryParameters?: {
|
|
19223
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19224
|
-
pAccountName?: string | undefined;
|
|
19225
|
-
projectId?: string | undefined;
|
|
19226
|
-
} | undefined;
|
|
19227
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19228
|
-
headers?: Partial<{
|
|
19229
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19230
|
-
}>;
|
|
19231
|
-
} & {
|
|
19232
|
-
queryParameters: {
|
|
19233
|
-
pAccountName?: string | undefined;
|
|
19234
|
-
projectId?: string | undefined;
|
|
19235
|
-
} & Partial<{
|
|
19236
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19237
|
-
}>;
|
|
19238
|
-
} & {
|
|
19239
|
-
headers: {
|
|
19240
|
-
"x-access-token"?: string | undefined;
|
|
19241
|
-
Authorization: string;
|
|
19242
|
-
} & Partial<{
|
|
19243
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19244
|
-
}>;
|
|
19245
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailmigrationMigration[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19246
|
-
[x: string]: unknown;
|
|
19247
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19248
|
-
[x: string]: unknown;
|
|
19249
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19250
|
-
headers?: Partial<{
|
|
19251
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19252
|
-
}>;
|
|
19253
|
-
} & {
|
|
19254
|
-
queryParameters: {
|
|
19255
|
-
pAccountName?: string | undefined;
|
|
19256
|
-
projectId?: string | undefined;
|
|
19257
|
-
} & Partial<{
|
|
19258
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19259
|
-
}>;
|
|
19260
|
-
} & {
|
|
19261
|
-
headers: {
|
|
19262
|
-
"x-access-token"?: string | undefined;
|
|
19263
|
-
Authorization: string;
|
|
19264
|
-
} & Partial<{
|
|
19265
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19266
|
-
}>;
|
|
19267
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailmigrationMigration[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19268
|
-
[x: string]: unknown;
|
|
19269
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19270
|
-
[x: string]: unknown;
|
|
19271
|
-
}, 429, "application/json">>>;
|
|
19272
|
-
/** Request a Mail Migration between two projects. */
|
|
19273
|
-
migrationRequestMailMigration: (request: {
|
|
19274
|
-
data: {
|
|
19275
|
-
sourceLegacyProjectId: string;
|
|
19276
|
-
targetProjectId: string;
|
|
19277
|
-
};
|
|
19278
|
-
headers: {
|
|
19279
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19280
|
-
Authorization: string;
|
|
19281
|
-
"x-access-token"?: string | undefined;
|
|
19282
|
-
};
|
|
19283
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19284
|
-
data: {
|
|
19285
|
-
sourceLegacyProjectId: string;
|
|
19286
|
-
targetProjectId: string;
|
|
19287
|
-
};
|
|
19288
|
-
} & {
|
|
19289
|
-
headers?: Partial<{
|
|
19290
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19291
|
-
}>;
|
|
19292
|
-
} & {
|
|
19293
|
-
headers: {
|
|
19294
|
-
"x-access-token"?: string | undefined;
|
|
19295
|
-
Authorization: string;
|
|
19296
|
-
} & Partial<{
|
|
19297
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19298
|
-
}>;
|
|
19299
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19300
|
-
[x: string]: unknown;
|
|
19301
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19302
|
-
[x: string]: unknown;
|
|
19303
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19304
|
-
[x: string]: unknown;
|
|
19305
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19306
|
-
data: {
|
|
19307
|
-
sourceLegacyProjectId: string;
|
|
19308
|
-
targetProjectId: string;
|
|
19309
|
-
};
|
|
19310
|
-
} & {
|
|
19311
|
-
headers?: Partial<{
|
|
19312
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19313
|
-
}>;
|
|
19314
|
-
} & {
|
|
19315
|
-
headers: {
|
|
19316
|
-
"x-access-token"?: string | undefined;
|
|
19317
|
-
Authorization: string;
|
|
19318
|
-
} & Partial<{
|
|
19319
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19320
|
-
}>;
|
|
19321
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19322
|
-
[x: string]: unknown;
|
|
19323
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19324
|
-
[x: string]: unknown;
|
|
19325
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19326
|
-
[x: string]: unknown;
|
|
19327
|
-
}, 429, "application/json">>>;
|
|
19328
18869
|
/** Recover emails for a MailAddress from a backup. */
|
|
19329
18870
|
recoverMailAddressEmails: (request: {
|
|
19330
18871
|
mailAddressId: string;
|
|
@@ -20389,7 +19930,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
20389
19930
|
token: string;
|
|
20390
19931
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20391
19932
|
name?: "SecondFactorRequired" | undefined;
|
|
20392
|
-
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<
|
|
19933
|
+
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19934
|
+
[x: string]: unknown;
|
|
19935
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20393
19936
|
type: "ValidationError";
|
|
20394
19937
|
message?: string | undefined;
|
|
20395
19938
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
@@ -20410,7 +19953,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
20410
19953
|
token: string;
|
|
20411
19954
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20412
19955
|
name?: "SecondFactorRequired" | undefined;
|
|
20413
|
-
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<
|
|
19956
|
+
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19957
|
+
[x: string]: unknown;
|
|
19958
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20414
19959
|
type: "ValidationError";
|
|
20415
19960
|
message?: string | undefined;
|
|
20416
19961
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
@@ -24409,6 +23954,79 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24409
23954
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24410
23955
|
[x: string]: unknown;
|
|
24411
23956
|
}, 429, "application/json">>>;
|
|
23957
|
+
/** Obtain a service token. */
|
|
23958
|
+
servicetokenAuthenticateService: (request: {
|
|
23959
|
+
data: {
|
|
23960
|
+
secretAccessKey: string;
|
|
23961
|
+
};
|
|
23962
|
+
accessKeyId: string;
|
|
23963
|
+
headers?: {
|
|
23964
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
23965
|
+
"x-access-token"?: string | undefined;
|
|
23966
|
+
} | undefined;
|
|
23967
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23968
|
+
data: {
|
|
23969
|
+
secretAccessKey: string;
|
|
23970
|
+
};
|
|
23971
|
+
} & {
|
|
23972
|
+
pathParameters: {
|
|
23973
|
+
accessKeyId: string;
|
|
23974
|
+
};
|
|
23975
|
+
} & {
|
|
23976
|
+
headers?: Partial<{
|
|
23977
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23978
|
+
}>;
|
|
23979
|
+
} & {
|
|
23980
|
+
headers: {
|
|
23981
|
+
"x-access-token"?: string | undefined;
|
|
23982
|
+
} & Partial<{
|
|
23983
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23984
|
+
}>;
|
|
23985
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
23986
|
+
accessToken: {
|
|
23987
|
+
id: string;
|
|
23988
|
+
jwtClaims: {
|
|
23989
|
+
exp: string;
|
|
23990
|
+
iat: string;
|
|
23991
|
+
iss: string;
|
|
23992
|
+
sub: string;
|
|
23993
|
+
};
|
|
23994
|
+
publicToken: string;
|
|
23995
|
+
};
|
|
23996
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23997
|
+
[x: string]: unknown;
|
|
23998
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23999
|
+
data: {
|
|
24000
|
+
secretAccessKey: string;
|
|
24001
|
+
};
|
|
24002
|
+
} & {
|
|
24003
|
+
pathParameters: {
|
|
24004
|
+
accessKeyId: string;
|
|
24005
|
+
};
|
|
24006
|
+
} & {
|
|
24007
|
+
headers?: Partial<{
|
|
24008
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24009
|
+
}>;
|
|
24010
|
+
} & {
|
|
24011
|
+
headers: {
|
|
24012
|
+
"x-access-token"?: string | undefined;
|
|
24013
|
+
} & Partial<{
|
|
24014
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24015
|
+
}>;
|
|
24016
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
24017
|
+
accessToken: {
|
|
24018
|
+
id: string;
|
|
24019
|
+
jwtClaims: {
|
|
24020
|
+
exp: string;
|
|
24021
|
+
iat: string;
|
|
24022
|
+
iss: string;
|
|
24023
|
+
sub: string;
|
|
24024
|
+
};
|
|
24025
|
+
publicToken: string;
|
|
24026
|
+
};
|
|
24027
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24028
|
+
[x: string]: unknown;
|
|
24029
|
+
}, 429, "application/json">>>;
|
|
24412
24030
|
/** Check if an email is from mittwald. */
|
|
24413
24031
|
verificationDetectPhishingEmail: (request?: {
|
|
24414
24032
|
data?: {
|