@mittwald/api-client 0.0.0-development-bc8cbfe-20250710 → 0.0.0-development-076c388-20250804
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 +2 -0
- package/dist/esm/generated/v2/client.js +7 -3
- package/dist/esm/generated/v2/descriptors.js +19 -7
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +24 -3
- package/dist/types/generated/v2/client.d.ts +264 -99
- package/dist/types/generated/v2/descriptors.d.ts +9 -5
- package/dist/types/generated/v2/types.d.ts +260 -68
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1899,6 +1899,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1899
1899
|
parentId?: string | undefined;
|
|
1900
1900
|
projectId: string;
|
|
1901
1901
|
requestedAt: string;
|
|
1902
|
+
restorePaths?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePaths | undefined;
|
|
1902
1903
|
status: string;
|
|
1903
1904
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1904
1905
|
[x: string]: unknown;
|
|
@@ -1935,6 +1936,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1935
1936
|
parentId?: string | undefined;
|
|
1936
1937
|
projectId: string;
|
|
1937
1938
|
requestedAt: string;
|
|
1939
|
+
restorePaths?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePaths | undefined;
|
|
1938
1940
|
status: string;
|
|
1939
1941
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1940
1942
|
[x: string]: unknown;
|
|
@@ -2157,6 +2159,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2157
2159
|
parentId?: string | undefined;
|
|
2158
2160
|
projectId: string;
|
|
2159
2161
|
requestedAt: string;
|
|
2162
|
+
restorePaths?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePaths | undefined;
|
|
2160
2163
|
status: string;
|
|
2161
2164
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2162
2165
|
[x: string]: unknown;
|
|
@@ -2188,6 +2191,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2188
2191
|
parentId?: string | undefined;
|
|
2189
2192
|
projectId: string;
|
|
2190
2193
|
requestedAt: string;
|
|
2194
|
+
restorePaths?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePaths | undefined;
|
|
2191
2195
|
status: string;
|
|
2192
2196
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2193
2197
|
[x: string]: unknown;
|
|
@@ -2244,6 +2248,84 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2244
2248
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2245
2249
|
[x: string]: unknown;
|
|
2246
2250
|
}, 429, "application/json">>>;
|
|
2251
|
+
/** Restore a ProjectBackup's paths. */
|
|
2252
|
+
requestProjectBackupRestorePaths: (request: {
|
|
2253
|
+
projectBackupId: string;
|
|
2254
|
+
data?: {
|
|
2255
|
+
clearTargetPath?: boolean | undefined;
|
|
2256
|
+
determinedSourcePath?: string | undefined;
|
|
2257
|
+
determinedTargetPath?: string | undefined;
|
|
2258
|
+
phase?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupRestorePathsPhase | undefined;
|
|
2259
|
+
sourcePath?: string | undefined;
|
|
2260
|
+
targetPath?: string | undefined;
|
|
2261
|
+
} | undefined;
|
|
2262
|
+
headers?: {
|
|
2263
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2264
|
+
"x-access-token"?: string | undefined;
|
|
2265
|
+
} | undefined;
|
|
2266
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2267
|
+
data: {
|
|
2268
|
+
clearTargetPath?: boolean | undefined;
|
|
2269
|
+
determinedSourcePath?: string | undefined;
|
|
2270
|
+
determinedTargetPath?: string | undefined;
|
|
2271
|
+
phase?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupRestorePathsPhase | undefined;
|
|
2272
|
+
sourcePath?: string | undefined;
|
|
2273
|
+
targetPath?: string | undefined;
|
|
2274
|
+
};
|
|
2275
|
+
} & {
|
|
2276
|
+
pathParameters: {
|
|
2277
|
+
projectBackupId: string;
|
|
2278
|
+
};
|
|
2279
|
+
} & {
|
|
2280
|
+
headers?: Partial<{
|
|
2281
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2282
|
+
}>;
|
|
2283
|
+
} & {
|
|
2284
|
+
headers: {
|
|
2285
|
+
"x-access-token"?: string | undefined;
|
|
2286
|
+
} & Partial<{
|
|
2287
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2288
|
+
}>;
|
|
2289
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2290
|
+
[x: string]: unknown;
|
|
2291
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2292
|
+
[x: string]: unknown;
|
|
2293
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2294
|
+
[x: string]: unknown;
|
|
2295
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2296
|
+
[x: string]: unknown;
|
|
2297
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2298
|
+
data: {
|
|
2299
|
+
clearTargetPath?: boolean | undefined;
|
|
2300
|
+
determinedSourcePath?: string | undefined;
|
|
2301
|
+
determinedTargetPath?: string | undefined;
|
|
2302
|
+
phase?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupRestorePathsPhase | undefined;
|
|
2303
|
+
sourcePath?: string | undefined;
|
|
2304
|
+
targetPath?: string | undefined;
|
|
2305
|
+
};
|
|
2306
|
+
} & {
|
|
2307
|
+
pathParameters: {
|
|
2308
|
+
projectBackupId: string;
|
|
2309
|
+
};
|
|
2310
|
+
} & {
|
|
2311
|
+
headers?: Partial<{
|
|
2312
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2313
|
+
}>;
|
|
2314
|
+
} & {
|
|
2315
|
+
headers: {
|
|
2316
|
+
"x-access-token"?: string | undefined;
|
|
2317
|
+
} & Partial<{
|
|
2318
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2319
|
+
}>;
|
|
2320
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2321
|
+
[x: string]: unknown;
|
|
2322
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2323
|
+
[x: string]: unknown;
|
|
2324
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2325
|
+
[x: string]: unknown;
|
|
2326
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2327
|
+
[x: string]: unknown;
|
|
2328
|
+
}, 429, "application/json">>>;
|
|
2247
2329
|
/** Change the description of a ProjectBackup. */
|
|
2248
2330
|
updateProjectBackupDescription: (request: {
|
|
2249
2331
|
projectBackupId: string;
|
|
@@ -2568,6 +2650,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2568
2650
|
[x: string]: string;
|
|
2569
2651
|
} | undefined;
|
|
2570
2652
|
ports?: string[] | undefined;
|
|
2653
|
+
recreate?: boolean | undefined;
|
|
2571
2654
|
volumes?: string[] | undefined;
|
|
2572
2655
|
};
|
|
2573
2656
|
} | undefined;
|
|
@@ -2673,6 +2756,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2673
2756
|
command?: string[] | undefined;
|
|
2674
2757
|
description?: string | undefined;
|
|
2675
2758
|
entrypoint?: string[] | undefined;
|
|
2759
|
+
environment?: {
|
|
2760
|
+
[x: string]: string;
|
|
2761
|
+
} | undefined;
|
|
2676
2762
|
envs?: {
|
|
2677
2763
|
[x: string]: string;
|
|
2678
2764
|
} | undefined;
|
|
@@ -3370,6 +3456,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3370
3456
|
queryParameters?: {
|
|
3371
3457
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3372
3458
|
stackId?: string | undefined;
|
|
3459
|
+
status?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus | undefined;
|
|
3460
|
+
requiresRecreate?: boolean | undefined;
|
|
3461
|
+
searchTerm?: string | undefined;
|
|
3462
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
|
|
3373
3463
|
limit?: number | undefined;
|
|
3374
3464
|
skip?: number | undefined;
|
|
3375
3465
|
page?: number | undefined;
|
|
@@ -3385,6 +3475,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3385
3475
|
} & {
|
|
3386
3476
|
queryParameters: {
|
|
3387
3477
|
stackId?: string | undefined;
|
|
3478
|
+
status?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus | undefined;
|
|
3479
|
+
requiresRecreate?: boolean | undefined;
|
|
3480
|
+
searchTerm?: string | undefined;
|
|
3481
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
|
|
3388
3482
|
limit?: number | undefined;
|
|
3389
3483
|
skip?: number | undefined;
|
|
3390
3484
|
page?: number | undefined;
|
|
@@ -3418,6 +3512,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3418
3512
|
} & {
|
|
3419
3513
|
queryParameters: {
|
|
3420
3514
|
stackId?: string | undefined;
|
|
3515
|
+
status?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus | undefined;
|
|
3516
|
+
requiresRecreate?: boolean | undefined;
|
|
3517
|
+
searchTerm?: string | undefined;
|
|
3518
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder | undefined;
|
|
3421
3519
|
limit?: number | undefined;
|
|
3422
3520
|
skip?: number | undefined;
|
|
3423
3521
|
page?: number | undefined;
|
|
@@ -3525,6 +3623,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3525
3623
|
queryParameters?: {
|
|
3526
3624
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3527
3625
|
stackId?: string | undefined;
|
|
3626
|
+
searchTerm?: string | undefined;
|
|
3627
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
|
|
3528
3628
|
limit?: number | undefined;
|
|
3529
3629
|
skip?: number | undefined;
|
|
3530
3630
|
page?: number | undefined;
|
|
@@ -3540,6 +3640,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3540
3640
|
} & {
|
|
3541
3641
|
queryParameters: {
|
|
3542
3642
|
stackId?: string | undefined;
|
|
3643
|
+
searchTerm?: string | undefined;
|
|
3644
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
|
|
3543
3645
|
limit?: number | undefined;
|
|
3544
3646
|
skip?: number | undefined;
|
|
3545
3647
|
page?: number | undefined;
|
|
@@ -3571,6 +3673,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3571
3673
|
} & {
|
|
3572
3674
|
queryParameters: {
|
|
3573
3675
|
stackId?: string | undefined;
|
|
3676
|
+
searchTerm?: string | undefined;
|
|
3677
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
|
|
3574
3678
|
limit?: number | undefined;
|
|
3575
3679
|
skip?: number | undefined;
|
|
3576
3680
|
page?: number | undefined;
|
|
@@ -3592,23 +3696,30 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3592
3696
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3593
3697
|
[x: string]: unknown;
|
|
3594
3698
|
}, 500, "application/json">>>;
|
|
3595
|
-
/** Pulls the latest version of the Service's image and recreates the Service. */
|
|
3699
|
+
/** Pulls the latest version of the Service's image and optionally recreates the Service. */
|
|
3596
3700
|
pullImageForService: (request: {
|
|
3597
3701
|
stackId: string;
|
|
3598
3702
|
serviceId: string;
|
|
3703
|
+
data?: {
|
|
3704
|
+
skipRecreate?: boolean | undefined;
|
|
3705
|
+
} | undefined;
|
|
3599
3706
|
headers?: {
|
|
3600
3707
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3601
3708
|
"x-access-token"?: string | undefined;
|
|
3602
3709
|
} | undefined;
|
|
3603
3710
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
}
|
|
3711
|
+
data: {
|
|
3712
|
+
skipRecreate?: boolean | undefined;
|
|
3713
|
+
};
|
|
3607
3714
|
} & {
|
|
3608
3715
|
pathParameters: {
|
|
3609
3716
|
stackId: string;
|
|
3610
3717
|
serviceId: string;
|
|
3611
3718
|
};
|
|
3719
|
+
} & {
|
|
3720
|
+
headers?: Partial<{
|
|
3721
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3722
|
+
}>;
|
|
3612
3723
|
} & {
|
|
3613
3724
|
headers: {
|
|
3614
3725
|
"x-access-token"?: string | undefined;
|
|
@@ -3628,14 +3739,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3628
3739
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3629
3740
|
[x: string]: unknown;
|
|
3630
3741
|
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
}
|
|
3742
|
+
data: {
|
|
3743
|
+
skipRecreate?: boolean | undefined;
|
|
3744
|
+
};
|
|
3634
3745
|
} & {
|
|
3635
3746
|
pathParameters: {
|
|
3636
3747
|
stackId: string;
|
|
3637
3748
|
serviceId: string;
|
|
3638
3749
|
};
|
|
3750
|
+
} & {
|
|
3751
|
+
headers?: Partial<{
|
|
3752
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3753
|
+
}>;
|
|
3639
3754
|
} & {
|
|
3640
3755
|
headers: {
|
|
3641
3756
|
"x-access-token"?: string | undefined;
|
|
@@ -3931,6 +4046,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3931
4046
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3932
4047
|
}>;
|
|
3933
4048
|
}, import("@mittwald/api-client-commons").Response<{
|
|
4049
|
+
reason?: string | undefined;
|
|
3934
4050
|
valid: boolean;
|
|
3935
4051
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3936
4052
|
[x: string]: unknown;
|
|
@@ -3959,6 +4075,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3959
4075
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3960
4076
|
}>;
|
|
3961
4077
|
}, import("@mittwald/api-client-commons").Response<{
|
|
4078
|
+
reason?: string | undefined;
|
|
3962
4079
|
valid: boolean;
|
|
3963
4080
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3964
4081
|
[x: string]: unknown;
|
|
@@ -5356,6 +5473,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5356
5473
|
queryParameters?: {
|
|
5357
5474
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5358
5475
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
5476
|
+
search?: string | undefined;
|
|
5359
5477
|
limit?: number | undefined;
|
|
5360
5478
|
skip?: number | undefined;
|
|
5361
5479
|
page?: number | undefined;
|
|
@@ -5373,6 +5491,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5373
5491
|
} & {
|
|
5374
5492
|
queryParameters: {
|
|
5375
5493
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
5494
|
+
search?: string | undefined;
|
|
5376
5495
|
limit?: number | undefined;
|
|
5377
5496
|
skip?: number | undefined;
|
|
5378
5497
|
page?: number | undefined;
|
|
@@ -5404,6 +5523,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5404
5523
|
} & {
|
|
5405
5524
|
queryParameters: {
|
|
5406
5525
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
5526
|
+
search?: string | undefined;
|
|
5407
5527
|
limit?: number | undefined;
|
|
5408
5528
|
skip?: number | undefined;
|
|
5409
5529
|
page?: number | undefined;
|
|
@@ -7196,7 +7316,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7196
7316
|
};
|
|
7197
7317
|
chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
|
|
7198
7318
|
consentedScopes: string[];
|
|
7199
|
-
contributorId
|
|
7319
|
+
contributorId: string;
|
|
7200
7320
|
contributorName: string;
|
|
7201
7321
|
createdAt?: string | undefined;
|
|
7202
7322
|
disabled: boolean;
|
|
@@ -7232,7 +7352,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7232
7352
|
};
|
|
7233
7353
|
chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
|
|
7234
7354
|
consentedScopes: string[];
|
|
7235
|
-
contributorId
|
|
7355
|
+
contributorId: string;
|
|
7236
7356
|
contributorName: string;
|
|
7237
7357
|
createdAt?: string | undefined;
|
|
7238
7358
|
disabled: boolean;
|
|
@@ -8217,7 +8337,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8217
8337
|
};
|
|
8218
8338
|
chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
|
|
8219
8339
|
consentedScopes: string[];
|
|
8220
|
-
contributorId
|
|
8340
|
+
contributorId: string;
|
|
8221
8341
|
contributorName: string;
|
|
8222
8342
|
createdAt?: string | undefined;
|
|
8223
8343
|
disabled: boolean;
|
|
@@ -8254,7 +8374,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8254
8374
|
};
|
|
8255
8375
|
chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
|
|
8256
8376
|
consentedScopes: string[];
|
|
8257
|
-
contributorId
|
|
8377
|
+
contributorId: string;
|
|
8258
8378
|
contributorName: string;
|
|
8259
8379
|
createdAt?: string | undefined;
|
|
8260
8380
|
disabled: boolean;
|
|
@@ -8300,7 +8420,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8300
8420
|
};
|
|
8301
8421
|
chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
|
|
8302
8422
|
consentedScopes: string[];
|
|
8303
|
-
contributorId
|
|
8423
|
+
contributorId: string;
|
|
8304
8424
|
contributorName: string;
|
|
8305
8425
|
createdAt?: string | undefined;
|
|
8306
8426
|
disabled: boolean;
|
|
@@ -8337,7 +8457,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8337
8457
|
};
|
|
8338
8458
|
chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
|
|
8339
8459
|
consentedScopes: string[];
|
|
8340
|
-
contributorId
|
|
8460
|
+
contributorId: string;
|
|
8341
8461
|
contributorName: string;
|
|
8342
8462
|
createdAt?: string | undefined;
|
|
8343
8463
|
disabled: boolean;
|
|
@@ -8600,6 +8720,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8600
8720
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8601
8721
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
8602
8722
|
searchTerm?: string | undefined;
|
|
8723
|
+
includeDeprecated?: boolean | undefined;
|
|
8603
8724
|
limit?: number | undefined;
|
|
8604
8725
|
skip?: number | undefined;
|
|
8605
8726
|
page?: number | undefined;
|
|
@@ -8612,6 +8733,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8612
8733
|
queryParameters: {
|
|
8613
8734
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
8614
8735
|
searchTerm?: string | undefined;
|
|
8736
|
+
includeDeprecated?: boolean | undefined;
|
|
8615
8737
|
limit?: number | undefined;
|
|
8616
8738
|
skip?: number | undefined;
|
|
8617
8739
|
page?: number | undefined;
|
|
@@ -8628,6 +8750,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8628
8750
|
queryParameters: {
|
|
8629
8751
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
8630
8752
|
searchTerm?: string | undefined;
|
|
8753
|
+
includeDeprecated?: boolean | undefined;
|
|
8631
8754
|
limit?: number | undefined;
|
|
8632
8755
|
skip?: number | undefined;
|
|
8633
8756
|
page?: number | undefined;
|
|
@@ -9366,92 +9489,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9366
9489
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9367
9490
|
[x: string]: unknown;
|
|
9368
9491
|
}, 429, "application/json">>>;
|
|
9369
|
-
/** Start a checkout process for an extension. */
|
|
9370
|
-
extensionStartExtensionCheckout: (request: {
|
|
9371
|
-
data: {
|
|
9372
|
-
consentedScopes: string[];
|
|
9373
|
-
customerId: string;
|
|
9374
|
-
};
|
|
9375
|
-
extensionId: string;
|
|
9376
|
-
headers?: {
|
|
9377
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9378
|
-
"x-access-token"?: string | undefined;
|
|
9379
|
-
} | undefined;
|
|
9380
|
-
} | {
|
|
9381
|
-
data: {
|
|
9382
|
-
consentedScopes: string[];
|
|
9383
|
-
projectId: string;
|
|
9384
|
-
};
|
|
9385
|
-
extensionId: string;
|
|
9386
|
-
headers?: {
|
|
9387
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9388
|
-
"x-access-token"?: string | undefined;
|
|
9389
|
-
} | undefined;
|
|
9390
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<(({
|
|
9391
|
-
data: {
|
|
9392
|
-
consentedScopes: string[];
|
|
9393
|
-
customerId: string;
|
|
9394
|
-
};
|
|
9395
|
-
} | {
|
|
9396
|
-
data: {
|
|
9397
|
-
consentedScopes: string[];
|
|
9398
|
-
projectId: string;
|
|
9399
|
-
};
|
|
9400
|
-
}) & {
|
|
9401
|
-
pathParameters: {
|
|
9402
|
-
extensionId: string;
|
|
9403
|
-
};
|
|
9404
|
-
}) & {
|
|
9405
|
-
headers?: Partial<{
|
|
9406
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9407
|
-
}>;
|
|
9408
|
-
} & {
|
|
9409
|
-
headers: {
|
|
9410
|
-
"x-access-token"?: string | undefined;
|
|
9411
|
-
} & Partial<{
|
|
9412
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9413
|
-
}>;
|
|
9414
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9415
|
-
checkoutUrl?: string | undefined;
|
|
9416
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9417
|
-
[x: string]: unknown;
|
|
9418
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9419
|
-
[x: string]: unknown;
|
|
9420
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9421
|
-
[x: string]: unknown;
|
|
9422
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
|
|
9423
|
-
data: {
|
|
9424
|
-
consentedScopes: string[];
|
|
9425
|
-
customerId: string;
|
|
9426
|
-
};
|
|
9427
|
-
} | {
|
|
9428
|
-
data: {
|
|
9429
|
-
consentedScopes: string[];
|
|
9430
|
-
projectId: string;
|
|
9431
|
-
};
|
|
9432
|
-
}) & {
|
|
9433
|
-
pathParameters: {
|
|
9434
|
-
extensionId: string;
|
|
9435
|
-
};
|
|
9436
|
-
}) & {
|
|
9437
|
-
headers?: Partial<{
|
|
9438
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9439
|
-
}>;
|
|
9440
|
-
} & {
|
|
9441
|
-
headers: {
|
|
9442
|
-
"x-access-token"?: string | undefined;
|
|
9443
|
-
} & Partial<{
|
|
9444
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9445
|
-
}>;
|
|
9446
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9447
|
-
checkoutUrl?: string | undefined;
|
|
9448
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9449
|
-
[x: string]: unknown;
|
|
9450
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9451
|
-
[x: string]: unknown;
|
|
9452
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9453
|
-
[x: string]: unknown;
|
|
9454
|
-
}, 429, "application/json">>>;
|
|
9455
9492
|
/** Creates or Updates Pricing for an Extension. */
|
|
9456
9493
|
extensionUpdateExtensionPricing: (request: {
|
|
9457
9494
|
extensionId: string;
|
|
@@ -9713,6 +9750,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9713
9750
|
aggregate: "extensionInstance";
|
|
9714
9751
|
domain: "extension";
|
|
9715
9752
|
id: string;
|
|
9753
|
+
} | {
|
|
9754
|
+
aggregate: "container";
|
|
9755
|
+
domain: "container";
|
|
9756
|
+
id: string;
|
|
9716
9757
|
} | undefined;
|
|
9717
9758
|
sharedWith?: {
|
|
9718
9759
|
aggregate: "user";
|
|
@@ -10118,6 +10159,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10118
10159
|
aggregate: "extensionInstance";
|
|
10119
10160
|
domain: "extension";
|
|
10120
10161
|
id: string;
|
|
10162
|
+
} | {
|
|
10163
|
+
aggregate: "container";
|
|
10164
|
+
domain: "container";
|
|
10165
|
+
id: string;
|
|
10121
10166
|
} | undefined;
|
|
10122
10167
|
title?: string | undefined;
|
|
10123
10168
|
} | undefined;
|
|
@@ -15097,6 +15142,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15097
15142
|
[x: string]: unknown;
|
|
15098
15143
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15099
15144
|
[x: string]: unknown;
|
|
15145
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15146
|
+
[x: string]: unknown;
|
|
15100
15147
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15101
15148
|
[x: string]: unknown;
|
|
15102
15149
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
@@ -15134,6 +15181,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15134
15181
|
[x: string]: unknown;
|
|
15135
15182
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15136
15183
|
[x: string]: unknown;
|
|
15184
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15185
|
+
[x: string]: unknown;
|
|
15137
15186
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15138
15187
|
[x: string]: unknown;
|
|
15139
15188
|
}, 429, "application/json">>>;
|
|
@@ -17586,6 +17635,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17586
17635
|
forwardAddresses: string[];
|
|
17587
17636
|
id: string;
|
|
17588
17637
|
isArchived: boolean;
|
|
17638
|
+
isBackupInProgress: boolean;
|
|
17589
17639
|
isCatchAll: boolean;
|
|
17590
17640
|
mailbox?: {
|
|
17591
17641
|
name: string;
|
|
@@ -17645,6 +17695,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17645
17695
|
forwardAddresses: string[];
|
|
17646
17696
|
id: string;
|
|
17647
17697
|
isArchived: boolean;
|
|
17698
|
+
isBackupInProgress: boolean;
|
|
17648
17699
|
isCatchAll: boolean;
|
|
17649
17700
|
mailbox?: {
|
|
17650
17701
|
name: string;
|
|
@@ -17740,6 +17791,62 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17740
17791
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17741
17792
|
[x: string]: unknown;
|
|
17742
17793
|
}, 503, "application/json">>>;
|
|
17794
|
+
/** List backups belonging to a MailAddress. */
|
|
17795
|
+
listBackupsForMailAddress: (request: {
|
|
17796
|
+
mailAddressId: string;
|
|
17797
|
+
headers?: {
|
|
17798
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17799
|
+
"x-access-token"?: string | undefined;
|
|
17800
|
+
} | undefined;
|
|
17801
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17802
|
+
headers?: Partial<{
|
|
17803
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17804
|
+
}>;
|
|
17805
|
+
} & {
|
|
17806
|
+
pathParameters: {
|
|
17807
|
+
mailAddressId: string;
|
|
17808
|
+
};
|
|
17809
|
+
} & {
|
|
17810
|
+
headers: {
|
|
17811
|
+
"x-access-token"?: string | undefined;
|
|
17812
|
+
} & Partial<{
|
|
17813
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17814
|
+
}>;
|
|
17815
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17816
|
+
[x: string]: unknown;
|
|
17817
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17818
|
+
[x: string]: unknown;
|
|
17819
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17820
|
+
[x: string]: unknown;
|
|
17821
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17822
|
+
[x: string]: unknown;
|
|
17823
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17824
|
+
[x: string]: unknown;
|
|
17825
|
+
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17826
|
+
headers?: Partial<{
|
|
17827
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17828
|
+
}>;
|
|
17829
|
+
} & {
|
|
17830
|
+
pathParameters: {
|
|
17831
|
+
mailAddressId: string;
|
|
17832
|
+
};
|
|
17833
|
+
} & {
|
|
17834
|
+
headers: {
|
|
17835
|
+
"x-access-token"?: string | undefined;
|
|
17836
|
+
} & Partial<{
|
|
17837
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17838
|
+
}>;
|
|
17839
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17840
|
+
[x: string]: unknown;
|
|
17841
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17842
|
+
[x: string]: unknown;
|
|
17843
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17844
|
+
[x: string]: unknown;
|
|
17845
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17846
|
+
[x: string]: unknown;
|
|
17847
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17848
|
+
[x: string]: unknown;
|
|
17849
|
+
}, 500, "application/json">>>;
|
|
17743
17850
|
/** List mail settings of a Project. */
|
|
17744
17851
|
listProjectMailSettings: (request: {
|
|
17745
17852
|
projectId: string;
|
|
@@ -18039,6 +18146,57 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18039
18146
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18040
18147
|
[x: string]: unknown;
|
|
18041
18148
|
}, 429, "application/json">>>;
|
|
18149
|
+
/** Recover emails for a MailAddress from a backup. */
|
|
18150
|
+
recoverMailAddressEmails: (request: {
|
|
18151
|
+
mailAddressId: string;
|
|
18152
|
+
backupId: string;
|
|
18153
|
+
headers?: {
|
|
18154
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18155
|
+
"x-access-token"?: string | undefined;
|
|
18156
|
+
} | undefined;
|
|
18157
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18158
|
+
headers?: Partial<{
|
|
18159
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18160
|
+
}>;
|
|
18161
|
+
} & {
|
|
18162
|
+
pathParameters: {
|
|
18163
|
+
mailAddressId: string;
|
|
18164
|
+
backupId: string;
|
|
18165
|
+
};
|
|
18166
|
+
} & {
|
|
18167
|
+
headers: {
|
|
18168
|
+
"x-access-token"?: string | undefined;
|
|
18169
|
+
} & Partial<{
|
|
18170
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18171
|
+
}>;
|
|
18172
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18173
|
+
[x: string]: unknown;
|
|
18174
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18175
|
+
[x: string]: unknown;
|
|
18176
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18177
|
+
[x: string]: unknown;
|
|
18178
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18179
|
+
headers?: Partial<{
|
|
18180
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18181
|
+
}>;
|
|
18182
|
+
} & {
|
|
18183
|
+
pathParameters: {
|
|
18184
|
+
mailAddressId: string;
|
|
18185
|
+
backupId: string;
|
|
18186
|
+
};
|
|
18187
|
+
} & {
|
|
18188
|
+
headers: {
|
|
18189
|
+
"x-access-token"?: string | undefined;
|
|
18190
|
+
} & Partial<{
|
|
18191
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18192
|
+
}>;
|
|
18193
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18194
|
+
[x: string]: unknown;
|
|
18195
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18196
|
+
[x: string]: unknown;
|
|
18197
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18198
|
+
[x: string]: unknown;
|
|
18199
|
+
}, 429, "application/json">>>;
|
|
18042
18200
|
/** Update the description of a DeliveryBox. */
|
|
18043
18201
|
updateDeliveryBoxDescription: (request: {
|
|
18044
18202
|
data: {
|
|
@@ -18597,6 +18755,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18597
18755
|
queryParameters?: {
|
|
18598
18756
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18599
18757
|
status?: "unread" | "read" | undefined;
|
|
18758
|
+
severity?: ("success" | "info" | "warning" | "error")[] | undefined;
|
|
18600
18759
|
limit?: number | undefined;
|
|
18601
18760
|
skip?: number | undefined;
|
|
18602
18761
|
page?: number | undefined;
|
|
@@ -18608,6 +18767,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18608
18767
|
} & {
|
|
18609
18768
|
queryParameters: {
|
|
18610
18769
|
status?: "unread" | "read" | undefined;
|
|
18770
|
+
severity?: ("success" | "info" | "warning" | "error")[] | undefined;
|
|
18611
18771
|
limit?: number | undefined;
|
|
18612
18772
|
skip?: number | undefined;
|
|
18613
18773
|
page?: number | undefined;
|
|
@@ -18629,6 +18789,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18629
18789
|
} & {
|
|
18630
18790
|
queryParameters: {
|
|
18631
18791
|
status?: "unread" | "read" | undefined;
|
|
18792
|
+
severity?: ("success" | "info" | "warning" | "error")[] | undefined;
|
|
18632
18793
|
limit?: number | undefined;
|
|
18633
18794
|
skip?: number | undefined;
|
|
18634
18795
|
page?: number | undefined;
|
|
@@ -24210,6 +24371,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24210
24371
|
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
24211
24372
|
disabledAt?: string | undefined;
|
|
24212
24373
|
enabled: boolean;
|
|
24374
|
+
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[] | undefined;
|
|
24213
24375
|
id: string;
|
|
24214
24376
|
imageRefId?: string | undefined;
|
|
24215
24377
|
isReady: boolean;
|
|
@@ -24257,6 +24419,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24257
24419
|
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
24258
24420
|
disabledAt?: string | undefined;
|
|
24259
24421
|
enabled: boolean;
|
|
24422
|
+
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[] | undefined;
|
|
24260
24423
|
id: string;
|
|
24261
24424
|
imageRefId?: string | undefined;
|
|
24262
24425
|
isReady: boolean;
|
|
@@ -25036,6 +25199,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25036
25199
|
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
25037
25200
|
disabledAt?: string;
|
|
25038
25201
|
enabled: boolean;
|
|
25202
|
+
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
25039
25203
|
id: string;
|
|
25040
25204
|
imageRefId?: string;
|
|
25041
25205
|
isReady: boolean;
|
|
@@ -25086,6 +25250,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25086
25250
|
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
25087
25251
|
disabledAt?: string;
|
|
25088
25252
|
enabled: boolean;
|
|
25253
|
+
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
25089
25254
|
id: string;
|
|
25090
25255
|
imageRefId?: string;
|
|
25091
25256
|
isReady: boolean;
|