@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.
@@ -154,6 +154,98 @@ export declare namespace MittwaldAPIV2 {
154
154
  type RequestData = InferredRequestData<typeof descriptors.backupUpdateProjectBackupDescription>;
155
155
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupUpdateProjectBackupDescription, TStatus>;
156
156
  }
157
+ namespace ContainerListRegistries {
158
+ type RequestData = InferredRequestData<typeof descriptors.containerListRegistries>;
159
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListRegistries, TStatus>;
160
+ }
161
+ namespace ContainerCreateRegistry {
162
+ type RequestData = InferredRequestData<typeof descriptors.containerCreateRegistry>;
163
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerCreateRegistry, TStatus>;
164
+ }
165
+ namespace ContainerGetStack {
166
+ type RequestData = InferredRequestData<typeof descriptors.containerGetStack>;
167
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetStack, TStatus>;
168
+ }
169
+ namespace ContainerDeclareStack {
170
+ type RequestData = InferredRequestData<typeof descriptors.containerDeclareStack>;
171
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerDeclareStack, TStatus>;
172
+ }
173
+ namespace ContainerUpdateStack {
174
+ type RequestData = InferredRequestData<typeof descriptors.containerUpdateStack>;
175
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerUpdateStack, TStatus>;
176
+ }
177
+ namespace ContainerGetRegistry {
178
+ type RequestData = InferredRequestData<typeof descriptors.containerGetRegistry>;
179
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetRegistry, TStatus>;
180
+ }
181
+ namespace ContainerDeleteRegistry {
182
+ type RequestData = InferredRequestData<typeof descriptors.containerDeleteRegistry>;
183
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerDeleteRegistry, TStatus>;
184
+ }
185
+ namespace ContainerUpdateRegistry {
186
+ type RequestData = InferredRequestData<typeof descriptors.containerUpdateRegistry>;
187
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerUpdateRegistry, TStatus>;
188
+ }
189
+ namespace ContainerGetVolume {
190
+ type RequestData = InferredRequestData<typeof descriptors.containerGetVolume>;
191
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetVolume, TStatus>;
192
+ }
193
+ namespace ContainerDeleteVolume {
194
+ type RequestData = InferredRequestData<typeof descriptors.containerDeleteVolume>;
195
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerDeleteVolume, TStatus>;
196
+ }
197
+ namespace ContainerGetContainerImageConfig {
198
+ type RequestData = InferredRequestData<typeof descriptors.containerGetContainerImageConfig>;
199
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetContainerImageConfig, TStatus>;
200
+ }
201
+ namespace ContainerGetServiceLogs {
202
+ type RequestData = InferredRequestData<typeof descriptors.containerGetServiceLogs>;
203
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetServiceLogs, TStatus>;
204
+ }
205
+ namespace ContainerGetService {
206
+ type RequestData = InferredRequestData<typeof descriptors.containerGetService>;
207
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetService, TStatus>;
208
+ }
209
+ namespace ContainerListServices {
210
+ type RequestData = InferredRequestData<typeof descriptors.containerListServices>;
211
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListServices, TStatus>;
212
+ }
213
+ namespace ContainerListStacks {
214
+ type RequestData = InferredRequestData<typeof descriptors.containerListStacks>;
215
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListStacks, TStatus>;
216
+ }
217
+ namespace ContainerListVolumes {
218
+ type RequestData = InferredRequestData<typeof descriptors.containerListVolumes>;
219
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListVolumes, TStatus>;
220
+ }
221
+ namespace ContainerPullImageForService {
222
+ type RequestData = InferredRequestData<typeof descriptors.containerPullImageForService>;
223
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerPullImageForService, TStatus>;
224
+ }
225
+ namespace ContainerRecreateService {
226
+ type RequestData = InferredRequestData<typeof descriptors.containerRecreateService>;
227
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerRecreateService, TStatus>;
228
+ }
229
+ namespace ContainerRestartService {
230
+ type RequestData = InferredRequestData<typeof descriptors.containerRestartService>;
231
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerRestartService, TStatus>;
232
+ }
233
+ namespace ContainerStartService {
234
+ type RequestData = InferredRequestData<typeof descriptors.containerStartService>;
235
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerStartService, TStatus>;
236
+ }
237
+ namespace ContainerStopService {
238
+ type RequestData = InferredRequestData<typeof descriptors.containerStopService>;
239
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerStopService, TStatus>;
240
+ }
241
+ namespace ContainerValidateContainerRegistryUri {
242
+ type RequestData = InferredRequestData<typeof descriptors.containerValidateContainerRegistryUri>;
243
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerValidateContainerRegistryUri, TStatus>;
244
+ }
245
+ namespace ContainerValidateRegistryCredentials {
246
+ type RequestData = InferredRequestData<typeof descriptors.containerValidateRegistryCredentials>;
247
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerValidateRegistryCredentials, TStatus>;
248
+ }
157
249
  namespace ContractTerminateContractItem {
158
250
  type RequestData = InferredRequestData<typeof descriptors.contractTerminateContractItem>;
159
251
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractTerminateContractItem, TStatus>;
@@ -638,6 +730,10 @@ export declare namespace MittwaldAPIV2 {
638
730
  type RequestData = InferredRequestData<typeof descriptors.extensionAuthenticateWithSessionToken>;
639
731
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionAuthenticateWithSessionToken, TStatus>;
640
732
  }
733
+ namespace ExtensionChangeContext {
734
+ type RequestData = InferredRequestData<typeof descriptors.extensionChangeContext>;
735
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionChangeContext, TStatus>;
736
+ }
641
737
  namespace ExtensionConsentToExtensionScopes {
642
738
  type RequestData = InferredRequestData<typeof descriptors.extensionConsentToExtensionScopes>;
643
739
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionConsentToExtensionScopes, TStatus>;
@@ -730,6 +826,14 @@ export declare namespace MittwaldAPIV2 {
730
826
  type RequestData = InferredRequestData<typeof descriptors.extensionRemoveAsset>;
731
827
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRemoveAsset, TStatus>;
732
828
  }
829
+ namespace ExtensionRequestLogoUpload {
830
+ type RequestData = InferredRequestData<typeof descriptors.extensionRequestLogoUpload>;
831
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRequestLogoUpload, TStatus>;
832
+ }
833
+ namespace ExtensionRemoveLogo {
834
+ type RequestData = InferredRequestData<typeof descriptors.extensionRemoveLogo>;
835
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRemoveLogo, TStatus>;
836
+ }
733
837
  namespace ExtensionRequestAssetUpload {
734
838
  type RequestData = InferredRequestData<typeof descriptors.extensionRequestAssetUpload>;
735
839
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRequestAssetUpload, TStatus>;
@@ -738,10 +842,6 @@ export declare namespace MittwaldAPIV2 {
738
842
  type RequestData = InferredRequestData<typeof descriptors.extensionRequestExtensionVerification>;
739
843
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRequestExtensionVerification, TStatus>;
740
844
  }
741
- namespace ExtensionRequestLogoUpload {
742
- type RequestData = InferredRequestData<typeof descriptors.extensionRequestLogoUpload>;
743
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRequestLogoUpload, TStatus>;
744
- }
745
845
  namespace ExtensionSetExtensionPublishedState {
746
846
  type RequestData = InferredRequestData<typeof descriptors.extensionSetExtensionPublishedState>;
747
847
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionSetExtensionPublishedState, TStatus>;
@@ -1398,18 +1498,6 @@ export declare namespace MittwaldAPIV2 {
1398
1498
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1399
1499
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1400
1500
  }
1401
- namespace CustomerGetOpenAgencyVerification {
1402
- type RequestData = InferredRequestData<typeof descriptors.customerGetOpenAgencyVerification>;
1403
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerGetOpenAgencyVerification, TStatus>;
1404
- }
1405
- namespace CustomerCreateAgencyVerification {
1406
- type RequestData = InferredRequestData<typeof descriptors.customerCreateAgencyVerification>;
1407
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerCreateAgencyVerification, TStatus>;
1408
- }
1409
- namespace CustomerAbortAgencyVerification {
1410
- type RequestData = InferredRequestData<typeof descriptors.customerAbortAgencyVerification>;
1411
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerAbortAgencyVerification, TStatus>;
1412
- }
1413
1501
  }
1414
1502
  namespace Components {
1415
1503
  namespace Schemas {
@@ -1685,6 +1773,227 @@ export declare namespace MittwaldAPIV2 {
1685
1773
  ttl?: string;
1686
1774
  updatedAt?: string;
1687
1775
  }
1776
+ interface ContainerCreateRegistry {
1777
+ credentials?: MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials;
1778
+ description: string;
1779
+ uri: string;
1780
+ }
1781
+ interface ContainerContainerImageConfig {
1782
+ /**
1783
+ * Command of the container image.
1784
+ */
1785
+ command?: string[];
1786
+ /**
1787
+ * Entrypoint of the container image.
1788
+ */
1789
+ entrypoint?: string[];
1790
+ /**
1791
+ * List of environment variables the container image has.
1792
+ */
1793
+ env?: MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[];
1794
+ /**
1795
+ * List of exposed ports the container image has.
1796
+ */
1797
+ exposedPorts?: MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[];
1798
+ /**
1799
+ * Whether the image config has ai generated data.
1800
+ */
1801
+ hasAiGeneratedData: boolean;
1802
+ /**
1803
+ * Whether ai generation is available for the image reference.
1804
+ */
1805
+ isAiAvailable: boolean;
1806
+ /**
1807
+ * Whether the container user is root.
1808
+ */
1809
+ isUserRoot: boolean;
1810
+ /**
1811
+ * @deprecated
1812
+ * Deprecated, user will never be overwritten.
1813
+ */
1814
+ overwritingUser?: number;
1815
+ /**
1816
+ * The user the container image is running with.
1817
+ */
1818
+ user: string;
1819
+ /**
1820
+ * The user id the container image is running with.
1821
+ */
1822
+ userId: number;
1823
+ /**
1824
+ * List of volumes the container image has.
1825
+ */
1826
+ volumes?: MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigVolume[];
1827
+ }
1828
+ interface ContainerContainerImageConfigEnv {
1829
+ /**
1830
+ * The description of the env key.
1831
+ */
1832
+ description?: string;
1833
+ /**
1834
+ * Whether the env has been ai generated.
1835
+ */
1836
+ isAiGenerated: boolean;
1837
+ /**
1838
+ * Whether the env key is a sensitive field, e.g. password fields.
1839
+ */
1840
+ isSensitive?: boolean;
1841
+ /**
1842
+ * The env key.
1843
+ */
1844
+ key: string;
1845
+ /**
1846
+ * The env default value.
1847
+ */
1848
+ value?: string;
1849
+ }
1850
+ interface ContainerContainerImageConfigExposedPort {
1851
+ /**
1852
+ * The description of the exposed port.
1853
+ */
1854
+ description?: string;
1855
+ /**
1856
+ * Whether the port has been ai generated.
1857
+ */
1858
+ isAiGenerated: boolean;
1859
+ /**
1860
+ * The exposed port.
1861
+ */
1862
+ port: string;
1863
+ }
1864
+ interface ContainerContainerImageConfigVolume {
1865
+ /**
1866
+ * The description of the volume path.
1867
+ */
1868
+ description?: string;
1869
+ /**
1870
+ * Whether the volume has been ai generated.
1871
+ */
1872
+ isAiGenerated: boolean;
1873
+ /**
1874
+ * The volume path.
1875
+ */
1876
+ volume: string;
1877
+ }
1878
+ interface ContainerRegistry {
1879
+ credentials?: MittwaldAPIV2.Components.Schemas.ContainerRegistryCredentials;
1880
+ description: string;
1881
+ id: string;
1882
+ projectId: string;
1883
+ uri: string;
1884
+ }
1885
+ interface ContainerRegistryCredentials {
1886
+ /**
1887
+ * Your registry username.
1888
+ */
1889
+ username: string;
1890
+ /**
1891
+ * Status of the credentials.
1892
+ */
1893
+ valid: boolean;
1894
+ }
1895
+ interface ContainerServiceDeclareRequest {
1896
+ /**
1897
+ * Defaults to image config on empty
1898
+ */
1899
+ command?: string[];
1900
+ description: string;
1901
+ /**
1902
+ * Defaults to image config on empty
1903
+ */
1904
+ entrypoint?: string[];
1905
+ envs?: {
1906
+ [k: string]: string;
1907
+ };
1908
+ image: string;
1909
+ ports: string[];
1910
+ volumes?: string[];
1911
+ }
1912
+ interface ContainerServiceRequest {
1913
+ /**
1914
+ * Defaults to image config on empty
1915
+ */
1916
+ command?: string[];
1917
+ description?: string;
1918
+ /**
1919
+ * Defaults to image config on empty
1920
+ */
1921
+ entrypoint?: string[];
1922
+ envs?: {
1923
+ [k: string]: string;
1924
+ };
1925
+ image?: string;
1926
+ ports?: string[];
1927
+ volumes?: string[];
1928
+ }
1929
+ interface ContainerServiceResponse {
1930
+ deployedState: MittwaldAPIV2.Components.Schemas.ContainerServiceState;
1931
+ description: string;
1932
+ id: string;
1933
+ message?: string;
1934
+ pendingState: MittwaldAPIV2.Components.Schemas.ContainerServiceState;
1935
+ projectId: string;
1936
+ serviceName: string;
1937
+ shortId: string;
1938
+ stackId: string;
1939
+ status: MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
1940
+ }
1941
+ interface ContainerServiceState {
1942
+ command?: string[];
1943
+ entrypoint?: string[];
1944
+ envs?: {
1945
+ [k: string]: string;
1946
+ };
1947
+ image: string;
1948
+ imageDigest?: string;
1949
+ ports?: string[];
1950
+ volumes?: string[];
1951
+ }
1952
+ type ContainerServiceStatus = "running" | "stopped" | "restarting" | "error" | "creating" | "starting";
1953
+ interface ContainerSetRegistryCredentials {
1954
+ /**
1955
+ * Your registry password or access token.
1956
+ */
1957
+ password: string;
1958
+ /**
1959
+ * Your registry username, use 'oauth2accesstoken' for access token authentication.
1960
+ */
1961
+ username: string;
1962
+ }
1963
+ interface ContainerStackResponse {
1964
+ description: string;
1965
+ disabled: boolean;
1966
+ id: string;
1967
+ /**
1968
+ * Prefix for all service-names in this stack.
1969
+ */
1970
+ prefix: string;
1971
+ projectId: string;
1972
+ services?: MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[];
1973
+ volumes?: MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[];
1974
+ }
1975
+ interface ContainerUpdateRegistry {
1976
+ credentials?: MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials;
1977
+ description?: string;
1978
+ uri?: string;
1979
+ }
1980
+ interface ContainerVolumeDeclareRequest {
1981
+ name: string;
1982
+ }
1983
+ interface ContainerVolumeRequest {
1984
+ name?: string;
1985
+ }
1986
+ interface ContainerVolumeResponse {
1987
+ id: string;
1988
+ name: string;
1989
+ /**
1990
+ * Whether the Volume is attached to a Stack.
1991
+ */
1992
+ orphaned: boolean;
1993
+ stackId: string;
1994
+ storageUsageInBytes: number;
1995
+ storageUsageInBytesSetAt: string;
1996
+ }
1688
1997
  interface ContractAggregateReference {
1689
1998
  aggregate: string;
1690
1999
  domain: string;
@@ -2133,6 +2442,7 @@ export declare namespace MittwaldAPIV2 {
2133
2442
  customerNumber: string;
2134
2443
  executingUserRoles?: MittwaldAPIV2.Components.Schemas.CustomerRole[];
2135
2444
  flags?: MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[];
2445
+ isAllowedToPlaceOrders?: boolean;
2136
2446
  isBanned?: boolean;
2137
2447
  isInDefaultOfPayment?: boolean;
2138
2448
  levelOfUndeliverableDunningNotice?: "first" | "second";
@@ -2868,7 +3178,7 @@ export declare namespace MittwaldAPIV2 {
2868
3178
  }
2869
3179
  interface IngressPath {
2870
3180
  path: string;
2871
- target: MittwaldAPIV2.Components.Schemas.IngressTargetDirectory | MittwaldAPIV2.Components.Schemas.IngressTargetUrl | MittwaldAPIV2.Components.Schemas.IngressTargetInstallation | MittwaldAPIV2.Components.Schemas.IngressTargetUseDefaultPage | MittwaldAPIV2.Components.Schemas.IngressTargetContainer;
3181
+ target: MittwaldAPIV2.Components.Schemas.IngressTargetUrl | MittwaldAPIV2.Components.Schemas.IngressTargetInstallation | MittwaldAPIV2.Components.Schemas.IngressTargetUseDefaultPage | MittwaldAPIV2.Components.Schemas.IngressTargetContainer;
2872
3182
  }
2873
3183
  interface IngressTargetContainer {
2874
3184
  container: {
@@ -2879,13 +3189,6 @@ export declare namespace MittwaldAPIV2 {
2879
3189
  portProtocol: string;
2880
3190
  };
2881
3191
  }
2882
- interface IngressTargetDirectory {
2883
- /**
2884
- * @deprecated
2885
- * This property is deprecated. It will only be supported until the end of march. Please use installationId instead.
2886
- */
2887
- directory: string;
2888
- }
2889
3192
  interface IngressTargetInstallation {
2890
3193
  installationId: string;
2891
3194
  }
@@ -4229,13 +4532,6 @@ export declare namespace MittwaldAPIV2 {
4229
4532
  name: string;
4230
4533
  value: string;
4231
4534
  }
4232
- interface AgencyprofileVerificationRequest {
4233
- customerId: string;
4234
- domain: string;
4235
- email: string;
4236
- requestedOn: string;
4237
- verificationId: string;
4238
- }
4239
4535
  interface CommonsAddress {
4240
4536
  street: string;
4241
4537
  houseNumber: string;
@@ -4890,6 +5186,8 @@ export declare namespace MittwaldAPIV2 {
4890
5186
  type Path = {};
4891
5187
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
4892
5188
  type Query = {
5189
+ appIds?: string[];
5190
+ searchTerm?: string;
4893
5191
  limit?: number;
4894
5192
  skip?: number;
4895
5193
  page?: number;
@@ -4927,6 +5225,8 @@ export declare namespace MittwaldAPIV2 {
4927
5225
  };
4928
5226
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
4929
5227
  type Query = {
5228
+ appIds?: string[];
5229
+ searchTerm?: string;
4930
5230
  limit?: number;
4931
5231
  skip?: number;
4932
5232
  page?: number;
@@ -5843,14 +6143,1473 @@ export declare namespace MittwaldAPIV2 {
5843
6143
  type Empty = unknown;
5844
6144
  }
5845
6145
  }
5846
- namespace $403 {
6146
+ namespace $403 {
6147
+ namespace Content {
6148
+ interface ApplicationJson {
6149
+ [k: string]: unknown;
6150
+ }
6151
+ }
6152
+ }
6153
+ namespace $404 {
6154
+ namespace Content {
6155
+ interface ApplicationJson {
6156
+ [k: string]: unknown;
6157
+ }
6158
+ }
6159
+ }
6160
+ namespace $429 {
6161
+ namespace Content {
6162
+ interface ApplicationJson {
6163
+ [k: string]: unknown;
6164
+ }
6165
+ }
6166
+ }
6167
+ namespace Default {
6168
+ namespace Content {
6169
+ interface ApplicationJson {
6170
+ [k: string]: unknown;
6171
+ }
6172
+ }
6173
+ }
6174
+ }
6175
+ }
6176
+ namespace Patch {
6177
+ namespace Parameters {
6178
+ type Path = {
6179
+ projectBackupScheduleId: string;
6180
+ };
6181
+ interface RequestBody {
6182
+ /**
6183
+ * Description of the ProjectBackupSchedule. Note that the description of isSystemBackup true items cannot be changed.
6184
+ */
6185
+ description?: string;
6186
+ /**
6187
+ * Execution schedule in crontab notation. Note that the schedule of isSystemBackup true items must be daily once.
6188
+ */
6189
+ schedule?: string;
6190
+ /**
6191
+ * TTL of the ProjectBackupSchedule as time string.
6192
+ */
6193
+ ttl?: string;
6194
+ }
6195
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6196
+ type Query = {};
6197
+ }
6198
+ namespace Responses {
6199
+ namespace $204 {
6200
+ namespace Content {
6201
+ type Empty = unknown;
6202
+ }
6203
+ }
6204
+ namespace $400 {
6205
+ namespace Content {
6206
+ interface ApplicationJson {
6207
+ [k: string]: unknown;
6208
+ }
6209
+ }
6210
+ }
6211
+ namespace $404 {
6212
+ namespace Content {
6213
+ interface ApplicationJson {
6214
+ [k: string]: unknown;
6215
+ }
6216
+ }
6217
+ }
6218
+ namespace $412 {
6219
+ namespace Content {
6220
+ interface ApplicationJson {
6221
+ [k: string]: unknown;
6222
+ }
6223
+ }
6224
+ }
6225
+ namespace $429 {
6226
+ namespace Content {
6227
+ interface ApplicationJson {
6228
+ [k: string]: unknown;
6229
+ }
6230
+ }
6231
+ }
6232
+ namespace Default {
6233
+ namespace Content {
6234
+ interface ApplicationJson {
6235
+ [k: string]: unknown;
6236
+ }
6237
+ }
6238
+ }
6239
+ }
6240
+ }
6241
+ }
6242
+ namespace V2ProjectBackupsProjectBackupId {
6243
+ namespace Get {
6244
+ namespace Parameters {
6245
+ type Path = {
6246
+ projectBackupId: string;
6247
+ };
6248
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6249
+ type Query = {};
6250
+ }
6251
+ namespace Responses {
6252
+ namespace $200 {
6253
+ namespace Content {
6254
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.BackupProjectBackup;
6255
+ }
6256
+ }
6257
+ namespace $403 {
6258
+ namespace Content {
6259
+ interface ApplicationJson {
6260
+ [k: string]: unknown;
6261
+ }
6262
+ }
6263
+ }
6264
+ namespace $404 {
6265
+ namespace Content {
6266
+ interface ApplicationJson {
6267
+ [k: string]: unknown;
6268
+ }
6269
+ }
6270
+ }
6271
+ namespace $429 {
6272
+ namespace Content {
6273
+ interface ApplicationJson {
6274
+ [k: string]: unknown;
6275
+ }
6276
+ }
6277
+ }
6278
+ namespace Default {
6279
+ namespace Content {
6280
+ interface ApplicationJson {
6281
+ [k: string]: unknown;
6282
+ }
6283
+ }
6284
+ }
6285
+ }
6286
+ }
6287
+ namespace Delete {
6288
+ namespace Parameters {
6289
+ type Path = {
6290
+ projectBackupId: string;
6291
+ };
6292
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6293
+ type Query = {};
6294
+ }
6295
+ namespace Responses {
6296
+ namespace $204 {
6297
+ namespace Content {
6298
+ type Empty = unknown;
6299
+ }
6300
+ }
6301
+ namespace $403 {
6302
+ namespace Content {
6303
+ interface ApplicationJson {
6304
+ [k: string]: unknown;
6305
+ }
6306
+ }
6307
+ }
6308
+ namespace $404 {
6309
+ namespace Content {
6310
+ interface ApplicationJson {
6311
+ [k: string]: unknown;
6312
+ }
6313
+ }
6314
+ }
6315
+ namespace $429 {
6316
+ namespace Content {
6317
+ interface ApplicationJson {
6318
+ [k: string]: unknown;
6319
+ }
6320
+ }
6321
+ }
6322
+ namespace Default {
6323
+ namespace Content {
6324
+ interface ApplicationJson {
6325
+ [k: string]: unknown;
6326
+ }
6327
+ }
6328
+ }
6329
+ }
6330
+ }
6331
+ }
6332
+ namespace V2ProjectBackupsProjectBackupIdDescription {
6333
+ namespace Patch {
6334
+ namespace Parameters {
6335
+ type Path = {
6336
+ projectBackupId: string;
6337
+ };
6338
+ interface RequestBody {
6339
+ /**
6340
+ * Description of the ProjectBackup.
6341
+ */
6342
+ description?: string;
6343
+ }
6344
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6345
+ type Query = {};
6346
+ }
6347
+ namespace Responses {
6348
+ namespace $204 {
6349
+ namespace Content {
6350
+ type Empty = unknown;
6351
+ }
6352
+ }
6353
+ namespace $400 {
6354
+ namespace Content {
6355
+ interface ApplicationJson {
6356
+ [k: string]: unknown;
6357
+ }
6358
+ }
6359
+ }
6360
+ namespace $403 {
6361
+ namespace Content {
6362
+ interface ApplicationJson {
6363
+ [k: string]: unknown;
6364
+ }
6365
+ }
6366
+ }
6367
+ namespace $404 {
6368
+ namespace Content {
6369
+ interface ApplicationJson {
6370
+ [k: string]: unknown;
6371
+ }
6372
+ }
6373
+ }
6374
+ namespace $429 {
6375
+ namespace Content {
6376
+ interface ApplicationJson {
6377
+ [k: string]: unknown;
6378
+ }
6379
+ }
6380
+ }
6381
+ namespace Default {
6382
+ namespace Content {
6383
+ interface ApplicationJson {
6384
+ [k: string]: unknown;
6385
+ }
6386
+ }
6387
+ }
6388
+ }
6389
+ }
6390
+ }
6391
+ namespace V2ProjectsProjectIdRegistries {
6392
+ namespace Get {
6393
+ namespace Parameters {
6394
+ type Path = {
6395
+ projectId: string;
6396
+ };
6397
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6398
+ type Query = {
6399
+ hasCredentials?: boolean;
6400
+ limit?: number;
6401
+ skip?: number;
6402
+ };
6403
+ }
6404
+ namespace Responses {
6405
+ namespace $200 {
6406
+ namespace Content {
6407
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerRegistry[];
6408
+ }
6409
+ }
6410
+ namespace $400 {
6411
+ namespace Content {
6412
+ interface ApplicationJson {
6413
+ [k: string]: unknown;
6414
+ }
6415
+ }
6416
+ }
6417
+ namespace $403 {
6418
+ namespace Content {
6419
+ interface ApplicationJson {
6420
+ [k: string]: unknown;
6421
+ }
6422
+ }
6423
+ }
6424
+ namespace $429 {
6425
+ namespace Content {
6426
+ interface ApplicationJson {
6427
+ [k: string]: unknown;
6428
+ }
6429
+ }
6430
+ }
6431
+ namespace $500 {
6432
+ namespace Content {
6433
+ interface ApplicationJson {
6434
+ [k: string]: unknown;
6435
+ }
6436
+ }
6437
+ }
6438
+ namespace Default {
6439
+ namespace Content {
6440
+ interface ApplicationJson {
6441
+ [k: string]: unknown;
6442
+ }
6443
+ }
6444
+ }
6445
+ }
6446
+ }
6447
+ namespace Post {
6448
+ namespace Parameters {
6449
+ type Path = {
6450
+ projectId: string;
6451
+ };
6452
+ type RequestBody = MittwaldAPIV2.Components.Schemas.ContainerCreateRegistry;
6453
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6454
+ type Query = {};
6455
+ }
6456
+ namespace Responses {
6457
+ namespace $201 {
6458
+ namespace Content {
6459
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerRegistry;
6460
+ }
6461
+ }
6462
+ namespace $400 {
6463
+ namespace Content {
6464
+ interface ApplicationJson {
6465
+ [k: string]: unknown;
6466
+ }
6467
+ }
6468
+ }
6469
+ namespace $403 {
6470
+ namespace Content {
6471
+ interface ApplicationJson {
6472
+ [k: string]: unknown;
6473
+ }
6474
+ }
6475
+ }
6476
+ namespace $404 {
6477
+ namespace Content {
6478
+ interface ApplicationJson {
6479
+ [k: string]: unknown;
6480
+ }
6481
+ }
6482
+ }
6483
+ namespace $409 {
6484
+ namespace Content {
6485
+ interface ApplicationJson {
6486
+ [k: string]: unknown;
6487
+ }
6488
+ }
6489
+ }
6490
+ namespace $412 {
6491
+ namespace Content {
6492
+ interface ApplicationJson {
6493
+ [k: string]: unknown;
6494
+ }
6495
+ }
6496
+ }
6497
+ namespace $429 {
6498
+ namespace Content {
6499
+ interface ApplicationJson {
6500
+ [k: string]: unknown;
6501
+ }
6502
+ }
6503
+ }
6504
+ namespace $500 {
6505
+ namespace Content {
6506
+ interface ApplicationJson {
6507
+ [k: string]: unknown;
6508
+ }
6509
+ }
6510
+ }
6511
+ namespace Default {
6512
+ namespace Content {
6513
+ interface ApplicationJson {
6514
+ [k: string]: unknown;
6515
+ }
6516
+ }
6517
+ }
6518
+ }
6519
+ }
6520
+ }
6521
+ namespace V2StacksStackId {
6522
+ namespace Get {
6523
+ namespace Parameters {
6524
+ type Path = {
6525
+ stackId: string;
6526
+ };
6527
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6528
+ type Query = {};
6529
+ }
6530
+ namespace Responses {
6531
+ namespace $200 {
6532
+ namespace Content {
6533
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerStackResponse;
6534
+ }
6535
+ }
6536
+ namespace $400 {
6537
+ namespace Content {
6538
+ interface ApplicationJson {
6539
+ [k: string]: unknown;
6540
+ }
6541
+ }
6542
+ }
6543
+ namespace $403 {
6544
+ namespace Content {
6545
+ interface ApplicationJson {
6546
+ [k: string]: unknown;
6547
+ }
6548
+ }
6549
+ }
6550
+ namespace $429 {
6551
+ namespace Content {
6552
+ interface ApplicationJson {
6553
+ [k: string]: unknown;
6554
+ }
6555
+ }
6556
+ }
6557
+ namespace $500 {
6558
+ namespace Content {
6559
+ interface ApplicationJson {
6560
+ [k: string]: unknown;
6561
+ }
6562
+ }
6563
+ }
6564
+ namespace Default {
6565
+ namespace Content {
6566
+ interface ApplicationJson {
6567
+ [k: string]: unknown;
6568
+ }
6569
+ }
6570
+ }
6571
+ }
6572
+ }
6573
+ namespace Put {
6574
+ namespace Parameters {
6575
+ type Path = {
6576
+ stackId: string;
6577
+ };
6578
+ interface RequestBody {
6579
+ services?: {
6580
+ [k: string]: MittwaldAPIV2.Components.Schemas.ContainerServiceDeclareRequest;
6581
+ };
6582
+ /**
6583
+ * Volumes belonging to a Stack. Removing results in a detach, delete must be explicit.
6584
+ */
6585
+ volumes?: {
6586
+ [k: string]: MittwaldAPIV2.Components.Schemas.ContainerVolumeDeclareRequest;
6587
+ };
6588
+ }
6589
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6590
+ type Query = {};
6591
+ }
6592
+ namespace Responses {
6593
+ namespace $200 {
6594
+ namespace Content {
6595
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerStackResponse;
6596
+ }
6597
+ }
6598
+ namespace $400 {
6599
+ namespace Content {
6600
+ interface ApplicationJson {
6601
+ [k: string]: unknown;
6602
+ }
6603
+ }
6604
+ }
6605
+ namespace $403 {
6606
+ namespace Content {
6607
+ interface ApplicationJson {
6608
+ [k: string]: unknown;
6609
+ }
6610
+ }
6611
+ }
6612
+ namespace $412 {
6613
+ namespace Content {
6614
+ interface ApplicationJson {
6615
+ [k: string]: unknown;
6616
+ }
6617
+ }
6618
+ }
6619
+ namespace $429 {
6620
+ namespace Content {
6621
+ interface ApplicationJson {
6622
+ [k: string]: unknown;
6623
+ }
6624
+ }
6625
+ }
6626
+ namespace $500 {
6627
+ namespace Content {
6628
+ interface ApplicationJson {
6629
+ [k: string]: unknown;
6630
+ }
6631
+ }
6632
+ }
6633
+ namespace Default {
6634
+ namespace Content {
6635
+ interface ApplicationJson {
6636
+ [k: string]: unknown;
6637
+ }
6638
+ }
6639
+ }
6640
+ }
6641
+ }
6642
+ namespace Patch {
6643
+ namespace Parameters {
6644
+ type Path = {
6645
+ stackId: string;
6646
+ };
6647
+ interface RequestBody {
6648
+ services?: {
6649
+ [k: string]: MittwaldAPIV2.Components.Schemas.ContainerServiceRequest;
6650
+ };
6651
+ /**
6652
+ * Volumes belonging to a Stack. Removing results in a detach, delete must be explicit.
6653
+ */
6654
+ volumes?: {
6655
+ [k: string]: MittwaldAPIV2.Components.Schemas.ContainerVolumeRequest;
6656
+ };
6657
+ }
6658
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6659
+ type Query = {};
6660
+ }
6661
+ namespace Responses {
6662
+ namespace $200 {
6663
+ namespace Content {
6664
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerStackResponse;
6665
+ }
6666
+ }
6667
+ namespace $400 {
6668
+ namespace Content {
6669
+ interface ApplicationJson {
6670
+ [k: string]: unknown;
6671
+ }
6672
+ }
6673
+ }
6674
+ namespace $403 {
6675
+ namespace Content {
6676
+ interface ApplicationJson {
6677
+ [k: string]: unknown;
6678
+ }
6679
+ }
6680
+ }
6681
+ namespace $412 {
6682
+ namespace Content {
6683
+ interface ApplicationJson {
6684
+ [k: string]: unknown;
6685
+ }
6686
+ }
6687
+ }
6688
+ namespace $429 {
6689
+ namespace Content {
6690
+ interface ApplicationJson {
6691
+ [k: string]: unknown;
6692
+ }
6693
+ }
6694
+ }
6695
+ namespace $500 {
6696
+ namespace Content {
6697
+ interface ApplicationJson {
6698
+ [k: string]: unknown;
6699
+ }
6700
+ }
6701
+ }
6702
+ namespace Default {
6703
+ namespace Content {
6704
+ interface ApplicationJson {
6705
+ [k: string]: unknown;
6706
+ }
6707
+ }
6708
+ }
6709
+ }
6710
+ }
6711
+ }
6712
+ namespace V2RegistriesRegistryId {
6713
+ namespace Get {
6714
+ namespace Parameters {
6715
+ type Path = {
6716
+ registryId: string;
6717
+ };
6718
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6719
+ type Query = {};
6720
+ }
6721
+ namespace Responses {
6722
+ namespace $200 {
6723
+ namespace Content {
6724
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerRegistry;
6725
+ }
6726
+ }
6727
+ namespace $400 {
6728
+ namespace Content {
6729
+ interface ApplicationJson {
6730
+ [k: string]: unknown;
6731
+ }
6732
+ }
6733
+ }
6734
+ namespace $403 {
6735
+ namespace Content {
6736
+ interface ApplicationJson {
6737
+ [k: string]: unknown;
6738
+ }
6739
+ }
6740
+ }
6741
+ namespace $429 {
6742
+ namespace Content {
6743
+ interface ApplicationJson {
6744
+ [k: string]: unknown;
6745
+ }
6746
+ }
6747
+ }
6748
+ namespace $500 {
6749
+ namespace Content {
6750
+ interface ApplicationJson {
6751
+ [k: string]: unknown;
6752
+ }
6753
+ }
6754
+ }
6755
+ namespace Default {
6756
+ namespace Content {
6757
+ interface ApplicationJson {
6758
+ [k: string]: unknown;
6759
+ }
6760
+ }
6761
+ }
6762
+ }
6763
+ }
6764
+ namespace Delete {
6765
+ namespace Parameters {
6766
+ type Path = {
6767
+ registryId: string;
6768
+ };
6769
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6770
+ type Query = {};
6771
+ }
6772
+ namespace Responses {
6773
+ namespace $204 {
6774
+ namespace Content {
6775
+ type Empty = unknown;
6776
+ }
6777
+ }
6778
+ namespace $400 {
6779
+ namespace Content {
6780
+ interface ApplicationJson {
6781
+ [k: string]: unknown;
6782
+ }
6783
+ }
6784
+ }
6785
+ namespace $403 {
6786
+ namespace Content {
6787
+ interface ApplicationJson {
6788
+ [k: string]: unknown;
6789
+ }
6790
+ }
6791
+ }
6792
+ namespace $404 {
6793
+ namespace Content {
6794
+ interface ApplicationJson {
6795
+ [k: string]: unknown;
6796
+ }
6797
+ }
6798
+ }
6799
+ namespace $429 {
6800
+ namespace Content {
6801
+ interface ApplicationJson {
6802
+ [k: string]: unknown;
6803
+ }
6804
+ }
6805
+ }
6806
+ namespace $500 {
6807
+ namespace Content {
6808
+ interface ApplicationJson {
6809
+ [k: string]: unknown;
6810
+ }
6811
+ }
6812
+ }
6813
+ namespace Default {
6814
+ namespace Content {
6815
+ interface ApplicationJson {
6816
+ [k: string]: unknown;
6817
+ }
6818
+ }
6819
+ }
6820
+ }
6821
+ }
6822
+ namespace Patch {
6823
+ namespace Parameters {
6824
+ type Path = {
6825
+ registryId: string;
6826
+ };
6827
+ type RequestBody = MittwaldAPIV2.Components.Schemas.ContainerUpdateRegistry;
6828
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6829
+ type Query = {};
6830
+ }
6831
+ namespace Responses {
6832
+ namespace $204 {
6833
+ namespace Content {
6834
+ type Empty = unknown;
6835
+ }
6836
+ }
6837
+ namespace $400 {
6838
+ namespace Content {
6839
+ interface ApplicationJson {
6840
+ [k: string]: unknown;
6841
+ }
6842
+ }
6843
+ }
6844
+ namespace $403 {
6845
+ namespace Content {
6846
+ interface ApplicationJson {
6847
+ [k: string]: unknown;
6848
+ }
6849
+ }
6850
+ }
6851
+ namespace $409 {
6852
+ namespace Content {
6853
+ interface ApplicationJson {
6854
+ [k: string]: unknown;
6855
+ }
6856
+ }
6857
+ }
6858
+ namespace $412 {
6859
+ namespace Content {
6860
+ interface ApplicationJson {
6861
+ [k: string]: unknown;
6862
+ }
6863
+ }
6864
+ }
6865
+ namespace $429 {
6866
+ namespace Content {
6867
+ interface ApplicationJson {
6868
+ [k: string]: unknown;
6869
+ }
6870
+ }
6871
+ }
6872
+ namespace $500 {
6873
+ namespace Content {
6874
+ interface ApplicationJson {
6875
+ [k: string]: unknown;
6876
+ }
6877
+ }
6878
+ }
6879
+ namespace Default {
6880
+ namespace Content {
6881
+ interface ApplicationJson {
6882
+ [k: string]: unknown;
6883
+ }
6884
+ }
6885
+ }
6886
+ }
6887
+ }
6888
+ }
6889
+ namespace V2StacksStackIdVolumesVolumeId {
6890
+ namespace Get {
6891
+ namespace Parameters {
6892
+ type Path = {
6893
+ stackId: string;
6894
+ volumeId: string;
6895
+ };
6896
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6897
+ type Query = {};
6898
+ }
6899
+ namespace Responses {
6900
+ namespace $200 {
6901
+ namespace Content {
6902
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse;
6903
+ }
6904
+ }
6905
+ namespace $400 {
6906
+ namespace Content {
6907
+ interface ApplicationJson {
6908
+ [k: string]: unknown;
6909
+ }
6910
+ }
6911
+ }
6912
+ namespace $403 {
6913
+ namespace Content {
6914
+ interface ApplicationJson {
6915
+ [k: string]: unknown;
6916
+ }
6917
+ }
6918
+ }
6919
+ namespace $404 {
6920
+ namespace Content {
6921
+ interface ApplicationJson {
6922
+ [k: string]: unknown;
6923
+ }
6924
+ }
6925
+ }
6926
+ namespace $412 {
6927
+ namespace Content {
6928
+ interface ApplicationJson {
6929
+ [k: string]: unknown;
6930
+ }
6931
+ }
6932
+ }
6933
+ namespace $429 {
6934
+ namespace Content {
6935
+ interface ApplicationJson {
6936
+ [k: string]: unknown;
6937
+ }
6938
+ }
6939
+ }
6940
+ namespace $500 {
6941
+ namespace Content {
6942
+ interface ApplicationJson {
6943
+ [k: string]: unknown;
6944
+ }
6945
+ }
6946
+ }
6947
+ namespace Default {
6948
+ namespace Content {
6949
+ interface ApplicationJson {
6950
+ [k: string]: unknown;
6951
+ }
6952
+ }
6953
+ }
6954
+ }
6955
+ }
6956
+ namespace Delete {
6957
+ namespace Parameters {
6958
+ type Path = {
6959
+ stackId: string;
6960
+ volumeId: string;
6961
+ };
6962
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6963
+ type Query = {};
6964
+ }
6965
+ namespace Responses {
6966
+ namespace $204 {
6967
+ namespace Content {
6968
+ type Empty = unknown;
6969
+ }
6970
+ }
6971
+ namespace $400 {
6972
+ namespace Content {
6973
+ interface ApplicationJson {
6974
+ [k: string]: unknown;
6975
+ }
6976
+ }
6977
+ }
6978
+ namespace $403 {
6979
+ namespace Content {
6980
+ interface ApplicationJson {
6981
+ [k: string]: unknown;
6982
+ }
6983
+ }
6984
+ }
6985
+ namespace $412 {
6986
+ namespace Content {
6987
+ interface ApplicationJson {
6988
+ [k: string]: unknown;
6989
+ }
6990
+ }
6991
+ }
6992
+ namespace $429 {
6993
+ namespace Content {
6994
+ interface ApplicationJson {
6995
+ [k: string]: unknown;
6996
+ }
6997
+ }
6998
+ }
6999
+ namespace $500 {
7000
+ namespace Content {
7001
+ interface ApplicationJson {
7002
+ [k: string]: unknown;
7003
+ }
7004
+ }
7005
+ }
7006
+ namespace Default {
7007
+ namespace Content {
7008
+ interface ApplicationJson {
7009
+ [k: string]: unknown;
7010
+ }
7011
+ }
7012
+ }
7013
+ }
7014
+ }
7015
+ }
7016
+ namespace V2ContainerImageConfig {
7017
+ namespace Get {
7018
+ namespace Parameters {
7019
+ type Path = {};
7020
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7021
+ type Query = {
7022
+ imageReference: string;
7023
+ useCredentialsForProjectId?: string;
7024
+ useCredentialsForRegistryId?: string;
7025
+ generateAiData?: boolean;
7026
+ };
7027
+ }
7028
+ namespace Responses {
7029
+ namespace $200 {
7030
+ namespace Content {
7031
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfig;
7032
+ }
7033
+ }
7034
+ namespace $400 {
7035
+ namespace Content {
7036
+ interface ApplicationJson {
7037
+ [k: string]: unknown;
7038
+ }
7039
+ }
7040
+ }
7041
+ namespace $403 {
7042
+ namespace Content {
7043
+ interface ApplicationJson {
7044
+ [k: string]: unknown;
7045
+ }
7046
+ }
7047
+ }
7048
+ namespace $429 {
7049
+ namespace Content {
7050
+ interface ApplicationJson {
7051
+ [k: string]: unknown;
7052
+ }
7053
+ }
7054
+ }
7055
+ namespace $500 {
7056
+ namespace Content {
7057
+ interface ApplicationJson {
7058
+ [k: string]: unknown;
7059
+ }
7060
+ }
7061
+ }
7062
+ namespace Default {
7063
+ namespace Content {
7064
+ interface ApplicationJson {
7065
+ [k: string]: unknown;
7066
+ }
7067
+ }
7068
+ }
7069
+ }
7070
+ }
7071
+ }
7072
+ namespace V2StacksStackIdServicesServiceIdLogs {
7073
+ namespace Get {
7074
+ namespace Parameters {
7075
+ type Path = {
7076
+ stackId: string;
7077
+ serviceId: string;
7078
+ };
7079
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7080
+ type Query = {};
7081
+ }
7082
+ namespace Responses {
7083
+ namespace $200 {
7084
+ namespace Content {
7085
+ type TextPlain = string;
7086
+ }
7087
+ }
7088
+ namespace $403 {
7089
+ namespace Content {
7090
+ interface ApplicationJson {
7091
+ [k: string]: unknown;
7092
+ }
7093
+ }
7094
+ }
7095
+ namespace $404 {
7096
+ namespace Content {
7097
+ interface ApplicationJson {
7098
+ [k: string]: unknown;
7099
+ }
7100
+ }
7101
+ }
7102
+ namespace $429 {
7103
+ namespace Content {
7104
+ interface ApplicationJson {
7105
+ [k: string]: unknown;
7106
+ }
7107
+ }
7108
+ }
7109
+ namespace $500 {
7110
+ namespace Content {
7111
+ interface ApplicationJson {
7112
+ [k: string]: unknown;
7113
+ }
7114
+ }
7115
+ }
7116
+ namespace $503 {
7117
+ namespace Content {
7118
+ interface ApplicationJson {
7119
+ [k: string]: unknown;
7120
+ }
7121
+ }
7122
+ }
7123
+ namespace Default {
7124
+ namespace Content {
7125
+ interface ApplicationJson {
7126
+ [k: string]: unknown;
7127
+ }
7128
+ }
7129
+ }
7130
+ }
7131
+ }
7132
+ }
7133
+ namespace V2StacksStackIdServicesServiceId {
7134
+ namespace Get {
7135
+ namespace Parameters {
7136
+ type Path = {
7137
+ stackId: string;
7138
+ serviceId: string;
7139
+ };
7140
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7141
+ type Query = {};
7142
+ }
7143
+ namespace Responses {
7144
+ namespace $200 {
7145
+ namespace Content {
7146
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerServiceResponse;
7147
+ }
7148
+ }
7149
+ namespace $400 {
7150
+ namespace Content {
7151
+ interface ApplicationJson {
7152
+ [k: string]: unknown;
7153
+ }
7154
+ }
7155
+ }
7156
+ namespace $403 {
7157
+ namespace Content {
7158
+ interface ApplicationJson {
7159
+ [k: string]: unknown;
7160
+ }
7161
+ }
7162
+ }
7163
+ namespace $404 {
7164
+ namespace Content {
7165
+ interface ApplicationJson {
7166
+ [k: string]: unknown;
7167
+ }
7168
+ }
7169
+ }
7170
+ namespace $412 {
7171
+ namespace Content {
7172
+ interface ApplicationJson {
7173
+ [k: string]: unknown;
7174
+ }
7175
+ }
7176
+ }
7177
+ namespace $429 {
7178
+ namespace Content {
7179
+ interface ApplicationJson {
7180
+ [k: string]: unknown;
7181
+ }
7182
+ }
7183
+ }
7184
+ namespace $500 {
7185
+ namespace Content {
7186
+ interface ApplicationJson {
7187
+ [k: string]: unknown;
7188
+ }
7189
+ }
7190
+ }
7191
+ namespace Default {
7192
+ namespace Content {
7193
+ interface ApplicationJson {
7194
+ [k: string]: unknown;
7195
+ }
7196
+ }
7197
+ }
7198
+ }
7199
+ }
7200
+ }
7201
+ namespace V2ProjectsProjectIdServices {
7202
+ namespace Get {
7203
+ namespace Parameters {
7204
+ type Path = {
7205
+ projectId: string;
7206
+ };
7207
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7208
+ type Query = {
7209
+ stackId?: string;
7210
+ };
7211
+ }
7212
+ namespace Responses {
7213
+ namespace $200 {
7214
+ namespace Content {
7215
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[];
7216
+ }
7217
+ }
7218
+ namespace $400 {
7219
+ namespace Content {
7220
+ interface ApplicationJson {
7221
+ [k: string]: unknown;
7222
+ }
7223
+ }
7224
+ }
7225
+ namespace $403 {
7226
+ namespace Content {
7227
+ interface ApplicationJson {
7228
+ [k: string]: unknown;
7229
+ }
7230
+ }
7231
+ }
7232
+ namespace $412 {
7233
+ namespace Content {
7234
+ interface ApplicationJson {
7235
+ [k: string]: unknown;
7236
+ }
7237
+ }
7238
+ }
7239
+ namespace $429 {
7240
+ namespace Content {
7241
+ interface ApplicationJson {
7242
+ [k: string]: unknown;
7243
+ }
7244
+ }
7245
+ }
7246
+ namespace $500 {
7247
+ namespace Content {
7248
+ interface ApplicationJson {
7249
+ [k: string]: unknown;
7250
+ }
7251
+ }
7252
+ }
7253
+ namespace Default {
7254
+ namespace Content {
7255
+ interface ApplicationJson {
7256
+ [k: string]: unknown;
7257
+ }
7258
+ }
7259
+ }
7260
+ }
7261
+ }
7262
+ }
7263
+ namespace V2ProjectsProjectIdStacks {
7264
+ namespace Get {
7265
+ namespace Parameters {
7266
+ type Path = {
7267
+ projectId: string;
7268
+ };
7269
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7270
+ type Query = {};
7271
+ }
7272
+ namespace Responses {
7273
+ namespace $200 {
7274
+ namespace Content {
7275
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerStackResponse[];
7276
+ }
7277
+ }
7278
+ namespace $400 {
7279
+ namespace Content {
7280
+ interface ApplicationJson {
7281
+ [k: string]: unknown;
7282
+ }
7283
+ }
7284
+ }
7285
+ namespace $403 {
7286
+ namespace Content {
7287
+ interface ApplicationJson {
7288
+ [k: string]: unknown;
7289
+ }
7290
+ }
7291
+ }
7292
+ namespace $429 {
7293
+ namespace Content {
7294
+ interface ApplicationJson {
7295
+ [k: string]: unknown;
7296
+ }
7297
+ }
7298
+ }
7299
+ namespace $500 {
7300
+ namespace Content {
7301
+ interface ApplicationJson {
7302
+ [k: string]: unknown;
7303
+ }
7304
+ }
7305
+ }
7306
+ namespace Default {
7307
+ namespace Content {
7308
+ interface ApplicationJson {
7309
+ [k: string]: unknown;
7310
+ }
7311
+ }
7312
+ }
7313
+ }
7314
+ }
7315
+ }
7316
+ namespace V2ProjectsProjectIdVolumes {
7317
+ namespace Get {
7318
+ namespace Parameters {
7319
+ type Path = {
7320
+ projectId: string;
7321
+ };
7322
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7323
+ type Query = {
7324
+ stackId?: string;
7325
+ };
7326
+ }
7327
+ namespace Responses {
7328
+ namespace $200 {
7329
+ namespace Content {
7330
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[];
7331
+ }
7332
+ }
7333
+ namespace $400 {
7334
+ namespace Content {
7335
+ interface ApplicationJson {
7336
+ [k: string]: unknown;
7337
+ }
7338
+ }
7339
+ }
7340
+ namespace $403 {
7341
+ namespace Content {
7342
+ interface ApplicationJson {
7343
+ [k: string]: unknown;
7344
+ }
7345
+ }
7346
+ }
7347
+ namespace $429 {
7348
+ namespace Content {
7349
+ interface ApplicationJson {
7350
+ [k: string]: unknown;
7351
+ }
7352
+ }
7353
+ }
7354
+ namespace $500 {
7355
+ namespace Content {
7356
+ interface ApplicationJson {
7357
+ [k: string]: unknown;
7358
+ }
7359
+ }
7360
+ }
7361
+ namespace Default {
7362
+ namespace Content {
7363
+ interface ApplicationJson {
7364
+ [k: string]: unknown;
7365
+ }
7366
+ }
7367
+ }
7368
+ }
7369
+ }
7370
+ }
7371
+ namespace V2StacksStackIdServicesServiceIdActionsPull {
7372
+ namespace Post {
7373
+ namespace Parameters {
7374
+ type Path = {
7375
+ stackId: string;
7376
+ serviceId: string;
7377
+ };
7378
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7379
+ type Query = {};
7380
+ }
7381
+ namespace Responses {
7382
+ namespace $204 {
7383
+ namespace Content {
7384
+ type Empty = unknown;
7385
+ }
7386
+ }
7387
+ namespace $400 {
7388
+ namespace Content {
7389
+ interface ApplicationJson {
7390
+ [k: string]: unknown;
7391
+ }
7392
+ }
7393
+ }
7394
+ namespace $403 {
7395
+ namespace Content {
7396
+ interface ApplicationJson {
7397
+ [k: string]: unknown;
7398
+ }
7399
+ }
7400
+ }
7401
+ namespace $404 {
7402
+ namespace Content {
7403
+ interface ApplicationJson {
7404
+ [k: string]: unknown;
7405
+ }
7406
+ }
7407
+ }
7408
+ namespace $412 {
7409
+ namespace Content {
7410
+ interface ApplicationJson {
7411
+ [k: string]: unknown;
7412
+ }
7413
+ }
7414
+ }
7415
+ namespace $429 {
7416
+ namespace Content {
7417
+ interface ApplicationJson {
7418
+ [k: string]: unknown;
7419
+ }
7420
+ }
7421
+ }
7422
+ namespace $500 {
7423
+ namespace Content {
7424
+ interface ApplicationJson {
7425
+ [k: string]: unknown;
7426
+ }
7427
+ }
7428
+ }
7429
+ namespace Default {
7430
+ namespace Content {
7431
+ interface ApplicationJson {
7432
+ [k: string]: unknown;
7433
+ }
7434
+ }
7435
+ }
7436
+ }
7437
+ }
7438
+ }
7439
+ namespace V2StacksStackIdServicesServiceIdActionsRecreate {
7440
+ namespace Post {
7441
+ namespace Parameters {
7442
+ type Path = {
7443
+ stackId: string;
7444
+ serviceId: string;
7445
+ };
7446
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7447
+ type Query = {};
7448
+ }
7449
+ namespace Responses {
7450
+ namespace $204 {
7451
+ namespace Content {
7452
+ type Empty = unknown;
7453
+ }
7454
+ }
7455
+ namespace $400 {
7456
+ namespace Content {
7457
+ interface ApplicationJson {
7458
+ [k: string]: unknown;
7459
+ }
7460
+ }
7461
+ }
7462
+ namespace $403 {
7463
+ namespace Content {
7464
+ interface ApplicationJson {
7465
+ [k: string]: unknown;
7466
+ }
7467
+ }
7468
+ }
7469
+ namespace $404 {
7470
+ namespace Content {
7471
+ interface ApplicationJson {
7472
+ [k: string]: unknown;
7473
+ }
7474
+ }
7475
+ }
7476
+ namespace $412 {
7477
+ namespace Content {
7478
+ interface ApplicationJson {
7479
+ [k: string]: unknown;
7480
+ }
7481
+ }
7482
+ }
7483
+ namespace $429 {
7484
+ namespace Content {
7485
+ interface ApplicationJson {
7486
+ [k: string]: unknown;
7487
+ }
7488
+ }
7489
+ }
7490
+ namespace $500 {
7491
+ namespace Content {
7492
+ interface ApplicationJson {
7493
+ [k: string]: unknown;
7494
+ }
7495
+ }
7496
+ }
7497
+ namespace Default {
7498
+ namespace Content {
7499
+ interface ApplicationJson {
7500
+ [k: string]: unknown;
7501
+ }
7502
+ }
7503
+ }
7504
+ }
7505
+ }
7506
+ }
7507
+ namespace V2StacksStackIdServicesServiceIdActionsRestart {
7508
+ namespace Post {
7509
+ namespace Parameters {
7510
+ type Path = {
7511
+ stackId: string;
7512
+ serviceId: string;
7513
+ };
7514
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7515
+ type Query = {};
7516
+ }
7517
+ namespace Responses {
7518
+ namespace $204 {
7519
+ namespace Content {
7520
+ type Empty = unknown;
7521
+ }
7522
+ }
7523
+ namespace $400 {
7524
+ namespace Content {
7525
+ interface ApplicationJson {
7526
+ [k: string]: unknown;
7527
+ }
7528
+ }
7529
+ }
7530
+ namespace $403 {
7531
+ namespace Content {
7532
+ interface ApplicationJson {
7533
+ [k: string]: unknown;
7534
+ }
7535
+ }
7536
+ }
7537
+ namespace $404 {
7538
+ namespace Content {
7539
+ interface ApplicationJson {
7540
+ [k: string]: unknown;
7541
+ }
7542
+ }
7543
+ }
7544
+ namespace $412 {
7545
+ namespace Content {
7546
+ interface ApplicationJson {
7547
+ [k: string]: unknown;
7548
+ }
7549
+ }
7550
+ }
7551
+ namespace $429 {
7552
+ namespace Content {
7553
+ interface ApplicationJson {
7554
+ [k: string]: unknown;
7555
+ }
7556
+ }
7557
+ }
7558
+ namespace $500 {
7559
+ namespace Content {
7560
+ interface ApplicationJson {
7561
+ [k: string]: unknown;
7562
+ }
7563
+ }
7564
+ }
7565
+ namespace Default {
7566
+ namespace Content {
7567
+ interface ApplicationJson {
7568
+ [k: string]: unknown;
7569
+ }
7570
+ }
7571
+ }
7572
+ }
7573
+ }
7574
+ }
7575
+ namespace V2StacksStackIdServicesServiceIdActionsStart {
7576
+ namespace Post {
7577
+ namespace Parameters {
7578
+ type Path = {
7579
+ stackId: string;
7580
+ serviceId: string;
7581
+ };
7582
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7583
+ type Query = {};
7584
+ }
7585
+ namespace Responses {
7586
+ namespace $204 {
7587
+ namespace Content {
7588
+ type Empty = unknown;
7589
+ }
7590
+ }
7591
+ namespace $400 {
7592
+ namespace Content {
7593
+ interface ApplicationJson {
7594
+ [k: string]: unknown;
7595
+ }
7596
+ }
7597
+ }
7598
+ namespace $403 {
7599
+ namespace Content {
7600
+ interface ApplicationJson {
7601
+ [k: string]: unknown;
7602
+ }
7603
+ }
7604
+ }
7605
+ namespace $404 {
5847
7606
  namespace Content {
5848
7607
  interface ApplicationJson {
5849
7608
  [k: string]: unknown;
5850
7609
  }
5851
7610
  }
5852
7611
  }
5853
- namespace $404 {
7612
+ namespace $412 {
5854
7613
  namespace Content {
5855
7614
  interface ApplicationJson {
5856
7615
  [k: string]: unknown;
@@ -5864,6 +7623,13 @@ export declare namespace MittwaldAPIV2 {
5864
7623
  }
5865
7624
  }
5866
7625
  }
7626
+ namespace $500 {
7627
+ namespace Content {
7628
+ interface ApplicationJson {
7629
+ [k: string]: unknown;
7630
+ }
7631
+ }
7632
+ }
5867
7633
  namespace Default {
5868
7634
  namespace Content {
5869
7635
  interface ApplicationJson {
@@ -5873,25 +7639,14 @@ export declare namespace MittwaldAPIV2 {
5873
7639
  }
5874
7640
  }
5875
7641
  }
5876
- namespace Patch {
7642
+ }
7643
+ namespace V2StacksStackIdServicesServiceIdActionsStop {
7644
+ namespace Post {
5877
7645
  namespace Parameters {
5878
7646
  type Path = {
5879
- projectBackupScheduleId: string;
7647
+ stackId: string;
7648
+ serviceId: string;
5880
7649
  };
5881
- interface RequestBody {
5882
- /**
5883
- * Description of the ProjectBackupSchedule. Note that the description of isSystemBackup true items cannot be changed.
5884
- */
5885
- description?: string;
5886
- /**
5887
- * Execution schedule in crontab notation. Note that the schedule of isSystemBackup true items must be daily once.
5888
- */
5889
- schedule?: string;
5890
- /**
5891
- * TTL of the ProjectBackupSchedule as time string.
5892
- */
5893
- ttl?: string;
5894
- }
5895
7650
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
5896
7651
  type Query = {};
5897
7652
  }
@@ -5908,6 +7663,13 @@ export declare namespace MittwaldAPIV2 {
5908
7663
  }
5909
7664
  }
5910
7665
  }
7666
+ namespace $403 {
7667
+ namespace Content {
7668
+ interface ApplicationJson {
7669
+ [k: string]: unknown;
7670
+ }
7671
+ }
7672
+ }
5911
7673
  namespace $404 {
5912
7674
  namespace Content {
5913
7675
  interface ApplicationJson {
@@ -5929,6 +7691,13 @@ export declare namespace MittwaldAPIV2 {
5929
7691
  }
5930
7692
  }
5931
7693
  }
7694
+ namespace $500 {
7695
+ namespace Content {
7696
+ interface ApplicationJson {
7697
+ [k: string]: unknown;
7698
+ }
7699
+ }
7700
+ }
5932
7701
  namespace Default {
5933
7702
  namespace Content {
5934
7703
  interface ApplicationJson {
@@ -5939,80 +7708,63 @@ export declare namespace MittwaldAPIV2 {
5939
7708
  }
5940
7709
  }
5941
7710
  }
5942
- namespace V2ProjectBackupsProjectBackupId {
5943
- namespace Get {
7711
+ namespace V2ActionsValidateContainerRegistryUri {
7712
+ namespace Post {
5944
7713
  namespace Parameters {
5945
- type Path = {
5946
- projectBackupId: string;
5947
- };
7714
+ type Path = {};
7715
+ /**
7716
+ * The Registry URI to validate.
7717
+ */
7718
+ interface RequestBody {
7719
+ registryUri: string;
7720
+ }
5948
7721
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
5949
7722
  type Query = {};
5950
7723
  }
5951
7724
  namespace Responses {
5952
7725
  namespace $200 {
5953
- namespace Content {
5954
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.BackupProjectBackup;
5955
- }
5956
- }
5957
- namespace $403 {
5958
7726
  namespace Content {
5959
7727
  interface ApplicationJson {
5960
- [k: string]: unknown;
7728
+ valid: boolean;
5961
7729
  }
5962
7730
  }
5963
7731
  }
5964
- namespace $404 {
7732
+ namespace $400 {
5965
7733
  namespace Content {
5966
7734
  interface ApplicationJson {
5967
7735
  [k: string]: unknown;
5968
7736
  }
5969
7737
  }
5970
7738
  }
5971
- namespace $429 {
7739
+ namespace $403 {
5972
7740
  namespace Content {
5973
7741
  interface ApplicationJson {
5974
7742
  [k: string]: unknown;
5975
7743
  }
5976
7744
  }
5977
7745
  }
5978
- namespace Default {
7746
+ namespace $404 {
5979
7747
  namespace Content {
5980
7748
  interface ApplicationJson {
5981
7749
  [k: string]: unknown;
5982
7750
  }
5983
7751
  }
5984
7752
  }
5985
- }
5986
- }
5987
- namespace Delete {
5988
- namespace Parameters {
5989
- type Path = {
5990
- projectBackupId: string;
5991
- };
5992
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
5993
- type Query = {};
5994
- }
5995
- namespace Responses {
5996
- namespace $204 {
5997
- namespace Content {
5998
- type Empty = unknown;
5999
- }
6000
- }
6001
- namespace $403 {
7753
+ namespace $412 {
6002
7754
  namespace Content {
6003
7755
  interface ApplicationJson {
6004
7756
  [k: string]: unknown;
6005
7757
  }
6006
7758
  }
6007
7759
  }
6008
- namespace $404 {
7760
+ namespace $429 {
6009
7761
  namespace Content {
6010
7762
  interface ApplicationJson {
6011
7763
  [k: string]: unknown;
6012
7764
  }
6013
7765
  }
6014
7766
  }
6015
- namespace $429 {
7767
+ namespace $500 {
6016
7768
  namespace Content {
6017
7769
  interface ApplicationJson {
6018
7770
  [k: string]: unknown;
@@ -6029,25 +7781,21 @@ export declare namespace MittwaldAPIV2 {
6029
7781
  }
6030
7782
  }
6031
7783
  }
6032
- namespace V2ProjectBackupsProjectBackupIdDescription {
6033
- namespace Patch {
7784
+ namespace V2RegistriesRegistryIdActionsValidateCredentials {
7785
+ namespace Post {
6034
7786
  namespace Parameters {
6035
7787
  type Path = {
6036
- projectBackupId: string;
7788
+ registryId: string;
6037
7789
  };
6038
- interface RequestBody {
6039
- /**
6040
- * Description of the ProjectBackup.
6041
- */
6042
- description?: string;
6043
- }
6044
7790
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6045
7791
  type Query = {};
6046
7792
  }
6047
7793
  namespace Responses {
6048
- namespace $204 {
7794
+ namespace $200 {
6049
7795
  namespace Content {
6050
- type Empty = unknown;
7796
+ interface ApplicationJson {
7797
+ valid: boolean;
7798
+ }
6051
7799
  }
6052
7800
  }
6053
7801
  namespace $400 {
@@ -6071,6 +7819,13 @@ export declare namespace MittwaldAPIV2 {
6071
7819
  }
6072
7820
  }
6073
7821
  }
7822
+ namespace $412 {
7823
+ namespace Content {
7824
+ interface ApplicationJson {
7825
+ [k: string]: unknown;
7826
+ }
7827
+ }
7828
+ }
6074
7829
  namespace $429 {
6075
7830
  namespace Content {
6076
7831
  interface ApplicationJson {
@@ -6078,6 +7833,13 @@ export declare namespace MittwaldAPIV2 {
6078
7833
  }
6079
7834
  }
6080
7835
  }
7836
+ namespace $500 {
7837
+ namespace Content {
7838
+ interface ApplicationJson {
7839
+ [k: string]: unknown;
7840
+ }
7841
+ }
7842
+ }
6081
7843
  namespace Default {
6082
7844
  namespace Content {
6083
7845
  interface ApplicationJson {
@@ -11162,7 +12924,7 @@ export declare namespace MittwaldAPIV2 {
11162
12924
  type Query = {};
11163
12925
  }
11164
12926
  namespace Responses {
11165
- namespace $200 {
12927
+ namespace $204 {
11166
12928
  namespace Content {
11167
12929
  type Empty = unknown;
11168
12930
  }
@@ -12072,6 +13834,56 @@ export declare namespace MittwaldAPIV2 {
12072
13834
  }
12073
13835
  }
12074
13836
  }
13837
+ namespace V2ContributorsContributorIdExtensionsExtensionIdContext {
13838
+ namespace Put {
13839
+ namespace Parameters {
13840
+ type Path = {
13841
+ contributorId: string;
13842
+ extensionId: string;
13843
+ };
13844
+ interface RequestBody {
13845
+ context: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
13846
+ }
13847
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
13848
+ type Query = {};
13849
+ }
13850
+ namespace Responses {
13851
+ namespace $200 {
13852
+ namespace Content {
13853
+ interface ApplicationJson {
13854
+ /**
13855
+ * If this value is true the context will change asynchronously after removing all extension-instances of this extension.
13856
+ */
13857
+ cleaningUpInstances: boolean;
13858
+ currentContext: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
13859
+ id: string;
13860
+ }
13861
+ }
13862
+ }
13863
+ namespace $404 {
13864
+ namespace Content {
13865
+ interface ApplicationJson {
13866
+ [k: string]: unknown;
13867
+ }
13868
+ }
13869
+ }
13870
+ namespace $429 {
13871
+ namespace Content {
13872
+ interface ApplicationJson {
13873
+ [k: string]: unknown;
13874
+ }
13875
+ }
13876
+ }
13877
+ namespace Default {
13878
+ namespace Content {
13879
+ interface ApplicationJson {
13880
+ [k: string]: unknown;
13881
+ }
13882
+ }
13883
+ }
13884
+ }
13885
+ }
13886
+ }
12075
13887
  namespace V2ExtensionInstancesExtensionInstanceIdScopes {
12076
13888
  namespace Patch {
12077
13889
  namespace Parameters {
@@ -13017,7 +14829,117 @@ export declare namespace MittwaldAPIV2 {
13017
14829
  }
13018
14830
  }
13019
14831
  }
13020
- namespace $400 {
14832
+ namespace $400 {
14833
+ namespace Content {
14834
+ interface ApplicationJson {
14835
+ [k: string]: unknown;
14836
+ }
14837
+ }
14838
+ }
14839
+ namespace $429 {
14840
+ namespace Content {
14841
+ interface ApplicationJson {
14842
+ [k: string]: unknown;
14843
+ }
14844
+ }
14845
+ }
14846
+ namespace Default {
14847
+ namespace Content {
14848
+ interface ApplicationJson {
14849
+ [k: string]: unknown;
14850
+ }
14851
+ }
14852
+ }
14853
+ }
14854
+ }
14855
+ }
14856
+ namespace V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId {
14857
+ namespace Delete {
14858
+ namespace Parameters {
14859
+ type Path = {
14860
+ contributorId: string;
14861
+ extensionId: string;
14862
+ assetRefId: string;
14863
+ };
14864
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14865
+ type Query = {};
14866
+ }
14867
+ namespace Responses {
14868
+ namespace $204 {
14869
+ namespace Content {
14870
+ type Empty = unknown;
14871
+ }
14872
+ }
14873
+ namespace $404 {
14874
+ namespace Content {
14875
+ interface ApplicationJson {
14876
+ [k: string]: unknown;
14877
+ }
14878
+ }
14879
+ }
14880
+ namespace $429 {
14881
+ namespace Content {
14882
+ interface ApplicationJson {
14883
+ [k: string]: unknown;
14884
+ }
14885
+ }
14886
+ }
14887
+ namespace Default {
14888
+ namespace Content {
14889
+ interface ApplicationJson {
14890
+ [k: string]: unknown;
14891
+ }
14892
+ }
14893
+ }
14894
+ }
14895
+ }
14896
+ }
14897
+ namespace V2ContributorsContributorIdExtensionsExtensionIdLogo {
14898
+ namespace Post {
14899
+ namespace Parameters {
14900
+ type Path = {
14901
+ contributorId: string;
14902
+ extensionId: string;
14903
+ };
14904
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14905
+ type Query = {};
14906
+ }
14907
+ namespace Responses {
14908
+ namespace $200 {
14909
+ namespace Content {
14910
+ interface ApplicationJson {
14911
+ /**
14912
+ * Use the logoRefId as updload token at `/v2/files/{logoRefId}`.
14913
+ */
14914
+ logoRefId: string;
14915
+ /**
14916
+ * Constraints for the logo image upload.
14917
+ */
14918
+ rules: {
14919
+ extensions: string[];
14920
+ fileTypes: {
14921
+ extensions: string[];
14922
+ mimeType: string;
14923
+ }[];
14924
+ maxSizeInBytes: number;
14925
+ mimeTypes: string[];
14926
+ properties?: {
14927
+ imageDimensions?: {
14928
+ max: {
14929
+ height?: number;
14930
+ width?: number;
14931
+ };
14932
+ min: {
14933
+ height?: number;
14934
+ width?: number;
14935
+ };
14936
+ };
14937
+ };
14938
+ };
14939
+ }
14940
+ }
14941
+ }
14942
+ namespace $404 {
13021
14943
  namespace Content {
13022
14944
  interface ApplicationJson {
13023
14945
  [k: string]: unknown;
@@ -13040,14 +14962,11 @@ export declare namespace MittwaldAPIV2 {
13040
14962
  }
13041
14963
  }
13042
14964
  }
13043
- }
13044
- namespace V2ContributorsContributorIdExtensionsExtensionIdAssetsAssetRefId {
13045
14965
  namespace Delete {
13046
14966
  namespace Parameters {
13047
14967
  type Path = {
13048
14968
  contributorId: string;
13049
14969
  extensionId: string;
13050
- assetRefId: string;
13051
14970
  };
13052
14971
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
13053
14972
  type Query = {};
@@ -13209,75 +15128,6 @@ export declare namespace MittwaldAPIV2 {
13209
15128
  }
13210
15129
  }
13211
15130
  }
13212
- namespace V2ContributorsContributorIdExtensionsExtensionIdLogo {
13213
- namespace Post {
13214
- namespace Parameters {
13215
- type Path = {
13216
- contributorId: string;
13217
- extensionId: string;
13218
- };
13219
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
13220
- type Query = {};
13221
- }
13222
- namespace Responses {
13223
- namespace $200 {
13224
- namespace Content {
13225
- interface ApplicationJson {
13226
- /**
13227
- * Use the logoRefId as updload token at `/v2/files/{logoRefId}`.
13228
- */
13229
- logoRefId: string;
13230
- /**
13231
- * Constraints for the logo image upload.
13232
- */
13233
- rules: {
13234
- extensions: string[];
13235
- fileTypes: {
13236
- extensions: string[];
13237
- mimeType: string;
13238
- }[];
13239
- maxSizeInBytes: number;
13240
- mimeTypes: string[];
13241
- properties?: {
13242
- imageDimensions?: {
13243
- max: {
13244
- height?: number;
13245
- width?: number;
13246
- };
13247
- min: {
13248
- height?: number;
13249
- width?: number;
13250
- };
13251
- };
13252
- };
13253
- };
13254
- }
13255
- }
13256
- }
13257
- namespace $404 {
13258
- namespace Content {
13259
- interface ApplicationJson {
13260
- [k: string]: unknown;
13261
- }
13262
- }
13263
- }
13264
- namespace $429 {
13265
- namespace Content {
13266
- interface ApplicationJson {
13267
- [k: string]: unknown;
13268
- }
13269
- }
13270
- }
13271
- namespace Default {
13272
- namespace Content {
13273
- interface ApplicationJson {
13274
- [k: string]: unknown;
13275
- }
13276
- }
13277
- }
13278
- }
13279
- }
13280
- }
13281
15131
  namespace V2ContributorsContributorIdExtensionsExtensionIdPublished {
13282
15132
  namespace Put {
13283
15133
  namespace Parameters {
@@ -21406,171 +23256,5 @@ export declare namespace MittwaldAPIV2 {
21406
23256
  }
21407
23257
  }
21408
23258
  }
21409
- namespace V2CustomersCustomerIdAgencyVerification {
21410
- namespace Get {
21411
- namespace Parameters {
21412
- type Path = {
21413
- customerId: string;
21414
- };
21415
- type Header = {};
21416
- type Query = {};
21417
- }
21418
- namespace Responses {
21419
- namespace $200 {
21420
- namespace Content {
21421
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.AgencyprofileVerificationRequest;
21422
- }
21423
- }
21424
- namespace $400 {
21425
- namespace Content {
21426
- interface ApplicationJson {
21427
- [k: string]: unknown;
21428
- }
21429
- }
21430
- }
21431
- namespace $403 {
21432
- namespace Content {
21433
- interface ApplicationJson {
21434
- [k: string]: unknown;
21435
- }
21436
- }
21437
- }
21438
- namespace $404 {
21439
- namespace Content {
21440
- interface ApplicationJson {
21441
- [k: string]: unknown;
21442
- }
21443
- }
21444
- }
21445
- namespace $429 {
21446
- namespace Content {
21447
- interface ApplicationJson {
21448
- [k: string]: unknown;
21449
- }
21450
- }
21451
- }
21452
- namespace Default {
21453
- namespace Content {
21454
- interface ApplicationJson {
21455
- [k: string]: unknown;
21456
- }
21457
- }
21458
- }
21459
- }
21460
- }
21461
- namespace Post {
21462
- namespace Parameters {
21463
- type Path = {
21464
- customerId: string;
21465
- };
21466
- interface RequestBody {
21467
- domain?: string;
21468
- email?: string;
21469
- }
21470
- type Header = {};
21471
- type Query = {};
21472
- }
21473
- namespace Responses {
21474
- namespace $201 {
21475
- namespace Content {
21476
- interface ApplicationJson {
21477
- verificationId: string;
21478
- }
21479
- }
21480
- }
21481
- namespace $400 {
21482
- namespace Content {
21483
- interface ApplicationJson {
21484
- [k: string]: unknown;
21485
- }
21486
- }
21487
- }
21488
- namespace $403 {
21489
- namespace Content {
21490
- interface ApplicationJson {
21491
- [k: string]: unknown;
21492
- }
21493
- }
21494
- }
21495
- namespace $404 {
21496
- namespace Content {
21497
- interface ApplicationJson {
21498
- [k: string]: unknown;
21499
- }
21500
- }
21501
- }
21502
- namespace $429 {
21503
- namespace Content {
21504
- interface ApplicationJson {
21505
- [k: string]: unknown;
21506
- }
21507
- }
21508
- }
21509
- namespace Default {
21510
- namespace Content {
21511
- interface ApplicationJson {
21512
- [k: string]: unknown;
21513
- }
21514
- }
21515
- }
21516
- }
21517
- }
21518
- namespace Delete {
21519
- namespace Parameters {
21520
- type Path = {
21521
- customerId: string;
21522
- };
21523
- type Header = {};
21524
- type Query = {};
21525
- }
21526
- namespace Responses {
21527
- namespace $200 {
21528
- namespace Content {
21529
- interface ApplicationJson {
21530
- /**
21531
- * The ID of the verification
21532
- */
21533
- verificationId?: string;
21534
- }
21535
- }
21536
- }
21537
- namespace $400 {
21538
- namespace Content {
21539
- interface ApplicationJson {
21540
- [k: string]: unknown;
21541
- }
21542
- }
21543
- }
21544
- namespace $403 {
21545
- namespace Content {
21546
- interface ApplicationJson {
21547
- [k: string]: unknown;
21548
- }
21549
- }
21550
- }
21551
- namespace $404 {
21552
- namespace Content {
21553
- interface ApplicationJson {
21554
- [k: string]: unknown;
21555
- }
21556
- }
21557
- }
21558
- namespace $429 {
21559
- namespace Content {
21560
- interface ApplicationJson {
21561
- [k: string]: unknown;
21562
- }
21563
- }
21564
- }
21565
- namespace Default {
21566
- namespace Content {
21567
- interface ApplicationJson {
21568
- [k: string]: unknown;
21569
- }
21570
- }
21571
- }
21572
- }
21573
- }
21574
- }
21575
23259
  }
21576
23260
  }