@mittwald/api-client 4.389.0 → 4.391.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.
@@ -3868,6 +3868,202 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3868
3868
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3869
3869
  [x: string]: unknown;
3870
3870
  }, 500, "application/json">>>;
3871
+ /** List Stacks belonging to a Project. */
3872
+ listStacks: (request: {
3873
+ projectId: string;
3874
+ headers?: {
3875
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3876
+ "x-access-token"?: string | undefined;
3877
+ } | undefined;
3878
+ queryParameters?: {
3879
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3880
+ limit?: number | undefined;
3881
+ skip?: number | undefined;
3882
+ page?: number | undefined;
3883
+ } | undefined;
3884
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3885
+ headers?: Partial<{
3886
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3887
+ }>;
3888
+ } & {
3889
+ pathParameters: {
3890
+ projectId: string;
3891
+ };
3892
+ } & {
3893
+ queryParameters: {
3894
+ limit?: number | undefined;
3895
+ skip?: number | undefined;
3896
+ page?: number | undefined;
3897
+ } & Partial<{
3898
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3899
+ }>;
3900
+ } & {
3901
+ headers: {
3902
+ "x-access-token"?: string | undefined;
3903
+ } & Partial<{
3904
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3905
+ }>;
3906
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3907
+ [x: string]: unknown;
3908
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3909
+ [x: string]: unknown;
3910
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3911
+ [x: string]: unknown;
3912
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3913
+ [x: string]: unknown;
3914
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3915
+ headers?: Partial<{
3916
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3917
+ }>;
3918
+ } & {
3919
+ pathParameters: {
3920
+ projectId: string;
3921
+ };
3922
+ } & {
3923
+ queryParameters: {
3924
+ limit?: number | undefined;
3925
+ skip?: number | undefined;
3926
+ page?: number | undefined;
3927
+ } & Partial<{
3928
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3929
+ }>;
3930
+ } & {
3931
+ headers: {
3932
+ "x-access-token"?: string | undefined;
3933
+ } & Partial<{
3934
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3935
+ }>;
3936
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3937
+ [x: string]: unknown;
3938
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3939
+ [x: string]: unknown;
3940
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3941
+ [x: string]: unknown;
3942
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3943
+ [x: string]: unknown;
3944
+ }, 500, "application/json">>>;
3945
+ /** Create a Stack. */
3946
+ createStack: (request: {
3947
+ data: {
3948
+ description: string;
3949
+ templateConfig?: {
3950
+ templateId: string;
3951
+ userInputs?: {
3952
+ name: string;
3953
+ value: string;
3954
+ }[] | undefined;
3955
+ } | undefined;
3956
+ };
3957
+ projectId: string;
3958
+ headers?: {
3959
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3960
+ "x-access-token"?: string | undefined;
3961
+ } | undefined;
3962
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3963
+ data: {
3964
+ description: string;
3965
+ templateConfig?: {
3966
+ templateId: string;
3967
+ userInputs?: {
3968
+ name: string;
3969
+ value: string;
3970
+ }[];
3971
+ } | undefined;
3972
+ };
3973
+ } & {
3974
+ pathParameters: {
3975
+ projectId: string;
3976
+ };
3977
+ } & {
3978
+ headers?: Partial<{
3979
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3980
+ }>;
3981
+ } & {
3982
+ headers: {
3983
+ "x-access-token"?: string | undefined;
3984
+ } & Partial<{
3985
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3986
+ }>;
3987
+ }, import("@mittwald/api-client-commons").Response<{
3988
+ description: string;
3989
+ disabled: boolean;
3990
+ id: string;
3991
+ prefix: string;
3992
+ projectId: string;
3993
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
3994
+ templateId?: string | undefined;
3995
+ updateSchedule?: {
3996
+ cron: string;
3997
+ timezone?: string;
3998
+ } | null | undefined;
3999
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
4000
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
4001
+ [x: string]: unknown;
4002
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4003
+ [x: string]: unknown;
4004
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4005
+ [x: string]: unknown;
4006
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4007
+ [x: string]: unknown;
4008
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
4009
+ [x: string]: unknown;
4010
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
4011
+ [x: string]: unknown;
4012
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4013
+ [x: string]: unknown;
4014
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4015
+ data: {
4016
+ description: string;
4017
+ templateConfig?: {
4018
+ templateId: string;
4019
+ userInputs?: {
4020
+ name: string;
4021
+ value: string;
4022
+ }[];
4023
+ } | undefined;
4024
+ };
4025
+ } & {
4026
+ pathParameters: {
4027
+ projectId: string;
4028
+ };
4029
+ } & {
4030
+ headers?: Partial<{
4031
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4032
+ }>;
4033
+ } & {
4034
+ headers: {
4035
+ "x-access-token"?: string | undefined;
4036
+ } & Partial<{
4037
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4038
+ }>;
4039
+ }, import("@mittwald/api-client-commons").Response<{
4040
+ description: string;
4041
+ disabled: boolean;
4042
+ id: string;
4043
+ prefix: string;
4044
+ projectId: string;
4045
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
4046
+ templateId?: string | undefined;
4047
+ updateSchedule?: {
4048
+ cron: string;
4049
+ timezone?: string;
4050
+ } | null | undefined;
4051
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
4052
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
4053
+ [x: string]: unknown;
4054
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4055
+ [x: string]: unknown;
4056
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4057
+ [x: string]: unknown;
4058
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4059
+ [x: string]: unknown;
4060
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
4061
+ [x: string]: unknown;
4062
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
4063
+ [x: string]: unknown;
4064
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4065
+ [x: string]: unknown;
4066
+ }, 500, "application/json">>>;
3871
4067
  /** Get a Stack. */
3872
4068
  getStack: (request: {
3873
4069
  stackId: string;
@@ -4078,10 +4274,67 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4078
4274
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4079
4275
  [x: string]: unknown;
4080
4276
  }, 500, "application/json">>>;
4277
+ /** Delete a Stack. */
4278
+ deleteStack: (request: {
4279
+ stackId: string;
4280
+ headers?: {
4281
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4282
+ "x-access-token"?: string | undefined;
4283
+ } | undefined;
4284
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4285
+ headers?: Partial<{
4286
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4287
+ }>;
4288
+ } & {
4289
+ pathParameters: {
4290
+ stackId: string;
4291
+ };
4292
+ } & {
4293
+ headers: {
4294
+ "x-access-token"?: string | undefined;
4295
+ } & Partial<{
4296
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4297
+ }>;
4298
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
4299
+ [x: string]: unknown;
4300
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4301
+ [x: string]: unknown;
4302
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4303
+ [x: string]: unknown;
4304
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4305
+ [x: string]: unknown;
4306
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4307
+ [x: string]: unknown;
4308
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4309
+ headers?: Partial<{
4310
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4311
+ }>;
4312
+ } & {
4313
+ pathParameters: {
4314
+ stackId: string;
4315
+ };
4316
+ } & {
4317
+ headers: {
4318
+ "x-access-token"?: string | undefined;
4319
+ } & Partial<{
4320
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4321
+ }>;
4322
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
4323
+ [x: string]: unknown;
4324
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4325
+ [x: string]: unknown;
4326
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4327
+ [x: string]: unknown;
4328
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4329
+ [x: string]: unknown;
4330
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4331
+ [x: string]: unknown;
4332
+ }, 500, "application/json">>>;
4081
4333
  /** Create, update or delete Services or Volumes belonging to a Stack. */
4082
4334
  updateStack: (request: {
4083
4335
  stackId: string;
4084
4336
  data?: {
4337
+ description?: string | undefined;
4085
4338
  services?: {
4086
4339
  [x: string]: {
4087
4340
  command?: string[] | undefined;
@@ -4123,6 +4376,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4123
4376
  } | undefined;
4124
4377
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4125
4378
  data: {
4379
+ description?: string | undefined;
4126
4380
  services?: {
4127
4381
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceRequest;
4128
4382
  } | undefined;
@@ -4171,6 +4425,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4171
4425
  [x: string]: unknown;
4172
4426
  }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4173
4427
  data: {
4428
+ description?: string | undefined;
4174
4429
  services?: {
4175
4430
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceRequest;
4176
4431
  } | undefined;
@@ -5067,80 +5322,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5067
5322
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5068
5323
  [x: string]: unknown;
5069
5324
  }, 500, "application/json">>>;
5070
- /** List Stacks belonging to a Project. */
5071
- listStacks: (request: {
5072
- projectId: string;
5073
- headers?: {
5074
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5075
- "x-access-token"?: string | undefined;
5076
- } | undefined;
5077
- queryParameters?: {
5078
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5079
- limit?: number | undefined;
5080
- skip?: number | undefined;
5081
- page?: number | undefined;
5082
- } | undefined;
5083
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5084
- headers?: Partial<{
5085
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5086
- }>;
5087
- } & {
5088
- pathParameters: {
5089
- projectId: string;
5090
- };
5091
- } & {
5092
- queryParameters: {
5093
- limit?: number | undefined;
5094
- skip?: number | undefined;
5095
- page?: number | undefined;
5096
- } & Partial<{
5097
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5098
- }>;
5099
- } & {
5100
- headers: {
5101
- "x-access-token"?: string | undefined;
5102
- } & Partial<{
5103
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5104
- }>;
5105
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5106
- [x: string]: unknown;
5107
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5108
- [x: string]: unknown;
5109
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5110
- [x: string]: unknown;
5111
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5112
- [x: string]: unknown;
5113
- }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5114
- headers?: Partial<{
5115
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5116
- }>;
5117
- } & {
5118
- pathParameters: {
5119
- projectId: string;
5120
- };
5121
- } & {
5122
- queryParameters: {
5123
- limit?: number | undefined;
5124
- skip?: number | undefined;
5125
- page?: number | undefined;
5126
- } & Partial<{
5127
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5128
- }>;
5129
- } & {
5130
- headers: {
5131
- "x-access-token"?: string | undefined;
5132
- } & Partial<{
5133
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5134
- }>;
5135
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5136
- [x: string]: unknown;
5137
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5138
- [x: string]: unknown;
5139
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5140
- [x: string]: unknown;
5141
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5142
- [x: string]: unknown;
5143
- }, 500, "application/json">>>;
5144
5325
  /** List Volumes belonging to a Project. */
5145
5326
  listVolumes: (request: {
5146
5327
  projectId: string;
@@ -28817,33 +28998,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
28817
28998
  } & Partial<{
28818
28999
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
28819
29000
  }>;
28820
- }, import("@mittwald/api-client-commons").Response<{
28821
- backupStorageUsageInBytes: number;
28822
- backupStorageUsageInBytesSetAt: string;
28823
- createdAt: string;
28824
- customerId: string;
28825
- customerMeta: {
28826
- id: string;
28827
- };
28828
- description: string;
28829
- disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
28830
- disabledAt?: string;
28831
- enabled: boolean;
28832
- features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
28833
- id: string;
28834
- imageRefId?: string;
28835
- isReady: boolean;
28836
- projectHostingId?: string;
28837
- readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
28838
- serverGroupId: string;
28839
- serverId?: string;
28840
- shortId: string;
28841
- status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
28842
- statusSetAt: string;
28843
- supportedFeatures: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
28844
- webStorageUsageInBytes: number;
28845
- webStorageUsageInBytesSetAt: string;
28846
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
29001
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
28847
29002
  [x: string]: unknown;
28848
29003
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
28849
29004
  [x: string]: unknown;
@@ -28872,33 +29027,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
28872
29027
  } & Partial<{
28873
29028
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
28874
29029
  }>;
28875
- }, import("@mittwald/api-client-commons").Response<{
28876
- backupStorageUsageInBytes: number;
28877
- backupStorageUsageInBytesSetAt: string;
28878
- createdAt: string;
28879
- customerId: string;
28880
- customerMeta: {
28881
- id: string;
28882
- };
28883
- description: string;
28884
- disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
28885
- disabledAt?: string;
28886
- enabled: boolean;
28887
- features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
28888
- id: string;
28889
- imageRefId?: string;
28890
- isReady: boolean;
28891
- projectHostingId?: string;
28892
- readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
28893
- serverGroupId: string;
28894
- serverId?: string;
28895
- shortId: string;
28896
- status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
28897
- statusSetAt: string;
28898
- supportedFeatures: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
28899
- webStorageUsageInBytes: number;
28900
- webStorageUsageInBytesSetAt: string;
28901
- }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
29030
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
28902
29031
  [x: string]: unknown;
28903
29032
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
28904
29033
  [x: string]: unknown;
@@ -29487,6 +29616,85 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
29487
29616
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
29488
29617
  [x: string]: unknown;
29489
29618
  }, 429, "application/json">>>;
29619
+ /** List Projects belonging to a Customer. */
29620
+ listCustomerProjects: (request: {
29621
+ customerId: string;
29622
+ headers?: {
29623
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
29624
+ "x-access-token"?: string | undefined;
29625
+ } | undefined;
29626
+ queryParameters?: {
29627
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
29628
+ searchTerm?: string | undefined;
29629
+ limit?: number | undefined;
29630
+ skip?: number | undefined;
29631
+ page?: number | undefined;
29632
+ sort?: "createdAt" | "description" | undefined;
29633
+ order?: "asc" | "desc" | undefined;
29634
+ } | undefined;
29635
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
29636
+ headers?: Partial<{
29637
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29638
+ }>;
29639
+ } & {
29640
+ pathParameters: {
29641
+ customerId: string;
29642
+ };
29643
+ } & {
29644
+ queryParameters: {
29645
+ searchTerm?: string | undefined;
29646
+ limit?: number | undefined;
29647
+ skip?: number | undefined;
29648
+ page?: number | undefined;
29649
+ sort?: "createdAt" | "description" | undefined;
29650
+ order?: "asc" | "desc" | undefined;
29651
+ } & Partial<{
29652
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29653
+ }>;
29654
+ } & {
29655
+ headers: {
29656
+ "x-access-token"?: string | undefined;
29657
+ } & Partial<{
29658
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29659
+ }>;
29660
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
29661
+ [x: string]: unknown;
29662
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
29663
+ [x: string]: unknown;
29664
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29665
+ [x: string]: unknown;
29666
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
29667
+ headers?: Partial<{
29668
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29669
+ }>;
29670
+ } & {
29671
+ pathParameters: {
29672
+ customerId: string;
29673
+ };
29674
+ } & {
29675
+ queryParameters: {
29676
+ searchTerm?: string | undefined;
29677
+ limit?: number | undefined;
29678
+ skip?: number | undefined;
29679
+ page?: number | undefined;
29680
+ sort?: "createdAt" | "description" | undefined;
29681
+ order?: "asc" | "desc" | undefined;
29682
+ } & Partial<{
29683
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29684
+ }>;
29685
+ } & {
29686
+ headers: {
29687
+ "x-access-token"?: string | undefined;
29688
+ } & Partial<{
29689
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29690
+ }>;
29691
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
29692
+ [x: string]: unknown;
29693
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
29694
+ [x: string]: unknown;
29695
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29696
+ [x: string]: unknown;
29697
+ }, 429, "application/json">>>;
29490
29698
  };
29491
29699
  /** The filesystem API allows you to directly access the filesystem of your project. */
29492
29700
  readonly projectFileSystem: {
@@ -125,10 +125,16 @@ export declare const containerCallPullImageWebhookForService: OpenAPIOperation<R
125
125
  export declare const containerListRegistries: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
126
126
  /** Create a Registry. */
127
127
  export declare const containerCreateRegistry: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRegistries.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
128
+ /** List Stacks belonging to a Project. */
129
+ export declare const containerListStacks: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
130
+ /** Create a Stack. */
131
+ export declare const containerCreateStack: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
128
132
  /** Get a Stack. */
129
133
  export declare const containerGetStack: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
130
134
  /** Declaratively create, update or delete Services or Volumes belonging to a Stack. */
131
135
  export declare const containerDeclareStack: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
136
+ /** Delete a Stack. */
137
+ export declare const containerDeleteStack: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
132
138
  /** Create, update or delete Services or Volumes belonging to a Stack. */
133
139
  export declare const containerUpdateStack: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Patch.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Patch.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
134
140
  /** Get a Registry. */
@@ -153,8 +159,6 @@ export declare const containerListSelfStacks: OpenAPIOperation<RequestType<Simpl
153
159
  export declare const containerListServices: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
154
160
  /** List Volumes belonging to a Stack. */
155
161
  export declare const containerListStackVolumes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
156
- /** List Stacks belonging to a Project. */
157
- export declare const containerListStacks: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStacks.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
158
162
  /** List Volumes belonging to a Project. */
159
163
  export declare const containerListVolumes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdVolumes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
160
164
  /** Pull image and recreate */
@@ -935,3 +939,5 @@ export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Sim
935
939
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
936
940
  /** Get the activities of a project. */
937
941
  export declare const projectListProjectActivities: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
942
+ /** List Projects belonging to a Customer. */
943
+ export declare const projectListCustomerProjects: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;