@mittwald/api-client 4.126.0 → 4.128.0

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.
@@ -687,6 +687,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
687
687
  } | undefined;
688
688
  queryParameters?: {
689
689
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
690
+ appIds?: string[] | undefined;
691
+ searchTerm?: string | undefined;
690
692
  limit?: number | undefined;
691
693
  skip?: number | undefined;
692
694
  page?: number | undefined;
@@ -697,6 +699,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
697
699
  }>;
698
700
  } & {
699
701
  queryParameters: {
702
+ appIds?: string[] | undefined;
703
+ searchTerm?: string | undefined;
700
704
  limit?: number | undefined;
701
705
  skip?: number | undefined;
702
706
  page?: number | undefined;
@@ -717,6 +721,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
717
721
  }>;
718
722
  } & {
719
723
  queryParameters: {
724
+ appIds?: string[] | undefined;
725
+ searchTerm?: string | undefined;
720
726
  limit?: number | undefined;
721
727
  skip?: number | undefined;
722
728
  page?: number | undefined;
@@ -741,6 +747,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
741
747
  } | undefined;
742
748
  queryParameters?: {
743
749
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
750
+ appIds?: string[] | undefined;
751
+ searchTerm?: string | undefined;
744
752
  limit?: number | undefined;
745
753
  skip?: number | undefined;
746
754
  page?: number | undefined;
@@ -755,6 +763,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
755
763
  };
756
764
  } & {
757
765
  queryParameters: {
766
+ appIds?: string[] | undefined;
767
+ searchTerm?: string | undefined;
758
768
  limit?: number | undefined;
759
769
  skip?: number | undefined;
760
770
  page?: number | undefined;
@@ -779,6 +789,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
779
789
  };
780
790
  } & {
781
791
  queryParameters: {
792
+ appIds?: string[] | undefined;
793
+ searchTerm?: string | undefined;
782
794
  limit?: number | undefined;
783
795
  skip?: number | undefined;
784
796
  page?: number | undefined;
@@ -2231,24 +2243,1688 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2231
2243
  "x-access-token"?: string | undefined;
2232
2244
  } | undefined;
2233
2245
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2234
- data: {
2235
- description?: string | undefined;
2236
- };
2237
- } & {
2238
- pathParameters: {
2239
- projectBackupId: string;
2240
- };
2241
- } & {
2246
+ data: {
2247
+ description?: string | undefined;
2248
+ };
2249
+ } & {
2250
+ pathParameters: {
2251
+ projectBackupId: string;
2252
+ };
2253
+ } & {
2254
+ headers?: Partial<{
2255
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2256
+ }>;
2257
+ } & {
2258
+ headers: {
2259
+ "x-access-token"?: string | undefined;
2260
+ } & Partial<{
2261
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2262
+ }>;
2263
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
2264
+ [x: string]: unknown;
2265
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2266
+ [x: string]: unknown;
2267
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2268
+ [x: string]: unknown;
2269
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2270
+ [x: string]: unknown;
2271
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2272
+ data: {
2273
+ description?: 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">>>;
2298
+ };
2299
+ /** The container API allows you to manage your stacks, containers, volumes and registries. */
2300
+ readonly container: {
2301
+ /** List Registries belonging to a Project. */
2302
+ listRegistries: (request: {
2303
+ projectId: string;
2304
+ headers?: {
2305
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2306
+ "x-access-token"?: string | undefined;
2307
+ } | undefined;
2308
+ queryParameters?: {
2309
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2310
+ hasCredentials?: boolean | undefined;
2311
+ limit?: number | undefined;
2312
+ skip?: number | undefined;
2313
+ } | undefined;
2314
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2315
+ headers?: Partial<{
2316
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2317
+ }>;
2318
+ } & {
2319
+ pathParameters: {
2320
+ projectId: string;
2321
+ };
2322
+ } & {
2323
+ queryParameters: {
2324
+ hasCredentials?: boolean | undefined;
2325
+ limit?: number | undefined;
2326
+ skip?: number | 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<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistry[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2337
+ [x: string]: unknown;
2338
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2339
+ [x: string]: unknown;
2340
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2341
+ [x: string]: unknown;
2342
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2343
+ [x: string]: unknown;
2344
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2345
+ headers?: Partial<{
2346
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2347
+ }>;
2348
+ } & {
2349
+ pathParameters: {
2350
+ projectId: string;
2351
+ };
2352
+ } & {
2353
+ queryParameters: {
2354
+ hasCredentials?: boolean | undefined;
2355
+ limit?: number | undefined;
2356
+ skip?: number | undefined;
2357
+ } & Partial<{
2358
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2359
+ }>;
2360
+ } & {
2361
+ headers: {
2362
+ "x-access-token"?: string | undefined;
2363
+ } & Partial<{
2364
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2365
+ }>;
2366
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistry[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2367
+ [x: string]: unknown;
2368
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2369
+ [x: string]: unknown;
2370
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2371
+ [x: string]: unknown;
2372
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2373
+ [x: string]: unknown;
2374
+ }, 500, "application/json">>>;
2375
+ /** Create a Registry. */
2376
+ createRegistry: (request: {
2377
+ data: {
2378
+ description: string;
2379
+ uri: string;
2380
+ credentials?: {
2381
+ password: string;
2382
+ username: string;
2383
+ } | undefined;
2384
+ };
2385
+ projectId: string;
2386
+ headers?: {
2387
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2388
+ "x-access-token"?: string | undefined;
2389
+ } | undefined;
2390
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2391
+ data: {
2392
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | undefined;
2393
+ description: string;
2394
+ uri: string;
2395
+ };
2396
+ } & {
2397
+ pathParameters: {
2398
+ projectId: string;
2399
+ };
2400
+ } & {
2401
+ headers?: Partial<{
2402
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2403
+ }>;
2404
+ } & {
2405
+ headers: {
2406
+ "x-access-token"?: string | undefined;
2407
+ } & Partial<{
2408
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2409
+ }>;
2410
+ }, import("@mittwald/api-client-commons").Response<{
2411
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistryCredentials | undefined;
2412
+ description: string;
2413
+ id: string;
2414
+ projectId: string;
2415
+ uri: string;
2416
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
2417
+ [x: string]: unknown;
2418
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2419
+ [x: string]: unknown;
2420
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2421
+ [x: string]: unknown;
2422
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2423
+ [x: string]: unknown;
2424
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
2425
+ [x: string]: unknown;
2426
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2427
+ [x: string]: unknown;
2428
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2429
+ [x: string]: unknown;
2430
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2431
+ data: {
2432
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | undefined;
2433
+ description: string;
2434
+ uri: string;
2435
+ };
2436
+ } & {
2437
+ pathParameters: {
2438
+ projectId: string;
2439
+ };
2440
+ } & {
2441
+ headers?: Partial<{
2442
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2443
+ }>;
2444
+ } & {
2445
+ headers: {
2446
+ "x-access-token"?: string | undefined;
2447
+ } & Partial<{
2448
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2449
+ }>;
2450
+ }, import("@mittwald/api-client-commons").Response<{
2451
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistryCredentials | undefined;
2452
+ description: string;
2453
+ id: string;
2454
+ projectId: string;
2455
+ uri: string;
2456
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
2457
+ [x: string]: unknown;
2458
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2459
+ [x: string]: unknown;
2460
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2461
+ [x: string]: unknown;
2462
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2463
+ [x: string]: unknown;
2464
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
2465
+ [x: string]: unknown;
2466
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2467
+ [x: string]: unknown;
2468
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2469
+ [x: string]: unknown;
2470
+ }, 500, "application/json">>>;
2471
+ /** Get a Stack. */
2472
+ getStack: (request: {
2473
+ stackId: string;
2474
+ headers?: {
2475
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2476
+ "x-access-token"?: string | undefined;
2477
+ } | undefined;
2478
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2479
+ headers?: Partial<{
2480
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2481
+ }>;
2482
+ } & {
2483
+ pathParameters: {
2484
+ stackId: string;
2485
+ };
2486
+ } & {
2487
+ headers: {
2488
+ "x-access-token"?: string | undefined;
2489
+ } & Partial<{
2490
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2491
+ }>;
2492
+ }, import("@mittwald/api-client-commons").Response<{
2493
+ description: string;
2494
+ disabled: boolean;
2495
+ id: string;
2496
+ prefix: string;
2497
+ projectId: string;
2498
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
2499
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
2500
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2501
+ [x: string]: unknown;
2502
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2503
+ [x: string]: unknown;
2504
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2505
+ [x: string]: unknown;
2506
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2507
+ [x: string]: unknown;
2508
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2509
+ headers?: Partial<{
2510
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2511
+ }>;
2512
+ } & {
2513
+ pathParameters: {
2514
+ stackId: string;
2515
+ };
2516
+ } & {
2517
+ headers: {
2518
+ "x-access-token"?: string | undefined;
2519
+ } & Partial<{
2520
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2521
+ }>;
2522
+ }, import("@mittwald/api-client-commons").Response<{
2523
+ description: string;
2524
+ disabled: boolean;
2525
+ id: string;
2526
+ prefix: string;
2527
+ projectId: string;
2528
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
2529
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
2530
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2531
+ [x: string]: unknown;
2532
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2533
+ [x: string]: unknown;
2534
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2535
+ [x: string]: unknown;
2536
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2537
+ [x: string]: unknown;
2538
+ }, 500, "application/json">>>;
2539
+ /** Declaratively create, update or delete Services or Volumes belonging to a Stack. */
2540
+ declareStack: (request: {
2541
+ stackId: string;
2542
+ data?: {
2543
+ services?: {
2544
+ [x: string]: {
2545
+ description: string;
2546
+ image: string;
2547
+ ports: string[];
2548
+ command?: string[] | undefined;
2549
+ entrypoint?: string[] | undefined;
2550
+ envs?: {
2551
+ [x: string]: string;
2552
+ } | undefined;
2553
+ volumes?: string[] | undefined;
2554
+ };
2555
+ } | undefined;
2556
+ volumes?: {
2557
+ [x: string]: {
2558
+ name: string;
2559
+ };
2560
+ } | undefined;
2561
+ } | undefined;
2562
+ headers?: {
2563
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2564
+ "x-access-token"?: string | undefined;
2565
+ } | undefined;
2566
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2567
+ data: {
2568
+ services?: {
2569
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceDeclareRequest;
2570
+ } | undefined;
2571
+ volumes?: {
2572
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeDeclareRequest;
2573
+ } | undefined;
2574
+ };
2575
+ } & {
2576
+ pathParameters: {
2577
+ stackId: string;
2578
+ };
2579
+ } & {
2580
+ headers?: Partial<{
2581
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2582
+ }>;
2583
+ } & {
2584
+ headers: {
2585
+ "x-access-token"?: string | undefined;
2586
+ } & Partial<{
2587
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2588
+ }>;
2589
+ }, import("@mittwald/api-client-commons").Response<{
2590
+ description: string;
2591
+ disabled: boolean;
2592
+ id: string;
2593
+ prefix: string;
2594
+ projectId: string;
2595
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
2596
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
2597
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2598
+ [x: string]: unknown;
2599
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2600
+ [x: string]: unknown;
2601
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2602
+ [x: string]: unknown;
2603
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2604
+ [x: string]: unknown;
2605
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2606
+ [x: string]: unknown;
2607
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2608
+ data: {
2609
+ services?: {
2610
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceDeclareRequest;
2611
+ } | undefined;
2612
+ volumes?: {
2613
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeDeclareRequest;
2614
+ } | undefined;
2615
+ };
2616
+ } & {
2617
+ pathParameters: {
2618
+ stackId: string;
2619
+ };
2620
+ } & {
2621
+ headers?: Partial<{
2622
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2623
+ }>;
2624
+ } & {
2625
+ headers: {
2626
+ "x-access-token"?: string | undefined;
2627
+ } & Partial<{
2628
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2629
+ }>;
2630
+ }, import("@mittwald/api-client-commons").Response<{
2631
+ description: string;
2632
+ disabled: boolean;
2633
+ id: string;
2634
+ prefix: string;
2635
+ projectId: string;
2636
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
2637
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
2638
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2639
+ [x: string]: unknown;
2640
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2641
+ [x: string]: unknown;
2642
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2643
+ [x: string]: unknown;
2644
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2645
+ [x: string]: unknown;
2646
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2647
+ [x: string]: unknown;
2648
+ }, 500, "application/json">>>;
2649
+ /** Create, update or delete Services or Volumes belonging to a Stack. */
2650
+ updateStack: (request: {
2651
+ stackId: string;
2652
+ data?: {
2653
+ services?: {
2654
+ [x: string]: {
2655
+ command?: string[] | undefined;
2656
+ description?: string | undefined;
2657
+ entrypoint?: string[] | undefined;
2658
+ envs?: {
2659
+ [x: string]: string;
2660
+ } | undefined;
2661
+ image?: string | undefined;
2662
+ ports?: string[] | undefined;
2663
+ volumes?: string[] | undefined;
2664
+ };
2665
+ } | undefined;
2666
+ volumes?: {
2667
+ [x: string]: {
2668
+ name?: string | undefined;
2669
+ };
2670
+ } | undefined;
2671
+ } | undefined;
2672
+ headers?: {
2673
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2674
+ "x-access-token"?: string | undefined;
2675
+ } | undefined;
2676
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2677
+ data: {
2678
+ services?: {
2679
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceRequest;
2680
+ } | undefined;
2681
+ volumes?: {
2682
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeRequest;
2683
+ } | undefined;
2684
+ };
2685
+ } & {
2686
+ pathParameters: {
2687
+ stackId: string;
2688
+ };
2689
+ } & {
2690
+ headers?: Partial<{
2691
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2692
+ }>;
2693
+ } & {
2694
+ headers: {
2695
+ "x-access-token"?: string | undefined;
2696
+ } & Partial<{
2697
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2698
+ }>;
2699
+ }, import("@mittwald/api-client-commons").Response<{
2700
+ description: string;
2701
+ disabled: boolean;
2702
+ id: string;
2703
+ prefix: string;
2704
+ projectId: string;
2705
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
2706
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
2707
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2708
+ [x: string]: unknown;
2709
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2710
+ [x: string]: unknown;
2711
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2712
+ [x: string]: unknown;
2713
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2714
+ [x: string]: unknown;
2715
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2716
+ [x: string]: unknown;
2717
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2718
+ data: {
2719
+ services?: {
2720
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceRequest;
2721
+ } | undefined;
2722
+ volumes?: {
2723
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeRequest;
2724
+ } | undefined;
2725
+ };
2726
+ } & {
2727
+ pathParameters: {
2728
+ stackId: string;
2729
+ };
2730
+ } & {
2731
+ headers?: Partial<{
2732
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2733
+ }>;
2734
+ } & {
2735
+ headers: {
2736
+ "x-access-token"?: string | undefined;
2737
+ } & Partial<{
2738
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2739
+ }>;
2740
+ }, import("@mittwald/api-client-commons").Response<{
2741
+ description: string;
2742
+ disabled: boolean;
2743
+ id: string;
2744
+ prefix: string;
2745
+ projectId: string;
2746
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
2747
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
2748
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2749
+ [x: string]: unknown;
2750
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2751
+ [x: string]: unknown;
2752
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2753
+ [x: string]: unknown;
2754
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2755
+ [x: string]: unknown;
2756
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2757
+ [x: string]: unknown;
2758
+ }, 500, "application/json">>>;
2759
+ /** Get a Registry. */
2760
+ getRegistry: (request: {
2761
+ registryId: string;
2762
+ headers?: {
2763
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2764
+ "x-access-token"?: string | undefined;
2765
+ } | undefined;
2766
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2767
+ headers?: Partial<{
2768
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2769
+ }>;
2770
+ } & {
2771
+ pathParameters: {
2772
+ registryId: string;
2773
+ };
2774
+ } & {
2775
+ headers: {
2776
+ "x-access-token"?: string | undefined;
2777
+ } & Partial<{
2778
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2779
+ }>;
2780
+ }, import("@mittwald/api-client-commons").Response<{
2781
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistryCredentials | undefined;
2782
+ description: string;
2783
+ id: string;
2784
+ projectId: string;
2785
+ uri: string;
2786
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2787
+ [x: string]: unknown;
2788
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2789
+ [x: string]: unknown;
2790
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2791
+ [x: string]: unknown;
2792
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2793
+ [x: string]: unknown;
2794
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2795
+ headers?: Partial<{
2796
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2797
+ }>;
2798
+ } & {
2799
+ pathParameters: {
2800
+ registryId: string;
2801
+ };
2802
+ } & {
2803
+ headers: {
2804
+ "x-access-token"?: string | undefined;
2805
+ } & Partial<{
2806
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2807
+ }>;
2808
+ }, import("@mittwald/api-client-commons").Response<{
2809
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistryCredentials | undefined;
2810
+ description: string;
2811
+ id: string;
2812
+ projectId: string;
2813
+ uri: string;
2814
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2815
+ [x: string]: unknown;
2816
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2817
+ [x: string]: unknown;
2818
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2819
+ [x: string]: unknown;
2820
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2821
+ [x: string]: unknown;
2822
+ }, 500, "application/json">>>;
2823
+ /** Delete a Registry. */
2824
+ deleteRegistry: (request: {
2825
+ registryId: string;
2826
+ headers?: {
2827
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2828
+ "x-access-token"?: string | undefined;
2829
+ } | undefined;
2830
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2831
+ headers?: Partial<{
2832
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2833
+ }>;
2834
+ } & {
2835
+ pathParameters: {
2836
+ registryId: string;
2837
+ };
2838
+ } & {
2839
+ headers: {
2840
+ "x-access-token"?: string | undefined;
2841
+ } & Partial<{
2842
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2843
+ }>;
2844
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
2845
+ [x: string]: unknown;
2846
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2847
+ [x: string]: unknown;
2848
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2849
+ [x: string]: unknown;
2850
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2851
+ [x: string]: unknown;
2852
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2853
+ [x: string]: unknown;
2854
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2855
+ headers?: Partial<{
2856
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2857
+ }>;
2858
+ } & {
2859
+ pathParameters: {
2860
+ registryId: string;
2861
+ };
2862
+ } & {
2863
+ headers: {
2864
+ "x-access-token"?: string | undefined;
2865
+ } & Partial<{
2866
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2867
+ }>;
2868
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
2869
+ [x: string]: unknown;
2870
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2871
+ [x: string]: unknown;
2872
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2873
+ [x: string]: unknown;
2874
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2875
+ [x: string]: unknown;
2876
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2877
+ [x: string]: unknown;
2878
+ }, 500, "application/json">>>;
2879
+ /** Update a Registry. */
2880
+ updateRegistry: (request: {
2881
+ registryId: string;
2882
+ data?: {
2883
+ credentials?: {
2884
+ password: string;
2885
+ username: string;
2886
+ } | undefined;
2887
+ description?: string | undefined;
2888
+ uri?: string | undefined;
2889
+ } | undefined;
2890
+ headers?: {
2891
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2892
+ "x-access-token"?: string | undefined;
2893
+ } | undefined;
2894
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2895
+ data: {
2896
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | undefined;
2897
+ description?: string | undefined;
2898
+ uri?: string | undefined;
2899
+ };
2900
+ } & {
2901
+ pathParameters: {
2902
+ registryId: string;
2903
+ };
2904
+ } & {
2905
+ headers?: Partial<{
2906
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2907
+ }>;
2908
+ } & {
2909
+ headers: {
2910
+ "x-access-token"?: string | undefined;
2911
+ } & Partial<{
2912
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2913
+ }>;
2914
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
2915
+ [x: string]: unknown;
2916
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2917
+ [x: string]: unknown;
2918
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2919
+ [x: string]: unknown;
2920
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
2921
+ [x: string]: unknown;
2922
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2923
+ [x: string]: unknown;
2924
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2925
+ [x: string]: unknown;
2926
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2927
+ data: {
2928
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | undefined;
2929
+ description?: string | undefined;
2930
+ uri?: string | undefined;
2931
+ };
2932
+ } & {
2933
+ pathParameters: {
2934
+ registryId: string;
2935
+ };
2936
+ } & {
2937
+ headers?: Partial<{
2938
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2939
+ }>;
2940
+ } & {
2941
+ headers: {
2942
+ "x-access-token"?: string | undefined;
2943
+ } & Partial<{
2944
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2945
+ }>;
2946
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
2947
+ [x: string]: unknown;
2948
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2949
+ [x: string]: unknown;
2950
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2951
+ [x: string]: unknown;
2952
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
2953
+ [x: string]: unknown;
2954
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2955
+ [x: string]: unknown;
2956
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2957
+ [x: string]: unknown;
2958
+ }, 500, "application/json">>>;
2959
+ /** Get a Volume belonging to a Stack. */
2960
+ getVolume: (request: {
2961
+ stackId: string;
2962
+ volumeId: string;
2963
+ headers?: {
2964
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2965
+ "x-access-token"?: string | undefined;
2966
+ } | undefined;
2967
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2968
+ headers?: Partial<{
2969
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2970
+ }>;
2971
+ } & {
2972
+ pathParameters: {
2973
+ stackId: string;
2974
+ volumeId: string;
2975
+ };
2976
+ } & {
2977
+ headers: {
2978
+ "x-access-token"?: string | undefined;
2979
+ } & Partial<{
2980
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2981
+ }>;
2982
+ }, import("@mittwald/api-client-commons").Response<{
2983
+ id: string;
2984
+ name: string;
2985
+ orphaned: boolean;
2986
+ stackId: string;
2987
+ storageUsageInBytes: number;
2988
+ storageUsageInBytesSetAt: string;
2989
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2990
+ [x: string]: unknown;
2991
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2992
+ [x: string]: unknown;
2993
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2994
+ [x: string]: unknown;
2995
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2996
+ [x: string]: unknown;
2997
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2998
+ [x: string]: unknown;
2999
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3000
+ [x: string]: unknown;
3001
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3002
+ headers?: Partial<{
3003
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3004
+ }>;
3005
+ } & {
3006
+ pathParameters: {
3007
+ stackId: string;
3008
+ volumeId: string;
3009
+ };
3010
+ } & {
3011
+ headers: {
3012
+ "x-access-token"?: string | undefined;
3013
+ } & Partial<{
3014
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3015
+ }>;
3016
+ }, import("@mittwald/api-client-commons").Response<{
3017
+ id: string;
3018
+ name: string;
3019
+ orphaned: boolean;
3020
+ stackId: string;
3021
+ storageUsageInBytes: number;
3022
+ storageUsageInBytesSetAt: string;
3023
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3024
+ [x: string]: unknown;
3025
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3026
+ [x: string]: unknown;
3027
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3028
+ [x: string]: unknown;
3029
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3030
+ [x: string]: unknown;
3031
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3032
+ [x: string]: unknown;
3033
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3034
+ [x: string]: unknown;
3035
+ }, 500, "application/json">>>;
3036
+ /** Delete a Volume belonging to a Stack. */
3037
+ deleteVolume: (request: {
3038
+ stackId: string;
3039
+ volumeId: string;
3040
+ headers?: {
3041
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3042
+ "x-access-token"?: string | undefined;
3043
+ } | undefined;
3044
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3045
+ headers?: Partial<{
3046
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3047
+ }>;
3048
+ } & {
3049
+ pathParameters: {
3050
+ stackId: string;
3051
+ volumeId: string;
3052
+ };
3053
+ } & {
3054
+ headers: {
3055
+ "x-access-token"?: string | undefined;
3056
+ } & Partial<{
3057
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3058
+ }>;
3059
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3060
+ [x: string]: unknown;
3061
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3062
+ [x: string]: unknown;
3063
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3064
+ [x: string]: unknown;
3065
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3066
+ [x: string]: unknown;
3067
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3068
+ [x: string]: unknown;
3069
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3070
+ headers?: Partial<{
3071
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3072
+ }>;
3073
+ } & {
3074
+ pathParameters: {
3075
+ stackId: string;
3076
+ volumeId: string;
3077
+ };
3078
+ } & {
3079
+ headers: {
3080
+ "x-access-token"?: string | undefined;
3081
+ } & Partial<{
3082
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3083
+ }>;
3084
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3085
+ [x: string]: unknown;
3086
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3087
+ [x: string]: unknown;
3088
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3089
+ [x: string]: unknown;
3090
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3091
+ [x: string]: unknown;
3092
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3093
+ [x: string]: unknown;
3094
+ }, 500, "application/json">>>;
3095
+ /** Get a ContainerImageConfig. */
3096
+ getContainerImageConfig: (request: {
3097
+ queryParameters: {
3098
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3099
+ imageReference: string;
3100
+ useCredentialsForProjectId?: string | undefined;
3101
+ useCredentialsForRegistryId?: string | undefined;
3102
+ generateAiData?: boolean | undefined;
3103
+ };
3104
+ headers?: {
3105
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3106
+ "x-access-token"?: string | undefined;
3107
+ } | undefined;
3108
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3109
+ headers?: Partial<{
3110
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3111
+ }>;
3112
+ } & {
3113
+ queryParameters: {
3114
+ imageReference: string;
3115
+ useCredentialsForProjectId?: string | undefined;
3116
+ useCredentialsForRegistryId?: string | undefined;
3117
+ generateAiData?: boolean | undefined;
3118
+ } & Partial<{
3119
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3120
+ }>;
3121
+ } & {
3122
+ headers: {
3123
+ "x-access-token"?: string | undefined;
3124
+ } & Partial<{
3125
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3126
+ }>;
3127
+ }, import("@mittwald/api-client-commons").Response<{
3128
+ command?: string[] | undefined;
3129
+ entrypoint?: string[] | undefined;
3130
+ env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
3131
+ exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
3132
+ hasAiGeneratedData: boolean;
3133
+ isAiAvailable: boolean;
3134
+ isUserRoot: boolean;
3135
+ overwritingUser?: number | undefined;
3136
+ user: string;
3137
+ userId: number;
3138
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigVolume[] | undefined;
3139
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3140
+ [x: string]: unknown;
3141
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3142
+ [x: string]: unknown;
3143
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3144
+ [x: string]: unknown;
3145
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3146
+ [x: string]: unknown;
3147
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3148
+ headers?: Partial<{
3149
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3150
+ }>;
3151
+ } & {
3152
+ queryParameters: {
3153
+ imageReference: string;
3154
+ useCredentialsForProjectId?: string | undefined;
3155
+ useCredentialsForRegistryId?: string | undefined;
3156
+ generateAiData?: boolean | undefined;
3157
+ } & Partial<{
3158
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3159
+ }>;
3160
+ } & {
3161
+ headers: {
3162
+ "x-access-token"?: string | undefined;
3163
+ } & Partial<{
3164
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3165
+ }>;
3166
+ }, import("@mittwald/api-client-commons").Response<{
3167
+ command?: string[] | undefined;
3168
+ entrypoint?: string[] | undefined;
3169
+ env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
3170
+ exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
3171
+ hasAiGeneratedData: boolean;
3172
+ isAiAvailable: boolean;
3173
+ isUserRoot: boolean;
3174
+ overwritingUser?: number | undefined;
3175
+ user: string;
3176
+ userId: number;
3177
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigVolume[] | undefined;
3178
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3179
+ [x: string]: unknown;
3180
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3181
+ [x: string]: unknown;
3182
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3183
+ [x: string]: unknown;
3184
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3185
+ [x: string]: unknown;
3186
+ }, 500, "application/json">>>;
3187
+ /** Get logs belonging to a Service. */
3188
+ getServiceLogs: (request: {
3189
+ stackId: string;
3190
+ serviceId: string;
3191
+ headers?: {
3192
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3193
+ "x-access-token"?: string | undefined;
3194
+ } | undefined;
3195
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3196
+ headers?: Partial<{
3197
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3198
+ }>;
3199
+ } & {
3200
+ pathParameters: {
3201
+ stackId: string;
3202
+ serviceId: string;
3203
+ };
3204
+ } & {
3205
+ headers: {
3206
+ "x-access-token"?: string | undefined;
3207
+ } & Partial<{
3208
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3209
+ }>;
3210
+ }, import("@mittwald/api-client-commons").Response<string, 200, "text/plain"> | import("@mittwald/api-client-commons").Response<{
3211
+ [x: string]: unknown;
3212
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3213
+ [x: string]: unknown;
3214
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3215
+ [x: string]: unknown;
3216
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3217
+ [x: string]: unknown;
3218
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
3219
+ [x: string]: unknown;
3220
+ }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3221
+ headers?: Partial<{
3222
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3223
+ }>;
3224
+ } & {
3225
+ pathParameters: {
3226
+ stackId: string;
3227
+ serviceId: string;
3228
+ };
3229
+ } & {
3230
+ headers: {
3231
+ "x-access-token"?: string | undefined;
3232
+ } & Partial<{
3233
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3234
+ }>;
3235
+ }, import("@mittwald/api-client-commons").Response<string, 200, "text/plain"> | import("@mittwald/api-client-commons").Response<{
3236
+ [x: string]: unknown;
3237
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3238
+ [x: string]: unknown;
3239
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3240
+ [x: string]: unknown;
3241
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3242
+ [x: string]: unknown;
3243
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
3244
+ [x: string]: unknown;
3245
+ }, 503, "application/json">>>;
3246
+ /** Get a Service belonging to a Stack. */
3247
+ getService: (request: {
3248
+ stackId: string;
3249
+ serviceId: string;
3250
+ headers?: {
3251
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3252
+ "x-access-token"?: string | undefined;
3253
+ } | undefined;
3254
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3255
+ headers?: Partial<{
3256
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3257
+ }>;
3258
+ } & {
3259
+ pathParameters: {
3260
+ stackId: string;
3261
+ serviceId: string;
3262
+ };
3263
+ } & {
3264
+ headers: {
3265
+ "x-access-token"?: string | undefined;
3266
+ } & Partial<{
3267
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3268
+ }>;
3269
+ }, import("@mittwald/api-client-commons").Response<{
3270
+ deployedState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
3271
+ description: string;
3272
+ id: string;
3273
+ message?: string | undefined;
3274
+ pendingState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
3275
+ projectId: string;
3276
+ serviceName: string;
3277
+ shortId: string;
3278
+ stackId: string;
3279
+ status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
3280
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3281
+ [x: string]: unknown;
3282
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3283
+ [x: string]: unknown;
3284
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3285
+ [x: string]: unknown;
3286
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3287
+ [x: string]: unknown;
3288
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3289
+ [x: string]: unknown;
3290
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3291
+ [x: string]: unknown;
3292
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3293
+ headers?: Partial<{
3294
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3295
+ }>;
3296
+ } & {
3297
+ pathParameters: {
3298
+ stackId: string;
3299
+ serviceId: string;
3300
+ };
3301
+ } & {
3302
+ headers: {
3303
+ "x-access-token"?: string | undefined;
3304
+ } & Partial<{
3305
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3306
+ }>;
3307
+ }, import("@mittwald/api-client-commons").Response<{
3308
+ deployedState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
3309
+ description: string;
3310
+ id: string;
3311
+ message?: string | undefined;
3312
+ pendingState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
3313
+ projectId: string;
3314
+ serviceName: string;
3315
+ shortId: string;
3316
+ stackId: string;
3317
+ status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
3318
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3319
+ [x: string]: unknown;
3320
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3321
+ [x: string]: unknown;
3322
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3323
+ [x: string]: unknown;
3324
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3325
+ [x: string]: unknown;
3326
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3327
+ [x: string]: unknown;
3328
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3329
+ [x: string]: unknown;
3330
+ }, 500, "application/json">>>;
3331
+ /** List Services belonging to a Project. */
3332
+ listServices: (request: {
3333
+ projectId: string;
3334
+ headers?: {
3335
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3336
+ "x-access-token"?: string | undefined;
3337
+ } | undefined;
3338
+ queryParameters?: {
3339
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3340
+ stackId?: string | undefined;
3341
+ } | undefined;
3342
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3343
+ headers?: Partial<{
3344
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3345
+ }>;
3346
+ } & {
3347
+ pathParameters: {
3348
+ projectId: string;
3349
+ };
3350
+ } & {
3351
+ queryParameters: {
3352
+ stackId?: string | undefined;
3353
+ } & Partial<{
3354
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3355
+ }>;
3356
+ } & {
3357
+ headers: {
3358
+ "x-access-token"?: string | undefined;
3359
+ } & Partial<{
3360
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3361
+ }>;
3362
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3363
+ [x: string]: unknown;
3364
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3365
+ [x: string]: unknown;
3366
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3367
+ [x: string]: unknown;
3368
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3369
+ [x: string]: unknown;
3370
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3371
+ [x: string]: unknown;
3372
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3373
+ headers?: Partial<{
3374
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3375
+ }>;
3376
+ } & {
3377
+ pathParameters: {
3378
+ projectId: string;
3379
+ };
3380
+ } & {
3381
+ queryParameters: {
3382
+ stackId?: string | undefined;
3383
+ } & Partial<{
3384
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3385
+ }>;
3386
+ } & {
3387
+ headers: {
3388
+ "x-access-token"?: string | undefined;
3389
+ } & Partial<{
3390
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3391
+ }>;
3392
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3393
+ [x: string]: unknown;
3394
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3395
+ [x: string]: unknown;
3396
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3397
+ [x: string]: unknown;
3398
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3399
+ [x: string]: unknown;
3400
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3401
+ [x: string]: unknown;
3402
+ }, 500, "application/json">>>;
3403
+ /** List Stacks belonging to a Project. */
3404
+ listStacks: (request: {
3405
+ projectId: string;
3406
+ headers?: {
3407
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3408
+ "x-access-token"?: string | undefined;
3409
+ } | undefined;
3410
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3411
+ headers?: Partial<{
3412
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3413
+ }>;
3414
+ } & {
3415
+ pathParameters: {
3416
+ projectId: string;
3417
+ };
3418
+ } & {
3419
+ headers: {
3420
+ "x-access-token"?: string | undefined;
3421
+ } & Partial<{
3422
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3423
+ }>;
3424
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3425
+ [x: string]: unknown;
3426
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3427
+ [x: string]: unknown;
3428
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3429
+ [x: string]: unknown;
3430
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3431
+ [x: string]: unknown;
3432
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3433
+ headers?: Partial<{
3434
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3435
+ }>;
3436
+ } & {
3437
+ pathParameters: {
3438
+ projectId: string;
3439
+ };
3440
+ } & {
3441
+ headers: {
3442
+ "x-access-token"?: string | undefined;
3443
+ } & Partial<{
3444
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3445
+ }>;
3446
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3447
+ [x: string]: unknown;
3448
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3449
+ [x: string]: unknown;
3450
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3451
+ [x: string]: unknown;
3452
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3453
+ [x: string]: unknown;
3454
+ }, 500, "application/json">>>;
3455
+ /** List Volumes belonging to a Project. */
3456
+ listVolumes: (request: {
3457
+ projectId: string;
3458
+ headers?: {
3459
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3460
+ "x-access-token"?: string | undefined;
3461
+ } | undefined;
3462
+ queryParameters?: {
3463
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3464
+ stackId?: string | undefined;
3465
+ } | undefined;
3466
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3467
+ headers?: Partial<{
3468
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3469
+ }>;
3470
+ } & {
3471
+ pathParameters: {
3472
+ projectId: string;
3473
+ };
3474
+ } & {
3475
+ queryParameters: {
3476
+ stackId?: string | undefined;
3477
+ } & Partial<{
3478
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3479
+ }>;
3480
+ } & {
3481
+ headers: {
3482
+ "x-access-token"?: string | undefined;
3483
+ } & Partial<{
3484
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3485
+ }>;
3486
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3487
+ [x: string]: unknown;
3488
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3489
+ [x: string]: unknown;
3490
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3491
+ [x: string]: unknown;
3492
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3493
+ [x: string]: unknown;
3494
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3495
+ headers?: Partial<{
3496
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3497
+ }>;
3498
+ } & {
3499
+ pathParameters: {
3500
+ projectId: string;
3501
+ };
3502
+ } & {
3503
+ queryParameters: {
3504
+ stackId?: string | undefined;
3505
+ } & Partial<{
3506
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3507
+ }>;
3508
+ } & {
3509
+ headers: {
3510
+ "x-access-token"?: string | undefined;
3511
+ } & Partial<{
3512
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3513
+ }>;
3514
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3515
+ [x: string]: unknown;
3516
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3517
+ [x: string]: unknown;
3518
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3519
+ [x: string]: unknown;
3520
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3521
+ [x: string]: unknown;
3522
+ }, 500, "application/json">>>;
3523
+ /** Pulls the latest version of the Service's image and recreates the Service. */
3524
+ pullImageForService: (request: {
3525
+ stackId: string;
3526
+ serviceId: string;
3527
+ headers?: {
3528
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3529
+ "x-access-token"?: string | undefined;
3530
+ } | undefined;
3531
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3532
+ headers?: Partial<{
3533
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3534
+ }>;
3535
+ } & {
3536
+ pathParameters: {
3537
+ stackId: string;
3538
+ serviceId: string;
3539
+ };
3540
+ } & {
3541
+ headers: {
3542
+ "x-access-token"?: string | undefined;
3543
+ } & Partial<{
3544
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3545
+ }>;
3546
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3547
+ [x: string]: unknown;
3548
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3549
+ [x: string]: unknown;
3550
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3551
+ [x: string]: unknown;
3552
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3553
+ [x: string]: unknown;
3554
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3555
+ [x: string]: unknown;
3556
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3557
+ [x: string]: unknown;
3558
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3559
+ headers?: Partial<{
3560
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3561
+ }>;
3562
+ } & {
3563
+ pathParameters: {
3564
+ stackId: string;
3565
+ serviceId: string;
3566
+ };
3567
+ } & {
3568
+ headers: {
3569
+ "x-access-token"?: string | undefined;
3570
+ } & Partial<{
3571
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3572
+ }>;
3573
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3574
+ [x: string]: unknown;
3575
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3576
+ [x: string]: unknown;
3577
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3578
+ [x: string]: unknown;
3579
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3580
+ [x: string]: unknown;
3581
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3582
+ [x: string]: unknown;
3583
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3584
+ [x: string]: unknown;
3585
+ }, 500, "application/json">>>;
3586
+ /** Recreate a Service. */
3587
+ recreateService: (request: {
3588
+ stackId: string;
3589
+ serviceId: string;
3590
+ headers?: {
3591
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3592
+ "x-access-token"?: string | undefined;
3593
+ } | undefined;
3594
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3595
+ headers?: Partial<{
3596
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3597
+ }>;
3598
+ } & {
3599
+ pathParameters: {
3600
+ stackId: string;
3601
+ serviceId: string;
3602
+ };
3603
+ } & {
3604
+ headers: {
3605
+ "x-access-token"?: string | undefined;
3606
+ } & Partial<{
3607
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3608
+ }>;
3609
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3610
+ [x: string]: unknown;
3611
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3612
+ [x: string]: unknown;
3613
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3614
+ [x: string]: unknown;
3615
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3616
+ [x: string]: unknown;
3617
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3618
+ [x: string]: unknown;
3619
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3620
+ [x: string]: unknown;
3621
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3622
+ headers?: Partial<{
3623
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3624
+ }>;
3625
+ } & {
3626
+ pathParameters: {
3627
+ stackId: string;
3628
+ serviceId: string;
3629
+ };
3630
+ } & {
3631
+ headers: {
3632
+ "x-access-token"?: string | undefined;
3633
+ } & Partial<{
3634
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3635
+ }>;
3636
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3637
+ [x: string]: unknown;
3638
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3639
+ [x: string]: unknown;
3640
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3641
+ [x: string]: unknown;
3642
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3643
+ [x: string]: unknown;
3644
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3645
+ [x: string]: unknown;
3646
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3647
+ [x: string]: unknown;
3648
+ }, 500, "application/json">>>;
3649
+ /** Restart a started Service. */
3650
+ restartService: (request: {
3651
+ stackId: string;
3652
+ serviceId: string;
3653
+ headers?: {
3654
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3655
+ "x-access-token"?: string | undefined;
3656
+ } | undefined;
3657
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3658
+ headers?: Partial<{
3659
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3660
+ }>;
3661
+ } & {
3662
+ pathParameters: {
3663
+ stackId: string;
3664
+ serviceId: string;
3665
+ };
3666
+ } & {
3667
+ headers: {
3668
+ "x-access-token"?: string | undefined;
3669
+ } & Partial<{
3670
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3671
+ }>;
3672
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3673
+ [x: string]: unknown;
3674
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3675
+ [x: string]: unknown;
3676
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3677
+ [x: string]: unknown;
3678
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3679
+ [x: string]: unknown;
3680
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3681
+ [x: string]: unknown;
3682
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3683
+ [x: string]: unknown;
3684
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3685
+ headers?: Partial<{
3686
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3687
+ }>;
3688
+ } & {
3689
+ pathParameters: {
3690
+ stackId: string;
3691
+ serviceId: string;
3692
+ };
3693
+ } & {
3694
+ headers: {
3695
+ "x-access-token"?: string | undefined;
3696
+ } & Partial<{
3697
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3698
+ }>;
3699
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3700
+ [x: string]: unknown;
3701
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3702
+ [x: string]: unknown;
3703
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3704
+ [x: string]: unknown;
3705
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3706
+ [x: string]: unknown;
3707
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3708
+ [x: string]: unknown;
3709
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3710
+ [x: string]: unknown;
3711
+ }, 500, "application/json">>>;
3712
+ /** Start a stopped Service. */
3713
+ startService: (request: {
3714
+ stackId: string;
3715
+ serviceId: string;
3716
+ headers?: {
3717
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3718
+ "x-access-token"?: string | undefined;
3719
+ } | undefined;
3720
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3721
+ headers?: Partial<{
3722
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3723
+ }>;
3724
+ } & {
3725
+ pathParameters: {
3726
+ stackId: string;
3727
+ serviceId: string;
3728
+ };
3729
+ } & {
3730
+ headers: {
3731
+ "x-access-token"?: string | undefined;
3732
+ } & Partial<{
3733
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3734
+ }>;
3735
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3736
+ [x: string]: unknown;
3737
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3738
+ [x: string]: unknown;
3739
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3740
+ [x: string]: unknown;
3741
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3742
+ [x: string]: unknown;
3743
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3744
+ [x: string]: unknown;
3745
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3746
+ [x: string]: unknown;
3747
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3748
+ headers?: Partial<{
3749
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3750
+ }>;
3751
+ } & {
3752
+ pathParameters: {
3753
+ stackId: string;
3754
+ serviceId: string;
3755
+ };
3756
+ } & {
3757
+ headers: {
3758
+ "x-access-token"?: string | undefined;
3759
+ } & Partial<{
3760
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3761
+ }>;
3762
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3763
+ [x: string]: unknown;
3764
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3765
+ [x: string]: unknown;
3766
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3767
+ [x: string]: unknown;
3768
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3769
+ [x: string]: unknown;
3770
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3771
+ [x: string]: unknown;
3772
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3773
+ [x: string]: unknown;
3774
+ }, 500, "application/json">>>;
3775
+ /** Stop a started Service. */
3776
+ stopService: (request: {
3777
+ stackId: string;
3778
+ serviceId: string;
3779
+ headers?: {
3780
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3781
+ "x-access-token"?: string | undefined;
3782
+ } | undefined;
3783
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3784
+ headers?: Partial<{
3785
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3786
+ }>;
3787
+ } & {
3788
+ pathParameters: {
3789
+ stackId: string;
3790
+ serviceId: string;
3791
+ };
3792
+ } & {
3793
+ headers: {
3794
+ "x-access-token"?: string | undefined;
3795
+ } & Partial<{
3796
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3797
+ }>;
3798
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3799
+ [x: string]: unknown;
3800
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3801
+ [x: string]: unknown;
3802
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3803
+ [x: string]: unknown;
3804
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3805
+ [x: string]: unknown;
3806
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3807
+ [x: string]: unknown;
3808
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3809
+ [x: string]: unknown;
3810
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3811
+ headers?: Partial<{
3812
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3813
+ }>;
3814
+ } & {
3815
+ pathParameters: {
3816
+ stackId: string;
3817
+ serviceId: string;
3818
+ };
3819
+ } & {
3820
+ headers: {
3821
+ "x-access-token"?: string | undefined;
3822
+ } & Partial<{
3823
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3824
+ }>;
3825
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3826
+ [x: string]: unknown;
3827
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3828
+ [x: string]: unknown;
3829
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3830
+ [x: string]: unknown;
3831
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3832
+ [x: string]: unknown;
3833
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3834
+ [x: string]: unknown;
3835
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3836
+ [x: string]: unknown;
3837
+ }, 500, "application/json">>>;
3838
+ /** Validate a Registries' URI. */
3839
+ validateContainerRegistryUri: (request: {
3840
+ data: {
3841
+ registryUri: string;
3842
+ };
3843
+ headers?: {
3844
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3845
+ "x-access-token"?: string | undefined;
3846
+ } | undefined;
3847
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3848
+ data: {
3849
+ registryUri: string;
3850
+ };
3851
+ } & {
3852
+ headers?: Partial<{
3853
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3854
+ }>;
3855
+ } & {
3856
+ headers: {
3857
+ "x-access-token"?: string | undefined;
3858
+ } & Partial<{
3859
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3860
+ }>;
3861
+ }, import("@mittwald/api-client-commons").Response<{
3862
+ valid: boolean;
3863
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3864
+ [x: string]: unknown;
3865
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3866
+ [x: string]: unknown;
3867
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3868
+ [x: string]: unknown;
3869
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3870
+ [x: string]: unknown;
3871
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3872
+ [x: string]: unknown;
3873
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3874
+ [x: string]: unknown;
3875
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3876
+ data: {
3877
+ registryUri: string;
3878
+ };
3879
+ } & {
3880
+ headers?: Partial<{
3881
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3882
+ }>;
3883
+ } & {
3884
+ headers: {
3885
+ "x-access-token"?: string | undefined;
3886
+ } & Partial<{
3887
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3888
+ }>;
3889
+ }, import("@mittwald/api-client-commons").Response<{
3890
+ valid: boolean;
3891
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3892
+ [x: string]: unknown;
3893
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3894
+ [x: string]: unknown;
3895
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3896
+ [x: string]: unknown;
3897
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3898
+ [x: string]: unknown;
3899
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3900
+ [x: string]: unknown;
3901
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3902
+ [x: string]: unknown;
3903
+ }, 500, "application/json">>>;
3904
+ /** Validate a Registries' credentials. */
3905
+ validateRegistryCredentials: (request: {
3906
+ registryId: string;
3907
+ headers?: {
3908
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3909
+ "x-access-token"?: string | undefined;
3910
+ } | undefined;
3911
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2242
3912
  headers?: Partial<{
2243
3913
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2244
3914
  }>;
3915
+ } & {
3916
+ pathParameters: {
3917
+ registryId: string;
3918
+ };
2245
3919
  } & {
2246
3920
  headers: {
2247
3921
  "x-access-token"?: string | undefined;
2248
3922
  } & Partial<{
2249
3923
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2250
3924
  }>;
2251
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3925
+ }, import("@mittwald/api-client-commons").Response<{
3926
+ valid: boolean;
3927
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2252
3928
  [x: string]: unknown;
2253
3929
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2254
3930
  [x: string]: unknown;
@@ -2256,25 +3932,27 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2256
3932
  [x: string]: unknown;
2257
3933
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2258
3934
  [x: string]: unknown;
2259
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2260
- data: {
2261
- description?: string | undefined;
2262
- };
2263
- } & {
2264
- pathParameters: {
2265
- projectBackupId: string;
2266
- };
2267
- } & {
3935
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3936
+ [x: string]: unknown;
3937
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3938
+ [x: string]: unknown;
3939
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2268
3940
  headers?: Partial<{
2269
3941
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2270
3942
  }>;
3943
+ } & {
3944
+ pathParameters: {
3945
+ registryId: string;
3946
+ };
2271
3947
  } & {
2272
3948
  headers: {
2273
3949
  "x-access-token"?: string | undefined;
2274
3950
  } & Partial<{
2275
3951
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2276
3952
  }>;
2277
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3953
+ }, import("@mittwald/api-client-commons").Response<{
3954
+ valid: boolean;
3955
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2278
3956
  [x: string]: unknown;
2279
3957
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2280
3958
  [x: string]: unknown;
@@ -2282,7 +3960,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2282
3960
  [x: string]: unknown;
2283
3961
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2284
3962
  [x: string]: unknown;
2285
- }, 429, "application/json">>>;
3963
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3964
+ [x: string]: unknown;
3965
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3966
+ [x: string]: unknown;
3967
+ }, 500, "application/json">>>;
2286
3968
  };
2287
3969
  /** The contract API allows you to manage your contracts and orders */
2288
3970
  readonly contract: {
@@ -4354,7 +6036,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4354
6036
  }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
4355
6037
  [x: string]: unknown;
4356
6038
  }, 400, "application/json">>>;
4357
- /** Authenticate your external application using the extensionInstanceSecret. */
6039
+ /** Authenticate your external application using a session token and an extension secret */
4358
6040
  extensionAuthenticateWithSessionToken: (request: {
4359
6041
  data: {
4360
6042
  sessionToken: string;
@@ -4409,6 +6091,72 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4409
6091
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4410
6092
  [x: string]: unknown;
4411
6093
  }, 404, "application/json">>>;
6094
+ /** Change the context of an Extension. */
6095
+ extensionChangeContext: (request: {
6096
+ data: {
6097
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6098
+ };
6099
+ contributorId: string;
6100
+ extensionId: string;
6101
+ headers?: {
6102
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6103
+ "x-access-token"?: string | undefined;
6104
+ } | undefined;
6105
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6106
+ data: {
6107
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6108
+ };
6109
+ } & {
6110
+ pathParameters: {
6111
+ contributorId: string;
6112
+ extensionId: string;
6113
+ };
6114
+ } & {
6115
+ headers?: Partial<{
6116
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6117
+ }>;
6118
+ } & {
6119
+ headers: {
6120
+ "x-access-token"?: string | undefined;
6121
+ } & Partial<{
6122
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6123
+ }>;
6124
+ }, import("@mittwald/api-client-commons").Response<{
6125
+ cleaningUpInstances: boolean;
6126
+ currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6127
+ id: string;
6128
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6129
+ [x: string]: unknown;
6130
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6131
+ [x: string]: unknown;
6132
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6133
+ data: {
6134
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6135
+ };
6136
+ } & {
6137
+ pathParameters: {
6138
+ contributorId: string;
6139
+ extensionId: string;
6140
+ };
6141
+ } & {
6142
+ headers?: Partial<{
6143
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6144
+ }>;
6145
+ } & {
6146
+ headers: {
6147
+ "x-access-token"?: string | undefined;
6148
+ } & Partial<{
6149
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6150
+ }>;
6151
+ }, import("@mittwald/api-client-commons").Response<{
6152
+ cleaningUpInstances: boolean;
6153
+ currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
6154
+ id: string;
6155
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6156
+ [x: string]: unknown;
6157
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6158
+ [x: string]: unknown;
6159
+ }, 429, "application/json">>>;
4412
6160
  /** Consent to extension scopes. */
4413
6161
  extensionConsentToExtensionScopes: (request: {
4414
6162
  data: {
@@ -5987,28 +7735,170 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5987
7735
  pathParameters: {
5988
7736
  contributorId: string;
5989
7737
  };
5990
- } & {
5991
- headers?: Partial<{
5992
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5993
- }>;
5994
- } & {
5995
- headers: {
5996
- "x-access-token"?: string | undefined;
5997
- } & Partial<{
5998
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5999
- }>;
6000
- }, import("@mittwald/api-client-commons").Response<{
6001
- id: string;
6002
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7738
+ } & {
7739
+ headers?: Partial<{
7740
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7741
+ }>;
7742
+ } & {
7743
+ headers: {
7744
+ "x-access-token"?: string | undefined;
7745
+ } & Partial<{
7746
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7747
+ }>;
7748
+ }, import("@mittwald/api-client-commons").Response<{
7749
+ id: string;
7750
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
7751
+ [x: string]: unknown;
7752
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7753
+ [x: string]: unknown;
7754
+ }, 429, "application/json">>>;
7755
+ /** Remove an asset of an extension. */
7756
+ extensionRemoveAsset: (request: {
7757
+ contributorId: string;
7758
+ extensionId: string;
7759
+ assetRefId: string;
7760
+ headers?: {
7761
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7762
+ "x-access-token"?: string | undefined;
7763
+ } | undefined;
7764
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7765
+ headers?: Partial<{
7766
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7767
+ }>;
7768
+ } & {
7769
+ pathParameters: {
7770
+ contributorId: string;
7771
+ extensionId: string;
7772
+ assetRefId: string;
7773
+ };
7774
+ } & {
7775
+ headers: {
7776
+ "x-access-token"?: string | undefined;
7777
+ } & Partial<{
7778
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7779
+ }>;
7780
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7781
+ [x: string]: unknown;
7782
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7783
+ [x: string]: unknown;
7784
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7785
+ headers?: Partial<{
7786
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7787
+ }>;
7788
+ } & {
7789
+ pathParameters: {
7790
+ contributorId: string;
7791
+ extensionId: string;
7792
+ assetRefId: string;
7793
+ };
7794
+ } & {
7795
+ headers: {
7796
+ "x-access-token"?: string | undefined;
7797
+ } & Partial<{
7798
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7799
+ }>;
7800
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7801
+ [x: string]: unknown;
7802
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7803
+ [x: string]: unknown;
7804
+ }, 429, "application/json">>>;
7805
+ /** Add a logo to an extension. */
7806
+ extensionRequestLogoUpload: (request: {
7807
+ contributorId: string;
7808
+ extensionId: string;
7809
+ headers?: {
7810
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7811
+ "x-access-token"?: string | undefined;
7812
+ } | undefined;
7813
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7814
+ headers?: Partial<{
7815
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7816
+ }>;
7817
+ } & {
7818
+ pathParameters: {
7819
+ contributorId: string;
7820
+ extensionId: string;
7821
+ };
7822
+ } & {
7823
+ headers: {
7824
+ "x-access-token"?: string | undefined;
7825
+ } & Partial<{
7826
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7827
+ }>;
7828
+ }, import("@mittwald/api-client-commons").Response<{
7829
+ logoRefId: string;
7830
+ rules: {
7831
+ extensions: string[];
7832
+ fileTypes: {
7833
+ extensions: string[];
7834
+ mimeType: string;
7835
+ }[];
7836
+ maxSizeInBytes: number;
7837
+ mimeTypes: string[];
7838
+ properties?: {
7839
+ imageDimensions?: {
7840
+ max: {
7841
+ height?: number;
7842
+ width?: number;
7843
+ };
7844
+ min: {
7845
+ height?: number;
7846
+ width?: number;
7847
+ };
7848
+ };
7849
+ };
7850
+ };
7851
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7852
+ [x: string]: unknown;
7853
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7854
+ [x: string]: unknown;
7855
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7856
+ headers?: Partial<{
7857
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7858
+ }>;
7859
+ } & {
7860
+ pathParameters: {
7861
+ contributorId: string;
7862
+ extensionId: string;
7863
+ };
7864
+ } & {
7865
+ headers: {
7866
+ "x-access-token"?: string | undefined;
7867
+ } & Partial<{
7868
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7869
+ }>;
7870
+ }, import("@mittwald/api-client-commons").Response<{
7871
+ logoRefId: string;
7872
+ rules: {
7873
+ extensions: string[];
7874
+ fileTypes: {
7875
+ extensions: string[];
7876
+ mimeType: string;
7877
+ }[];
7878
+ maxSizeInBytes: number;
7879
+ mimeTypes: string[];
7880
+ properties?: {
7881
+ imageDimensions?: {
7882
+ max: {
7883
+ height?: number;
7884
+ width?: number;
7885
+ };
7886
+ min: {
7887
+ height?: number;
7888
+ width?: number;
7889
+ };
7890
+ };
7891
+ };
7892
+ };
7893
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6003
7894
  [x: string]: unknown;
6004
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7895
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6005
7896
  [x: string]: unknown;
6006
7897
  }, 429, "application/json">>>;
6007
- /** Remove an asset of an extension. */
6008
- extensionRemoveAsset: (request: {
7898
+ /** Remove the logo of an extension. */
7899
+ extensionRemoveLogo: (request: {
6009
7900
  contributorId: string;
6010
7901
  extensionId: string;
6011
- assetRefId: string;
6012
7902
  headers?: {
6013
7903
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6014
7904
  "x-access-token"?: string | undefined;
@@ -6021,7 +7911,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6021
7911
  pathParameters: {
6022
7912
  contributorId: string;
6023
7913
  extensionId: string;
6024
- assetRefId: string;
6025
7914
  };
6026
7915
  } & {
6027
7916
  headers: {
@@ -6041,7 +7930,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6041
7930
  pathParameters: {
6042
7931
  contributorId: string;
6043
7932
  extensionId: string;
6044
- assetRefId: string;
6045
7933
  };
6046
7934
  } & {
6047
7935
  headers: {
@@ -6213,99 +8101,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6213
8101
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6214
8102
  [x: string]: unknown;
6215
8103
  }, 429, "application/json">>>;
6216
- /** Add a logo to an extension. */
6217
- extensionRequestLogoUpload: (request: {
6218
- contributorId: string;
6219
- extensionId: string;
6220
- headers?: {
6221
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6222
- "x-access-token"?: string | undefined;
6223
- } | undefined;
6224
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6225
- headers?: Partial<{
6226
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6227
- }>;
6228
- } & {
6229
- pathParameters: {
6230
- contributorId: string;
6231
- extensionId: string;
6232
- };
6233
- } & {
6234
- headers: {
6235
- "x-access-token"?: string | undefined;
6236
- } & Partial<{
6237
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6238
- }>;
6239
- }, import("@mittwald/api-client-commons").Response<{
6240
- logoRefId: string;
6241
- rules: {
6242
- extensions: string[];
6243
- fileTypes: {
6244
- extensions: string[];
6245
- mimeType: string;
6246
- }[];
6247
- maxSizeInBytes: number;
6248
- mimeTypes: string[];
6249
- properties?: {
6250
- imageDimensions?: {
6251
- max: {
6252
- height?: number;
6253
- width?: number;
6254
- };
6255
- min: {
6256
- height?: number;
6257
- width?: number;
6258
- };
6259
- };
6260
- };
6261
- };
6262
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6263
- [x: string]: unknown;
6264
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6265
- [x: string]: unknown;
6266
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6267
- headers?: Partial<{
6268
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6269
- }>;
6270
- } & {
6271
- pathParameters: {
6272
- contributorId: string;
6273
- extensionId: string;
6274
- };
6275
- } & {
6276
- headers: {
6277
- "x-access-token"?: string | undefined;
6278
- } & Partial<{
6279
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6280
- }>;
6281
- }, import("@mittwald/api-client-commons").Response<{
6282
- logoRefId: string;
6283
- rules: {
6284
- extensions: string[];
6285
- fileTypes: {
6286
- extensions: string[];
6287
- mimeType: string;
6288
- }[];
6289
- maxSizeInBytes: number;
6290
- mimeTypes: string[];
6291
- properties?: {
6292
- imageDimensions?: {
6293
- max: {
6294
- height?: number;
6295
- width?: number;
6296
- };
6297
- min: {
6298
- height?: number;
6299
- width?: number;
6300
- };
6301
- };
6302
- };
6303
- };
6304
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6305
- [x: string]: unknown;
6306
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6307
- [x: string]: unknown;
6308
- }, 429, "application/json">>>;
6309
8104
  /** Publish or withdraw an Extension. */
6310
8105
  extensionSetExtensionPublishedState: (request: {
6311
8106
  data: {
@@ -8744,6 +10539,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8744
10539
  customerNumber: string;
8745
10540
  executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
8746
10541
  flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
10542
+ isAllowedToPlaceOrders?: boolean | undefined;
8747
10543
  isBanned?: boolean | undefined;
8748
10544
  isInDefaultOfPayment?: boolean | undefined;
8749
10545
  levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
@@ -8786,6 +10582,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8786
10582
  customerNumber: string;
8787
10583
  executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
8788
10584
  flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
10585
+ isAllowedToPlaceOrders?: boolean | undefined;
8789
10586
  isBanned?: boolean | undefined;
8790
10587
  isInDefaultOfPayment?: boolean | undefined;
8791
10588
  levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
@@ -9421,157 +11218,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9421
11218
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
9422
11219
  [x: string]: unknown;
9423
11220
  }, 429, "application/json">>>;
9424
- /** Gets the status of a agency verification request.. */
9425
- getOpenAgencyVerification: (request: {
9426
- customerId: string;
9427
- headers?: {
9428
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9429
- } | undefined;
9430
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9431
- headers?: Partial<{
9432
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9433
- }>;
9434
- } & {
9435
- pathParameters: {
9436
- customerId: string;
9437
- };
9438
- }, import("@mittwald/api-client-commons").Response<{
9439
- customerId: string;
9440
- domain: string;
9441
- email: string;
9442
- requestedOn: string;
9443
- verificationId: string;
9444
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9445
- [x: string]: unknown;
9446
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9447
- [x: string]: unknown;
9448
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
9449
- [x: string]: unknown;
9450
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9451
- [x: string]: unknown;
9452
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9453
- headers?: Partial<{
9454
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9455
- }>;
9456
- } & {
9457
- pathParameters: {
9458
- customerId: string;
9459
- };
9460
- }, import("@mittwald/api-client-commons").Response<{
9461
- customerId: string;
9462
- domain: string;
9463
- email: string;
9464
- requestedOn: string;
9465
- verificationId: string;
9466
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9467
- [x: string]: unknown;
9468
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9469
- [x: string]: unknown;
9470
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
9471
- [x: string]: unknown;
9472
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9473
- [x: string]: unknown;
9474
- }, 429, "application/json">>>;
9475
- /** Creates a new agency verification request. Only one active verification can be active at the same time. */
9476
- createAgencyVerification: (request: {
9477
- customerId: string;
9478
- data?: {
9479
- domain?: string | undefined;
9480
- email?: string | undefined;
9481
- } | undefined;
9482
- headers?: {
9483
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9484
- } | undefined;
9485
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9486
- data: {
9487
- domain?: string | undefined;
9488
- email?: string | undefined;
9489
- };
9490
- } & {
9491
- pathParameters: {
9492
- customerId: string;
9493
- };
9494
- } & {
9495
- headers?: Partial<{
9496
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9497
- }>;
9498
- }, import("@mittwald/api-client-commons").Response<{
9499
- verificationId: string;
9500
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9501
- [x: string]: unknown;
9502
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9503
- [x: string]: unknown;
9504
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
9505
- [x: string]: unknown;
9506
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9507
- [x: string]: unknown;
9508
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9509
- data: {
9510
- domain?: string | undefined;
9511
- email?: string | undefined;
9512
- };
9513
- } & {
9514
- pathParameters: {
9515
- customerId: string;
9516
- };
9517
- } & {
9518
- headers?: Partial<{
9519
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9520
- }>;
9521
- }, import("@mittwald/api-client-commons").Response<{
9522
- verificationId: string;
9523
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9524
- [x: string]: unknown;
9525
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9526
- [x: string]: unknown;
9527
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
9528
- [x: string]: unknown;
9529
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9530
- [x: string]: unknown;
9531
- }, 429, "application/json">>>;
9532
- /** Abort an open agency verification process */
9533
- abortAgencyVerification: (request: {
9534
- customerId: string;
9535
- headers?: {
9536
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9537
- } | undefined;
9538
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9539
- headers?: Partial<{
9540
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9541
- }>;
9542
- } & {
9543
- pathParameters: {
9544
- customerId: string;
9545
- };
9546
- }, import("@mittwald/api-client-commons").Response<{
9547
- verificationId?: string | undefined;
9548
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9549
- [x: string]: unknown;
9550
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9551
- [x: string]: unknown;
9552
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
9553
- [x: string]: unknown;
9554
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9555
- [x: string]: unknown;
9556
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9557
- headers?: Partial<{
9558
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9559
- }>;
9560
- } & {
9561
- pathParameters: {
9562
- customerId: string;
9563
- };
9564
- }, import("@mittwald/api-client-commons").Response<{
9565
- verificationId?: string | undefined;
9566
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9567
- [x: string]: unknown;
9568
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9569
- [x: string]: unknown;
9570
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
9571
- [x: string]: unknown;
9572
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9573
- [x: string]: unknown;
9574
- }, 429, "application/json">>>;
9575
11221
  };
9576
11222
  /** The database API allows you to manage your databases, like MySQL and Redis databases. */
9577
11223
  readonly database: {
@@ -11457,7 +13103,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11457
13103
  } & Partial<{
11458
13104
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11459
13105
  }>;
11460
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
13106
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
11461
13107
  [x: string]: unknown;
11462
13108
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
11463
13109
  [x: string]: unknown;
@@ -11475,7 +13121,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11475
13121
  } & Partial<{
11476
13122
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11477
13123
  }>;
11478
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
13124
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
11479
13125
  [x: string]: unknown;
11480
13126
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
11481
13127
  [x: string]: unknown;