@mittwald/api-client 4.429.0 → 4.430.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.
@@ -1213,6 +1213,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1213
1213
  data?: {
1214
1214
  appVersionId?: string | undefined;
1215
1215
  customDocumentRoot?: string | undefined;
1216
+ databases?: {
1217
+ [x: string]: {
1218
+ databaseUserIds?: {
1219
+ [x: string]: string;
1220
+ } | undefined;
1221
+ purpose?: "primary" | "cache" | "custom" | undefined;
1222
+ replacesDatabaseId?: string | undefined;
1223
+ };
1224
+ } | undefined;
1216
1225
  description?: string | undefined;
1217
1226
  systemSoftware?: {
1218
1227
  [x: string]: {
@@ -1230,6 +1239,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1230
1239
  data: {
1231
1240
  appVersionId?: string | undefined;
1232
1241
  customDocumentRoot?: string | undefined;
1242
+ databases?: {
1243
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppPatchLinkedDatabase;
1244
+ } | undefined;
1233
1245
  description?: string | undefined;
1234
1246
  systemSoftware?: {
1235
1247
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDesiredSystemSoftware;
@@ -1247,12 +1259,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1247
1259
  }>;
1248
1260
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
1249
1261
  [x: string]: unknown;
1262
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
1263
+ [x: string]: unknown;
1250
1264
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
1251
1265
  [x: string]: unknown;
1252
1266
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
1253
1267
  data: {
1254
1268
  appVersionId?: string | undefined;
1255
1269
  customDocumentRoot?: string | undefined;
1270
+ databases?: {
1271
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppPatchLinkedDatabase;
1272
+ } | undefined;
1256
1273
  description?: string | undefined;
1257
1274
  systemSoftware?: {
1258
1275
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDesiredSystemSoftware;
@@ -1270,6 +1287,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1270
1287
  }>;
1271
1288
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
1272
1289
  [x: string]: unknown;
1290
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
1291
+ [x: string]: unknown;
1273
1292
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
1274
1293
  [x: string]: unknown;
1275
1294
  }, 429, "application/json">>>;
@@ -3505,69 +3524,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3505
3524
  }, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
3506
3525
  [x: string]: unknown;
3507
3526
  }, 503, "application/json">>>;
3508
- /** Update a Backup's expiration time. */
3509
- replaceProjectBackupExpirationTime: (request: {
3510
- projectBackupId: string;
3511
- data?: {
3512
- expirationTime?: string | undefined;
3513
- } | undefined;
3514
- headers?: {
3515
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3516
- "x-access-token"?: string | undefined;
3517
- } | undefined;
3518
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3519
- data: {
3520
- expirationTime?: string | undefined;
3521
- };
3522
- } & {
3523
- pathParameters: {
3524
- projectBackupId: string;
3525
- };
3526
- } & {
3527
- headers?: Partial<{
3528
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3529
- }>;
3530
- } & {
3531
- headers: {
3532
- "x-access-token"?: string | undefined;
3533
- } & Partial<{
3534
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3535
- }>;
3536
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3537
- [x: string]: unknown;
3538
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3539
- [x: string]: unknown;
3540
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3541
- [x: string]: unknown;
3542
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3543
- [x: string]: unknown;
3544
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3545
- data: {
3546
- expirationTime?: string | undefined;
3547
- };
3548
- } & {
3549
- pathParameters: {
3550
- projectBackupId: string;
3551
- };
3552
- } & {
3553
- headers?: Partial<{
3554
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3555
- }>;
3556
- } & {
3557
- headers: {
3558
- "x-access-token"?: string | undefined;
3559
- } & Partial<{
3560
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3561
- }>;
3562
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3563
- [x: string]: unknown;
3564
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3565
- [x: string]: unknown;
3566
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3567
- [x: string]: unknown;
3568
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3569
- [x: string]: unknown;
3570
- }, 429, "application/json">>>;
3571
3527
  /** Restore a ProjectBackup. */
3572
3528
  requestProjectBackupRestore: (request: {
3573
3529
  projectBackupId: string;
@@ -3638,23 +3594,38 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3638
3594
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3639
3595
  [x: string]: unknown;
3640
3596
  }, 429, "application/json">>>;
3641
- /** Change the description of a ProjectBackup. */
3642
- updateProjectBackupDescription: (request: {
3643
- projectBackupId: string;
3644
- data?: {
3645
- description?: string | undefined;
3646
- } | undefined;
3597
+ };
3598
+ /** The container API allows you to manage your stacks, containers, volumes and registries. */
3599
+ readonly container: {
3600
+ /** Add a template component to a Stack. */
3601
+ addTemplateComponent: (request: {
3602
+ data: {
3603
+ templateConfig: {
3604
+ templateId: string;
3605
+ userInputs?: {
3606
+ name: string;
3607
+ value: string;
3608
+ }[] | undefined;
3609
+ };
3610
+ };
3611
+ stackId: string;
3647
3612
  headers?: {
3648
3613
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3649
3614
  "x-access-token"?: string | undefined;
3650
3615
  } | undefined;
3651
3616
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3652
3617
  data: {
3653
- description?: string | undefined;
3618
+ templateConfig: {
3619
+ templateId: string;
3620
+ userInputs?: {
3621
+ name: string;
3622
+ value: string;
3623
+ }[];
3624
+ };
3654
3625
  };
3655
3626
  } & {
3656
3627
  pathParameters: {
3657
- projectBackupId: string;
3628
+ stackId: string;
3658
3629
  };
3659
3630
  } & {
3660
3631
  headers?: Partial<{
@@ -3674,13 +3645,25 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3674
3645
  [x: string]: unknown;
3675
3646
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3676
3647
  [x: string]: unknown;
3677
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3648
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
3649
+ [x: string]: unknown;
3650
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3651
+ [x: string]: unknown;
3652
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3653
+ [x: string]: unknown;
3654
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3678
3655
  data: {
3679
- description?: string | undefined;
3656
+ templateConfig: {
3657
+ templateId: string;
3658
+ userInputs?: {
3659
+ name: string;
3660
+ value: string;
3661
+ }[];
3662
+ };
3680
3663
  };
3681
3664
  } & {
3682
3665
  pathParameters: {
3683
- projectBackupId: string;
3666
+ stackId: string;
3684
3667
  };
3685
3668
  } & {
3686
3669
  headers?: Partial<{
@@ -3700,10 +3683,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3700
3683
  [x: string]: unknown;
3701
3684
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3702
3685
  [x: string]: unknown;
3703
- }, 429, "application/json">>>;
3704
- };
3705
- /** The container API allows you to manage your stacks, containers, volumes and registries. */
3706
- readonly container: {
3686
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
3687
+ [x: string]: unknown;
3688
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3689
+ [x: string]: unknown;
3690
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3691
+ [x: string]: unknown;
3692
+ }, 500, "application/json">>>;
3707
3693
  /** Call pull-image webhook */
3708
3694
  callPullImageWebhookForService: (request: {
3709
3695
  queryParameters: {
@@ -6017,86 +6003,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6017
6003
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6018
6004
  [x: string]: unknown;
6019
6005
  }, 500, "application/json">>>;
6020
- /** Set an update schedule for a Stack. */
6021
- setStackUpdateSchedule: (request: {
6022
- stackId: string;
6023
- data?: {
6024
- updateSchedule?: {
6025
- cron: string;
6026
- timezone?: string | undefined;
6027
- } | undefined;
6028
- } | undefined;
6029
- headers?: {
6030
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6031
- "x-access-token"?: string | undefined;
6032
- } | undefined;
6033
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6034
- data: {
6035
- updateSchedule?: {
6036
- cron: string;
6037
- timezone?: string;
6038
- } | undefined;
6039
- };
6040
- } & {
6041
- pathParameters: {
6042
- stackId: string;
6043
- };
6044
- } & {
6045
- headers?: Partial<{
6046
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6047
- }>;
6048
- } & {
6049
- headers: {
6050
- "x-access-token"?: string | undefined;
6051
- } & Partial<{
6052
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6053
- }>;
6054
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6055
- [x: string]: unknown;
6056
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6057
- [x: string]: unknown;
6058
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6059
- [x: string]: unknown;
6060
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6061
- [x: string]: unknown;
6062
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
6063
- [x: string]: unknown;
6064
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6065
- [x: string]: unknown;
6066
- }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6067
- data: {
6068
- updateSchedule?: {
6069
- cron: string;
6070
- timezone?: string;
6071
- } | undefined;
6072
- };
6073
- } & {
6074
- pathParameters: {
6075
- stackId: string;
6076
- };
6077
- } & {
6078
- headers?: Partial<{
6079
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6080
- }>;
6081
- } & {
6082
- headers: {
6083
- "x-access-token"?: string | undefined;
6084
- } & Partial<{
6085
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6086
- }>;
6087
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6088
- [x: string]: unknown;
6089
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6090
- [x: string]: unknown;
6091
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6092
- [x: string]: unknown;
6093
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6094
- [x: string]: unknown;
6095
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
6096
- [x: string]: unknown;
6097
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6098
- [x: string]: unknown;
6099
- }, 500, "application/json">>>;
6100
6006
  /** Start a stopped Service. */
6101
6007
  startService: (request: {
6102
6008
  stackId: string;
@@ -6223,99 +6129,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6223
6129
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6224
6130
  [x: string]: unknown;
6225
6131
  }, 500, "application/json">>>;
6226
- /** Add a template component to a Stack. */
6227
- addTemplateComponent: (request: {
6228
- data: {
6229
- templateConfig: {
6230
- templateId: string;
6231
- userInputs?: {
6232
- name: string;
6233
- value: string;
6234
- }[] | undefined;
6235
- };
6236
- };
6237
- stackId: string;
6238
- headers?: {
6239
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6240
- "x-access-token"?: string | undefined;
6241
- } | undefined;
6242
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6243
- data: {
6244
- templateConfig: {
6245
- templateId: string;
6246
- userInputs?: {
6247
- name: string;
6248
- value: string;
6249
- }[];
6250
- };
6251
- };
6252
- } & {
6253
- pathParameters: {
6254
- stackId: string;
6255
- };
6256
- } & {
6257
- headers?: Partial<{
6258
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6259
- }>;
6260
- } & {
6261
- headers: {
6262
- "x-access-token"?: string | undefined;
6263
- } & Partial<{
6264
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6265
- }>;
6266
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6267
- [x: string]: unknown;
6268
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6269
- [x: string]: unknown;
6270
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6271
- [x: string]: unknown;
6272
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6273
- [x: string]: unknown;
6274
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
6275
- [x: string]: unknown;
6276
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
6277
- [x: string]: unknown;
6278
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6279
- [x: string]: unknown;
6280
- }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6281
- data: {
6282
- templateConfig: {
6283
- templateId: string;
6284
- userInputs?: {
6285
- name: string;
6286
- value: string;
6287
- }[];
6288
- };
6289
- };
6290
- } & {
6291
- pathParameters: {
6292
- stackId: string;
6293
- };
6294
- } & {
6295
- headers?: Partial<{
6296
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6297
- }>;
6298
- } & {
6299
- headers: {
6300
- "x-access-token"?: string | undefined;
6301
- } & Partial<{
6302
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6303
- }>;
6304
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6305
- [x: string]: unknown;
6306
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6307
- [x: string]: unknown;
6308
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6309
- [x: string]: unknown;
6310
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6311
- [x: string]: unknown;
6312
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
6313
- [x: string]: unknown;
6314
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
6315
- [x: string]: unknown;
6316
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6317
- [x: string]: unknown;
6318
- }, 500, "application/json">>>;
6319
6132
  };
6320
6133
  /** The contract API allows you to manage your contracts and orders */
6321
6134
  readonly contract: {
@@ -6745,6 +6558,71 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6745
6558
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6746
6559
  [x: string]: unknown;
6747
6560
  }, 429, "application/json">>>;
6561
+ /** Return the AI Hosting Contract for the given Customer. */
6562
+ getDetailOfContractByAiHosting: (request: {
6563
+ customerId: string;
6564
+ aiHostingId: string;
6565
+ headers?: {
6566
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6567
+ "x-access-token"?: string | undefined;
6568
+ } | undefined;
6569
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6570
+ headers?: Partial<{
6571
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6572
+ }>;
6573
+ } & {
6574
+ pathParameters: {
6575
+ customerId: string;
6576
+ aiHostingId: string;
6577
+ };
6578
+ } & {
6579
+ headers: {
6580
+ "x-access-token"?: string | undefined;
6581
+ } & Partial<{
6582
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6583
+ }>;
6584
+ }, import("@mittwald/api-client-commons").Response<{
6585
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
6586
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
6587
+ contractId: string;
6588
+ contractNumber: string;
6589
+ customerId: string;
6590
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
6591
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6592
+ [x: string]: unknown;
6593
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6594
+ [x: string]: unknown;
6595
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6596
+ [x: string]: unknown;
6597
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6598
+ headers?: Partial<{
6599
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6600
+ }>;
6601
+ } & {
6602
+ pathParameters: {
6603
+ customerId: string;
6604
+ aiHostingId: string;
6605
+ };
6606
+ } & {
6607
+ headers: {
6608
+ "x-access-token"?: string | undefined;
6609
+ } & Partial<{
6610
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6611
+ }>;
6612
+ }, import("@mittwald/api-client-commons").Response<{
6613
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
6614
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
6615
+ contractId: string;
6616
+ contractNumber: string;
6617
+ customerId: string;
6618
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
6619
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6620
+ [x: string]: unknown;
6621
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6622
+ [x: string]: unknown;
6623
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6624
+ [x: string]: unknown;
6625
+ }, 429, "application/json">>>;
6748
6626
  /** Return the Contract for the given Certificate. */
6749
6627
  getDetailOfContractByCertificate: (request: {
6750
6628
  certificateId: string;
@@ -8422,84 +8300,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8422
8300
  }, import("@mittwald/api-client-commons").Response<{
8423
8301
  machineTypePrice: number;
8424
8302
  storagePrice: number;
8425
- totalPrice: number;
8426
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8427
- [x: string]: unknown;
8428
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8429
- error?: {} | undefined;
8430
- }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
8431
- [x: string]: unknown;
8432
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8433
- data: {
8434
- tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange) | undefined;
8435
- tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting" | undefined;
8436
- };
8437
- } & {
8438
- headers?: Partial<{
8439
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8440
- }>;
8441
- } & {
8442
- headers: {
8443
- "x-access-token"?: string | undefined;
8444
- } & Partial<{
8445
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8446
- }>;
8447
- }, import("@mittwald/api-client-commons").Response<{
8448
- machineTypePrice: number;
8449
- storagePrice: number;
8450
- totalPrice: number;
8451
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8452
- [x: string]: unknown;
8453
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8454
- error?: {} | undefined;
8455
- }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
8456
- [x: string]: unknown;
8457
- }, 429, "application/json">>>;
8458
- /** Return the AI Hosting Contract for the given Customer. */
8459
- getDetailOfContractByAiHosting: (request: {
8460
- customerId: string;
8461
- aiHostingId: string;
8462
- headers?: {
8463
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8464
- "x-access-token"?: string | undefined;
8465
- } | undefined;
8466
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8467
- headers?: Partial<{
8468
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8469
- }>;
8470
- } & {
8471
- pathParameters: {
8472
- customerId: string;
8473
- aiHostingId: string;
8474
- };
8475
- } & {
8476
- headers: {
8477
- "x-access-token"?: string | undefined;
8478
- } & Partial<{
8479
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8480
- }>;
8481
- }, import("@mittwald/api-client-commons").Response<{
8482
- additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
8483
- baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
8484
- contractId: string;
8485
- contractNumber: string;
8486
- customerId: string;
8487
- termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
8303
+ totalPrice: number;
8488
8304
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8489
8305
  [x: string]: unknown;
8490
8306
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8491
- [x: string]: unknown;
8492
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8307
+ error?: {} | undefined;
8308
+ }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
8493
8309
  [x: string]: unknown;
8494
8310
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8311
+ data: {
8312
+ tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange) | undefined;
8313
+ tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting" | undefined;
8314
+ };
8315
+ } & {
8495
8316
  headers?: Partial<{
8496
8317
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8497
8318
  }>;
8498
- } & {
8499
- pathParameters: {
8500
- customerId: string;
8501
- aiHostingId: string;
8502
- };
8503
8319
  } & {
8504
8320
  headers: {
8505
8321
  "x-access-token"?: string | undefined;
@@ -8507,17 +8323,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8507
8323
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8508
8324
  }>;
8509
8325
  }, import("@mittwald/api-client-commons").Response<{
8510
- additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
8511
- baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
8512
- contractId: string;
8513
- contractNumber: string;
8514
- customerId: string;
8515
- termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
8326
+ machineTypePrice: number;
8327
+ storagePrice: number;
8328
+ totalPrice: number;
8516
8329
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8517
8330
  [x: string]: unknown;
8518
8331
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8519
- [x: string]: unknown;
8520
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8332
+ error?: {} | undefined;
8333
+ }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
8521
8334
  [x: string]: unknown;
8522
8335
  }, 429, "application/json">>>;
8523
8336
  };
@@ -29801,124 +29614,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
29801
29614
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29802
29615
  [x: string]: unknown;
29803
29616
  }, 429, "application/json">>>;
29804
- /** Update a Project's description. */
29805
- updateProjectDescription: (request: {
29806
- data: {
29807
- description: string;
29808
- };
29809
- projectId: string;
29810
- headers?: {
29811
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
29812
- "x-access-token"?: string | undefined;
29813
- } | undefined;
29814
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
29815
- data: {
29816
- description: string;
29817
- };
29818
- } & {
29819
- pathParameters: {
29820
- projectId: string;
29821
- };
29822
- } & {
29823
- headers?: Partial<{
29824
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29825
- }>;
29826
- } & {
29827
- headers: {
29828
- "x-access-token"?: string | undefined;
29829
- } & Partial<{
29830
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29831
- }>;
29832
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
29833
- [x: string]: unknown;
29834
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
29835
- [x: string]: unknown;
29836
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29837
- [x: string]: unknown;
29838
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
29839
- data: {
29840
- description: string;
29841
- };
29842
- } & {
29843
- pathParameters: {
29844
- projectId: string;
29845
- };
29846
- } & {
29847
- headers?: Partial<{
29848
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29849
- }>;
29850
- } & {
29851
- headers: {
29852
- "x-access-token"?: string | undefined;
29853
- } & Partial<{
29854
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29855
- }>;
29856
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
29857
- [x: string]: unknown;
29858
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
29859
- [x: string]: unknown;
29860
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29861
- [x: string]: unknown;
29862
- }, 429, "application/json">>>;
29863
- /** Update a Servers's description. */
29864
- updateServerDescription: (request: {
29865
- data: {
29866
- description: string;
29867
- };
29868
- serverId: string;
29869
- headers?: {
29870
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
29871
- "x-access-token"?: string | undefined;
29872
- } | undefined;
29873
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
29874
- data: {
29875
- description: string;
29876
- };
29877
- } & {
29878
- pathParameters: {
29879
- serverId: string;
29880
- };
29881
- } & {
29882
- headers?: Partial<{
29883
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29884
- }>;
29885
- } & {
29886
- headers: {
29887
- "x-access-token"?: string | undefined;
29888
- } & Partial<{
29889
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29890
- }>;
29891
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
29892
- [x: string]: unknown;
29893
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
29894
- [x: string]: unknown;
29895
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29896
- [x: string]: unknown;
29897
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
29898
- data: {
29899
- description: string;
29900
- };
29901
- } & {
29902
- pathParameters: {
29903
- serverId: string;
29904
- };
29905
- } & {
29906
- headers?: Partial<{
29907
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29908
- }>;
29909
- } & {
29910
- headers: {
29911
- "x-access-token"?: string | undefined;
29912
- } & Partial<{
29913
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29914
- }>;
29915
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
29916
- [x: string]: unknown;
29917
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
29918
- [x: string]: unknown;
29919
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29920
- [x: string]: unknown;
29921
- }, 429, "application/json">>>;
29922
29617
  /** Get storage space Statistics belonging to a Project. */
29923
29618
  storagespaceGetProjectStatistics: (request: {
29924
29619
  projectId: string;
@@ -30185,124 +29880,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
30185
29880
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
30186
29881
  [x: string]: unknown;
30187
29882
  }, 500, "application/json">>>;
30188
- /** Update a Project's storage space notification threshold. */
30189
- storagespaceReplaceProjectNotificationThreshold: (request: {
30190
- projectId: string;
30191
- data?: {
30192
- notificationThresholdInBytes?: number | undefined;
30193
- } | undefined;
30194
- headers?: {
30195
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
30196
- "x-access-token"?: string | undefined;
30197
- } | undefined;
30198
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
30199
- data: {
30200
- notificationThresholdInBytes?: number | undefined;
30201
- };
30202
- } & {
30203
- pathParameters: {
30204
- projectId: string;
30205
- };
30206
- } & {
30207
- headers?: Partial<{
30208
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30209
- }>;
30210
- } & {
30211
- headers: {
30212
- "x-access-token"?: string | undefined;
30213
- } & Partial<{
30214
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30215
- }>;
30216
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
30217
- [x: string]: unknown;
30218
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
30219
- [x: string]: unknown;
30220
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
30221
- [x: string]: unknown;
30222
- }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
30223
- data: {
30224
- notificationThresholdInBytes?: number | undefined;
30225
- };
30226
- } & {
30227
- pathParameters: {
30228
- projectId: string;
30229
- };
30230
- } & {
30231
- headers?: Partial<{
30232
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30233
- }>;
30234
- } & {
30235
- headers: {
30236
- "x-access-token"?: string | undefined;
30237
- } & Partial<{
30238
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30239
- }>;
30240
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
30241
- [x: string]: unknown;
30242
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
30243
- [x: string]: unknown;
30244
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
30245
- [x: string]: unknown;
30246
- }, 500, "application/json">>>;
30247
- /** Update a Server's storage space notification threshold. */
30248
- storagespaceReplaceServerNotificationThreshold: (request: {
30249
- serverId: string;
30250
- data?: {
30251
- notificationThresholdInBytes?: number | undefined;
30252
- } | undefined;
30253
- headers?: {
30254
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
30255
- "x-access-token"?: string | undefined;
30256
- } | undefined;
30257
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
30258
- data: {
30259
- notificationThresholdInBytes?: number | undefined;
30260
- };
30261
- } & {
30262
- pathParameters: {
30263
- serverId: string;
30264
- };
30265
- } & {
30266
- headers?: Partial<{
30267
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30268
- }>;
30269
- } & {
30270
- headers: {
30271
- "x-access-token"?: string | undefined;
30272
- } & Partial<{
30273
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30274
- }>;
30275
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
30276
- [x: string]: unknown;
30277
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
30278
- [x: string]: unknown;
30279
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
30280
- [x: string]: unknown;
30281
- }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
30282
- data: {
30283
- notificationThresholdInBytes?: number | undefined;
30284
- };
30285
- } & {
30286
- pathParameters: {
30287
- serverId: string;
30288
- };
30289
- } & {
30290
- headers?: Partial<{
30291
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30292
- }>;
30293
- } & {
30294
- headers: {
30295
- "x-access-token"?: string | undefined;
30296
- } & Partial<{
30297
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30298
- }>;
30299
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
30300
- [x: string]: unknown;
30301
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
30302
- [x: string]: unknown;
30303
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
30304
- [x: string]: unknown;
30305
- }, 500, "application/json">>>;
30306
29883
  };
30307
29884
  /** The filesystem API allows you to directly access the filesystem of your project. */
30308
29885
  readonly projectFileSystem: {