@mittwald/api-client 0.0.0-development-e8f2771-20260612 → 0.0.0-development-559bf74-20260622

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.
@@ -290,10 +290,6 @@ export declare namespace MittwaldAPIV2 {
290
290
  type RequestData = InferredRequestData<typeof descriptors.containerDeleteVolume>;
291
291
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerDeleteVolume, TStatus>;
292
292
  }
293
- namespace ContainerGetContainerImageConfig {
294
- type RequestData = InferredRequestData<typeof descriptors.containerGetContainerImageConfig>;
295
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetContainerImageConfig, TStatus>;
296
- }
297
293
  namespace ContainerGetServiceLogs {
298
294
  type RequestData = InferredRequestData<typeof descriptors.containerGetServiceLogs>;
299
295
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetServiceLogs, TStatus>;
@@ -1330,6 +1326,10 @@ export declare namespace MittwaldAPIV2 {
1330
1326
  type RequestData = InferredRequestData<typeof descriptors.mailDisableMailArchive>;
1331
1327
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDisableMailArchive, TStatus>;
1332
1328
  }
1329
+ namespace MailGetMailRateLimit {
1330
+ type RequestData = InferredRequestData<typeof descriptors.mailGetMailRateLimit>;
1331
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailGetMailRateLimit, TStatus>;
1332
+ }
1333
1333
  namespace MailListBackupsForMailAddress {
1334
1334
  type RequestData = InferredRequestData<typeof descriptors.mailListBackupsForMailAddress>;
1335
1335
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListBackupsForMailAddress, TStatus>;
@@ -1338,6 +1338,10 @@ export declare namespace MittwaldAPIV2 {
1338
1338
  type RequestData = InferredRequestData<typeof descriptors.mailListMailAddressesForUser>;
1339
1339
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailAddressesForUser, TStatus>;
1340
1340
  }
1341
+ namespace MailListMailRateLimits {
1342
+ type RequestData = InferredRequestData<typeof descriptors.mailListMailRateLimits>;
1343
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailRateLimits, TStatus>;
1344
+ }
1341
1345
  namespace MailListProjectMailSettings {
1342
1346
  type RequestData = InferredRequestData<typeof descriptors.mailListProjectMailSettings>;
1343
1347
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListProjectMailSettings, TStatus>;
@@ -1918,6 +1922,22 @@ export declare namespace MittwaldAPIV2 {
1918
1922
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1919
1923
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1920
1924
  }
1925
+ namespace ContainerGetContainerImageConfig {
1926
+ type RequestData = InferredRequestData<typeof descriptors.containerGetContainerImageConfig>;
1927
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetContainerImageConfig, TStatus>;
1928
+ }
1929
+ namespace MailRequestMailAddressRateLimitChange {
1930
+ type RequestData = InferredRequestData<typeof descriptors.mailRequestMailAddressRateLimitChange>;
1931
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRequestMailAddressRateLimitChange, TStatus>;
1932
+ }
1933
+ namespace ProjectListProjectActivities {
1934
+ type RequestData = InferredRequestData<typeof descriptors.projectListProjectActivities>;
1935
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListProjectActivities, TStatus>;
1936
+ }
1937
+ namespace ProjectListCustomerProjects {
1938
+ type RequestData = InferredRequestData<typeof descriptors.projectListCustomerProjects>;
1939
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListCustomerProjects, TStatus>;
1940
+ }
1921
1941
  }
1922
1942
  namespace Components {
1923
1943
  namespace Schemas {
@@ -2705,6 +2725,7 @@ export declare namespace MittwaldAPIV2 {
2705
2725
  *
2706
2726
  */
2707
2727
  ports?: string[];
2728
+ restartPolicy?: string;
2708
2729
  /**
2709
2730
  * Volume mounts for this container. These items always follow the format `<volume>:<mountpoint>`. The `<volume>` may either be a named volume, or a file path in the (always present) project file system (which is shared among containers and managed apps within a project).
2710
2731
  *
@@ -2766,6 +2787,7 @@ export declare namespace MittwaldAPIV2 {
2766
2787
  *
2767
2788
  */
2768
2789
  ports?: string[];
2790
+ restartPolicy?: string;
2769
2791
  /**
2770
2792
  * Volume mounts for this container. These items always follow the format `<volume>:<mountpoint>`. The `<volume>` may either be a named volume, or a file path in the (always present) project file system (which is shared among containers and managed apps within a project).
2771
2793
  *
@@ -2807,6 +2829,7 @@ export declare namespace MittwaldAPIV2 {
2807
2829
  pendingState: MittwaldAPIV2.Components.Schemas.ContainerServiceState;
2808
2830
  projectId: string;
2809
2831
  requiresRecreate: boolean;
2832
+ restartPolicy?: "no" | "always" | "on-failure" | "unless-stopped";
2810
2833
  serviceName: string;
2811
2834
  /**
2812
2835
  * A short ID of the container. This is a unique identifier for the container within the project, and can be used to reference it in other API calls, or for SSH connections.
@@ -3950,10 +3973,7 @@ export declare namespace MittwaldAPIV2 {
3950
3973
  }
3951
3974
  type DomainmigrationDNSRecordType = "A" | "AAAA" | "TXT" | "MX" | "CNAME" | "SRV" | "CAA" | "NS";
3952
3975
  interface DomainmigrationDomainNotMigratableReasons {
3953
- insufficientState: boolean;
3954
- isPremiumDomain: boolean;
3955
- registrarNotSupported: boolean;
3956
- tldNotSupported: boolean;
3976
+ reasonCodes: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainNotMigratableReason[];
3957
3977
  }
3958
3978
  interface DomainmigrationMigratableDomain {
3959
3979
  hostname: string;
@@ -4606,6 +4626,7 @@ export declare namespace MittwaldAPIV2 {
4606
4626
  id: string;
4607
4627
  ips: {
4608
4628
  v4: string[];
4629
+ v6: string[];
4609
4630
  };
4610
4631
  /**
4611
4632
  * Whether this ingress is the default ingress or not. A default ingress is automatically created, it cannot be deleted. There can be only one default ingress per project.
@@ -5093,6 +5114,7 @@ export declare namespace MittwaldAPIV2 {
5093
5114
  isBackupInProgress: boolean;
5094
5115
  isCatchAll: boolean;
5095
5116
  mailbox?: {
5117
+ mailsystemSettings: MittwaldAPIV2.Components.Schemas.MailMailsystemSettings;
5096
5118
  name: string;
5097
5119
  passwordUpdatedAt: string;
5098
5120
  sendingEnabled: boolean;
@@ -5111,12 +5133,16 @@ export declare namespace MittwaldAPIV2 {
5111
5133
  };
5112
5134
  };
5113
5135
  projectId: string;
5136
+ rateLimitChangeRequest?: {
5137
+ /**
5138
+ * id of the rate limit requested
5139
+ */
5140
+ rateLimitId: string;
5141
+ };
5114
5142
  receivingDisabled: boolean;
5115
5143
  updatedAt: string;
5116
5144
  }
5117
5145
  interface MailMailsystemSettings {
5118
- imapClusterId: string;
5119
- mailDirectory: string;
5120
5146
  rateLimitId: string;
5121
5147
  }
5122
5148
  interface MailmigrationAutoResponder {
@@ -5261,6 +5287,10 @@ export declare namespace MittwaldAPIV2 {
5261
5287
  keepDays: number;
5262
5288
  relocateSensitivity?: number;
5263
5289
  }
5290
+ interface MailsystemRateLimit {
5291
+ id: string;
5292
+ rateLimit: number;
5293
+ }
5264
5294
  interface MarketplaceContractPartner {
5265
5295
  contractPartner: {
5266
5296
  address: MittwaldAPIV2.Components.Schemas.CommonsAddress;
@@ -5739,19 +5769,49 @@ export declare namespace MittwaldAPIV2 {
5739
5769
  machineType: string;
5740
5770
  }
5741
5771
  interface ArticleArticleAddons {
5772
+ /**
5773
+ * Defines if the Addon should not be shown.
5774
+ */
5742
5775
  hidden?: boolean;
5776
+ /**
5777
+ * Unique key of the Addon.
5778
+ */
5743
5779
  key: string;
5780
+ /**
5781
+ * The type/category of the addon.
5782
+ */
5744
5783
  type?: string;
5784
+ /**
5785
+ * Value of the Addon, e.g. configuration details, status, or modifier properties.
5786
+ */
5745
5787
  value: string;
5788
+ /**
5789
+ * Used if Articles are ordered as a batch.
5790
+ */
5746
5791
  valueMergeType?: "add" | "set";
5747
5792
  }
5748
5793
  interface ArticleArticleAttributes {
5794
+ /**
5795
+ * Used if there are custom configurations needed for an Order like a Server name.
5796
+ */
5749
5797
  customerEditable?: boolean;
5750
5798
  key: string;
5799
+ /**
5800
+ * Used if Articles are ordered as a batch.
5801
+ */
5751
5802
  mergeType?: "add" | "set";
5803
+ /**
5804
+ * Used if not need for an Order.
5805
+ */
5752
5806
  readonly?: boolean;
5753
5807
  required?: boolean;
5808
+ /**
5809
+ * Used if Articles are ordered as a batch.
5810
+ */
5754
5811
  unit?: string;
5812
+ /**
5813
+ * Will be ignored if customerEditable is set.
5814
+ */
5755
5815
  value?: string;
5756
5816
  }
5757
5817
  interface ArticleReadableBookableArticleOptions {
@@ -5802,14 +5862,32 @@ export declare namespace MittwaldAPIV2 {
5802
5862
  addons?: MittwaldAPIV2.Components.Schemas.ArticleArticleAddons[];
5803
5863
  articleId: string;
5804
5864
  attributes?: MittwaldAPIV2.Components.Schemas.ArticleArticleAttributes[];
5865
+ /**
5866
+ * @deprecated
5867
+ */
5805
5868
  balanceAddonKey?: string;
5806
5869
  contractDurationInMonth: number;
5807
5870
  description?: string;
5871
+ /**
5872
+ * If set, the Article will always be invoiced for the given months.
5873
+ */
5808
5874
  forcedInvoicingPeriodInMonth?: number;
5875
+ /**
5876
+ * Article has a contract period which is not dependent on the Contract Base Item.
5877
+ */
5809
5878
  hasIndependentContractPeriod?: boolean;
5879
+ /**
5880
+ * Free Article that is not showing on Invoices.
5881
+ */
5810
5882
  hideOnInvoice?: boolean;
5883
+ /**
5884
+ * Resources for hosting Articles.
5885
+ */
5811
5886
  machineType?: {
5812
5887
  cpu: string;
5888
+ /**
5889
+ * Memory in GiB
5890
+ */
5813
5891
  memory: string;
5814
5892
  name: string;
5815
5893
  };
@@ -5820,431 +5898,120 @@ export declare namespace MittwaldAPIV2 {
5820
5898
  */
5821
5899
  orderable: "full" | "forbidden" | "internal" | "beta_testing" | "deprecated";
5822
5900
  possibleArticleChanges?: MittwaldAPIV2.Components.Schemas.ArticleReadableChangeArticleOptions[];
5901
+ /**
5902
+ * Monthly price in Eurocent
5903
+ */
5823
5904
  price?: number;
5824
5905
  tags?: MittwaldAPIV2.Components.Schemas.ArticleArticleTag[];
5825
5906
  template: MittwaldAPIV2.Components.Schemas.ArticleArticleTemplate;
5826
5907
  }
5827
5908
  type PolicyPolicy = string;
5828
- interface ActivitylogAppInstallationCopyRequested {
5829
- changes: {
5830
- after?: {
5831
- appId: string;
5832
- sourceAppInstallationId: string;
5833
- };
5834
- before?: {
5835
- appId?: string | null;
5836
- sourceAppInstallationId?: string | null;
5909
+ interface ProjectAvatarRules {
5910
+ maxSizeInKB: number;
5911
+ mimeTypes: string[];
5912
+ properties?: {
5913
+ imageDimensions?: {
5914
+ max?: {
5915
+ height?: number;
5916
+ width?: number;
5917
+ };
5918
+ min?: {
5919
+ height?: number;
5920
+ width?: number;
5921
+ };
5837
5922
  };
5838
5923
  };
5839
- name: "app.copy-requested";
5840
5924
  }
5841
- interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
5842
- changes: {
5843
- after?: {
5844
- software: string;
5845
- softwareVersion: string;
5846
- updatePolicy: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
5847
- };
5848
- before?: {
5849
- software?: string;
5850
- softwareVersion?: string;
5851
- updatePolicy?: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
5852
- };
5853
- };
5854
- name: "app.systemsoftware-set" | "app.systemsoftware-deleted";
5855
- parameters?: {
5856
- software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5857
- version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5858
- };
5925
+ /**
5926
+ * deprecated by property status
5927
+ */
5928
+ type ProjectDeprecatedProjectReadinessStatus = "creating" | "ready" | "unready";
5929
+ /**
5930
+ * deprecated by property status
5931
+ */
5932
+ type ProjectDeprecatedServerReadinessStatus = "creating" | "ready" | "unready";
5933
+ interface ProjectFilesystemDirectoryListing {
5934
+ absolutePath: string;
5935
+ isDirectory?: boolean;
5936
+ isExecutable?: boolean;
5937
+ isFile?: boolean;
5938
+ isSymlink?: boolean;
5939
+ items?: MittwaldAPIV2.Components.Schemas.ProjectFilesystemDirectoryListing[];
5940
+ name: string;
5941
+ size: number;
5942
+ target?: string;
5859
5943
  }
5860
- interface ActivitylogAppInstallationAppVersionSet {
5861
- changes: {
5862
- after?: {
5863
- appId: string;
5864
- appVersionId: string;
5865
- };
5866
- before?: {
5867
- appId?: string | null;
5868
- appVersionId?: string | null;
5869
- };
5870
- };
5871
- name: "app.version-set";
5944
+ interface ProjectFilesystemUsagesDisk {
5945
+ path?: string;
5946
+ totalBytes?: number;
5947
+ usedBytes?: number;
5872
5948
  }
5873
- interface ActivitylogDatabaseCreated {
5874
- changes: {
5875
- after?: {
5876
- description: string;
5877
- name: string;
5878
- version: string;
5879
- };
5880
- before?: {
5881
- description?: string | null;
5882
- name?: string | null;
5883
- version?: string | null;
5884
- };
5885
- };
5886
- name: "database.mysql-created" | "database.redis-created";
5887
- parameters: {
5888
- name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5889
- version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5890
- };
5949
+ interface ProjectFsApiJwt {
5950
+ jwt: string;
5891
5951
  }
5892
- interface ActivitylogDatabaseDeleted {
5893
- changes: {};
5894
- name: "database.mysql-deleted" | "database.redis-deleted";
5895
- parameters: {
5896
- name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5897
- };
5952
+ interface ProjectHardwareSpec {
5953
+ cpu?: string;
5954
+ /**
5955
+ * @deprecated
5956
+ * deprecated by memory
5957
+ */
5958
+ mem?: string;
5959
+ memory?: string;
5960
+ storage: string;
5898
5961
  }
5899
- interface ActivitylogDatabaseDescriptionSet {
5900
- changes: {
5901
- after?: {
5902
- description: string;
5903
- };
5904
- before?: {
5905
- description: string | null;
5906
- };
5907
- };
5908
- name: "database.mysql-description-set" | "database.redis-description-set";
5909
- parameters: {
5910
- name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5911
- };
5962
+ interface ProjectMachineType {
5963
+ cpu: string;
5964
+ memory: string;
5965
+ name: string;
5912
5966
  }
5913
- interface ActivitylogDatabaseMysqlNameSet {
5914
- changes: {
5915
- after?: {
5916
- name: string;
5917
- };
5918
- before?: {
5919
- name: string | null;
5920
- };
5921
- };
5922
- name: "database.mysql-name-set";
5923
- parameters: {
5924
- name: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
5967
+ type ProjectDisableReason = "maliciousCode" | "illegalContent" | "maliciousConduct" | "suspended";
5968
+ type ProjectProjectFeature = "redis" | "node" | "container";
5969
+ type ProjectProjectStatus = "pending" | "ready" | "preparingForVolumeMigration" | "migratingVolume" | "error" | "disabled";
5970
+ interface ProjectProject {
5971
+ backupStorageUsageInBytes: number;
5972
+ backupStorageUsageInBytesSetAt: string;
5973
+ clusterDomain?: string;
5974
+ /**
5975
+ * @deprecated
5976
+ * deprecated by property clusterId
5977
+ */
5978
+ clusterID?: string;
5979
+ clusterId?: string;
5980
+ createdAt: string;
5981
+ customerId: string;
5982
+ deletionRequested?: boolean;
5983
+ description: string;
5984
+ directories: {
5985
+ [k: string]: string;
5925
5986
  };
5926
- }
5927
- interface ActivitylogDatabaseMysqlUserCreated {
5928
- changes: {
5929
- after?: {
5930
- description: string;
5931
- externalAccess: boolean;
5932
- name: string;
5933
- permissions: {};
5934
- };
5935
- before?: {
5936
- description?: string | null;
5937
- externalAccess?: boolean | null;
5938
- name?: string | null;
5939
- permissions?: {} | null;
5940
- };
5941
- };
5942
- name: "database.mysql-user-created";
5943
- parameters: {
5944
- databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
5945
- name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5946
- };
5947
- }
5948
- interface ActivitylogDatabaseMysqlUserDeleted {
5949
- changes: {};
5950
- name: "database.mysql-user-deleted";
5951
- parameters: {
5952
- databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
5953
- name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5954
- };
5955
- }
5956
- interface ActivitylogDatabaseMysqlUserUpdated {
5957
- changes: {
5958
- after?: {
5959
- description: string;
5960
- externalAccess: boolean;
5961
- permissions: {};
5962
- };
5963
- before?: {
5964
- description: string | null;
5965
- externalAccess: boolean | null;
5966
- permissions: {};
5967
- };
5968
- };
5969
- name: "database.mysql-user-updated";
5970
- parameters: {
5971
- databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
5972
- name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5973
- };
5974
- }
5975
- interface ActivitylogDatabaseVersionSet {
5976
- changes: {
5977
- after?: {
5978
- version: string;
5979
- };
5980
- before?: {
5981
- version: string;
5982
- };
5983
- };
5984
- name: "database.mysql-version-set" | "database.redis-version-set";
5985
- parameters: {
5986
- name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5987
- version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5988
- };
5989
- }
5990
- interface ActivitylogDnsARecordSet {
5991
- changes: {
5992
- after?: {
5993
- aRecords: string[];
5994
- aaaaRecords: string[];
5995
- };
5996
- before?: {
5997
- aRecords: string[];
5998
- aaaaRecords: string[];
5999
- };
6000
- };
6001
- name: "dns.a-record-set";
6002
- parameters: {
6003
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6004
- };
6005
- }
6006
- interface ActivitylogDnsCaaRecordSet {
6007
- changes: {
6008
- after?: {
6009
- caa: {}[];
6010
- };
6011
- before?: {
6012
- caa: {}[];
6013
- };
6014
- };
6015
- name: "dns.caa-record-set";
6016
- parameters: {
6017
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6018
- };
6019
- }
6020
- interface ActivitylogDnsCnameRecordSet {
6021
- changes: {
6022
- after?: {
6023
- cname: string;
6024
- };
6025
- before?: {
6026
- cname: string;
6027
- };
6028
- };
6029
- name: "dns.cname-record-set";
6030
- parameters: {
6031
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6032
- };
6033
- }
6034
- interface ActivitylogDnsMxRecordSet {
6035
- changes: {
6036
- after?: {
6037
- mx: {}[];
6038
- };
6039
- before?: {
6040
- mx: {}[];
6041
- };
6042
- };
6043
- name: "dns.mx-record-set";
6044
- parameters: {
6045
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6046
- };
6047
- }
6048
- interface ActivitylogDnsSrvRecordSet {
6049
- changes: {
6050
- after?: {
6051
- srv: {}[];
6052
- };
6053
- before?: {
6054
- srv: {}[];
6055
- };
6056
- };
6057
- name: "dns.srv-record-set";
6058
- parameters: {
6059
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6060
- };
6061
- }
6062
- interface ActivitylogDnsTxtRecordSet {
6063
- changes: {
6064
- after?: {
6065
- txt: string[];
6066
- };
6067
- before?: {
6068
- txt: string[];
6069
- };
6070
- };
6071
- name: "dns.txt-record-set";
6072
- parameters: {
6073
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6074
- };
6075
- }
6076
- interface ActivitylogDnsZoneCreated {
6077
- changes: {
6078
- after?: {
6079
- domain: string;
6080
- };
6081
- before?: {
6082
- domain: string | null;
6083
- };
6084
- };
6085
- name: "dns.zone-created";
6086
- parameters: {
6087
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6088
- };
6089
- }
6090
- interface ActivitylogDnsZoneDeleted {
6091
- changes: {};
6092
- name: "dns.zone-deleted";
6093
- parameters: {
6094
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6095
- };
6096
- }
6097
- /**
6098
- * Fallback when no matching action is found
6099
- */
6100
- interface ActivitylogGenericAction {
6101
- changes: {
6102
- [k: string]: {
6103
- after?: {
6104
- [k: string]: unknown;
6105
- };
6106
- before?: {
6107
- [k: string]: unknown;
6108
- };
6109
- };
6110
- };
6111
- name: string;
6112
- parameters: {
6113
- [k: string]: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6114
- };
6115
- }
6116
- interface ActivitylogAggregateReference {
6117
- aggregate: string;
6118
- domain: string;
6119
- id: string;
6120
- }
6121
- interface ProjectAvatarRules {
6122
- maxSizeInKB: number;
6123
- mimeTypes: string[];
6124
- properties?: {
6125
- imageDimensions?: {
6126
- max?: {
6127
- height?: number;
6128
- width?: number;
6129
- };
6130
- min?: {
6131
- height?: number;
6132
- width?: number;
6133
- };
6134
- };
6135
- };
6136
- }
6137
- /**
6138
- * deprecated by property status
6139
- */
6140
- type ProjectDeprecatedProjectReadinessStatus = "creating" | "ready" | "unready";
6141
- /**
6142
- * deprecated by property status
6143
- */
6144
- type ProjectDeprecatedServerReadinessStatus = "creating" | "ready" | "unready";
6145
- interface ProjectFilesystemDirectoryListing {
6146
- absolutePath: string;
6147
- isDirectory?: boolean;
6148
- isExecutable?: boolean;
6149
- isFile?: boolean;
6150
- isSymlink?: boolean;
6151
- items?: MittwaldAPIV2.Components.Schemas.ProjectFilesystemDirectoryListing[];
6152
- name: string;
6153
- size: number;
6154
- target?: string;
6155
- }
6156
- interface ProjectFilesystemUsagesDisk {
6157
- path?: string;
6158
- totalBytes?: number;
6159
- usedBytes?: number;
6160
- }
6161
- interface ProjectFsApiJwt {
6162
- jwt: string;
6163
- }
6164
- interface ProjectHardwareSpec {
6165
- cpu?: string;
6166
- /**
6167
- * @deprecated
6168
- * deprecated by memory
6169
- */
6170
- mem?: string;
6171
- memory?: string;
6172
- storage: string;
6173
- }
6174
- interface ActivitylogLinkedParameterProperty {
6175
- aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
6176
- name: string;
6177
- }
6178
- interface ActivitylogLogEntry {
6179
- action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlNameSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
6180
- aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
6181
- dateTime: string;
6182
- /**
6183
- * Null or empty object. If set, the action was executed by an mittwald employee.
6184
- */
6185
- impersonator?: {};
6186
- user?: {
6187
- id: string;
6188
- type: "user" | "extension";
6189
- };
6190
- }
6191
- interface ProjectMachineType {
6192
- cpu: string;
6193
- memory: string;
6194
- name: string;
6195
- }
6196
- interface ActivitylogParameterProperty {
6197
- aggregate?: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
6198
- name: string;
6199
- }
6200
- type ProjectDisableReason = "maliciousCode" | "illegalContent" | "maliciousConduct" | "suspended";
6201
- type ProjectProjectFeature = "redis" | "node" | "container";
6202
- type ProjectProjectStatus = "pending" | "ready" | "preparingForVolumeMigration" | "migratingVolume" | "error" | "disabled";
6203
- interface ProjectProject {
6204
- backupStorageUsageInBytes: number;
6205
- backupStorageUsageInBytesSetAt: string;
6206
- clusterDomain?: string;
6207
- /**
6208
- * @deprecated
6209
- * deprecated by property clusterId
6210
- */
6211
- clusterID?: string;
6212
- clusterId?: string;
6213
- createdAt: string;
6214
- customerId: string;
6215
- deletionRequested?: boolean;
6216
- description: string;
6217
- directories: {
6218
- [k: string]: string;
6219
- };
6220
- disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
6221
- disabledAt?: string;
6222
- enabled: boolean;
6223
- /**
6224
- * @deprecated
6225
- * Deprecated by 'supportedFeatures'.
6226
- */
6227
- features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
6228
- id: string;
6229
- imageRefId?: string;
6230
- /**
6231
- * @deprecated
6232
- * deprecated by property status
6233
- */
6234
- isReady: boolean;
6235
- projectHostingId?: string;
6236
- readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
6237
- serverGroupId: string;
6238
- serverId?: string;
6239
- serverShortId?: string;
6240
- shortId: string;
6241
- spec?: MittwaldAPIV2.Components.Schemas.ProjectVisitorSpec | MittwaldAPIV2.Components.Schemas.ProjectHardwareSpec;
6242
- statisticsBaseDomain?: string;
6243
- status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
6244
- statusSetAt: string;
6245
- supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
6246
- webStorageUsageInBytes: number;
6247
- webStorageUsageInBytesSetAt: string;
5987
+ disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
5988
+ disabledAt?: string;
5989
+ enabled: boolean;
5990
+ /**
5991
+ * @deprecated
5992
+ * Deprecated by 'supportedFeatures'.
5993
+ */
5994
+ features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
5995
+ id: string;
5996
+ imageRefId?: string;
5997
+ /**
5998
+ * @deprecated
5999
+ * deprecated by property status
6000
+ */
6001
+ isReady: boolean;
6002
+ projectHostingId?: string;
6003
+ readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
6004
+ serverGroupId: string;
6005
+ serverId?: string;
6006
+ serverShortId?: string;
6007
+ shortId: string;
6008
+ spec?: MittwaldAPIV2.Components.Schemas.ProjectVisitorSpec | MittwaldAPIV2.Components.Schemas.ProjectHardwareSpec;
6009
+ statisticsBaseDomain?: string;
6010
+ status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
6011
+ statusSetAt: string;
6012
+ supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
6013
+ webStorageUsageInBytes: number;
6014
+ webStorageUsageInBytesSetAt: string;
6248
6015
  }
6249
6016
  type ProjectServerDisableReason = "suspended";
6250
6017
  type ProjectServerStatus = "pending" | "ready" | "unready" | "suspended" | "migrating";
@@ -6640,123 +6407,494 @@ export declare namespace MittwaldAPIV2 {
6640
6407
  customerMemberships?: {
6641
6408
  [k: string]: MittwaldAPIV2.Components.Schemas.UserCustomerMembership;
6642
6409
  };
6643
- email?: string;
6644
- /**
6645
- * Additional information about mittwald employees.
6646
- */
6647
- employeeInformation?: {
6648
- department: string;
6410
+ email?: string;
6411
+ /**
6412
+ * Additional information about mittwald employees.
6413
+ */
6414
+ employeeInformation?: {
6415
+ department: string;
6416
+ };
6417
+ /**
6418
+ * Truth value, whether the user is a mittwald employee
6419
+ */
6420
+ isEmployee?: boolean;
6421
+ mfa?: {
6422
+ active: boolean;
6423
+ setup: boolean;
6424
+ };
6425
+ passwordUpdatedAt?: string;
6426
+ person: MittwaldAPIV2.Components.Schemas.CommonsPerson;
6427
+ phoneNumber?: string;
6428
+ projectMemberships?: {
6429
+ [k: string]: MittwaldAPIV2.Components.Schemas.UserProjectMembership;
6430
+ };
6431
+ registeredAt?: string;
6432
+ userId: string;
6433
+ }
6434
+ interface SignupSshKey {
6435
+ algorithm: string;
6436
+ comment: string;
6437
+ createdAt: string;
6438
+ expiresAt?: string;
6439
+ fingerprint: string;
6440
+ key: string;
6441
+ sshKeyId: string;
6442
+ }
6443
+ interface PollUserPollSettings {
6444
+ completedAt?: string;
6445
+ dontShowUntil?: string;
6446
+ ignoredAt?: string;
6447
+ shouldShow: boolean;
6448
+ status: "completed" | "muted" | "ignored" | "new";
6449
+ userId: string;
6450
+ }
6451
+ interface SignupUserSession {
6452
+ created: string;
6453
+ device: MittwaldAPIV2.Components.Schemas.SignupDeviceInfo;
6454
+ lastAccess?: string;
6455
+ location?: MittwaldAPIV2.Components.Schemas.SignupLocation;
6456
+ tokenId: string;
6457
+ }
6458
+ interface VarnishConfigRevision {
6459
+ expire?: number;
6460
+ files: MittwaldAPIV2.Components.Schemas.VarnishConfigFileRef[];
6461
+ note?: string;
6462
+ revision: number;
6463
+ updated: string;
6464
+ }
6465
+ interface VarnishConfigTemplate {
6466
+ /**
6467
+ * A set of config file references.
6468
+ */
6469
+ files: MittwaldAPIV2.Components.Schemas.VarnishConfigFileRef[];
6470
+ isGlobal?: boolean;
6471
+ note?: string;
6472
+ projectId?: string;
6473
+ softwareConfigTemplateId: string;
6474
+ softwareTemplateId: string;
6475
+ updatedAt?: string;
6476
+ }
6477
+ interface VarnishConfigFile {
6478
+ content: string;
6479
+ meta?: MittwaldAPIV2.Components.Schemas.VarnishConfigFileMetadata;
6480
+ }
6481
+ interface VarnishConfigFileMetadata {
6482
+ name: string;
6483
+ path?: string;
6484
+ }
6485
+ interface VarnishConfigFileRef {
6486
+ meta?: MittwaldAPIV2.Components.Schemas.VarnishConfigFileMetadata;
6487
+ refId: string;
6488
+ }
6489
+ interface VarnishGlobalConfigTemplate {
6490
+ data: string;
6491
+ name: string;
6492
+ updatedAt: string;
6493
+ }
6494
+ interface VarnishSoftware {
6495
+ config: MittwaldAPIV2.Components.Schemas.VarnishSoftwareConfig;
6496
+ projectId: string;
6497
+ settings?: {
6498
+ [k: string]: string;
6499
+ };
6500
+ softwareId: string;
6501
+ softwareTemplateId: string;
6502
+ softwareVersion: string;
6503
+ updatedAt: string;
6504
+ }
6505
+ interface VarnishSoftwareConfig {
6506
+ configExpiration?: MittwaldAPIV2.Components.Schemas.VarnishConfigExpiration;
6507
+ latestConfigRevision?: number;
6508
+ revisions?: MittwaldAPIV2.Components.Schemas.VarnishConfigRevision[];
6509
+ }
6510
+ interface VarnishConfigExpiration {
6511
+ maxVersions?: number;
6512
+ retentionTime?: number;
6513
+ }
6514
+ interface VarnishSoftwareConfigFileAccessToken {
6515
+ accessToken: string;
6516
+ expiresAt: string;
6517
+ }
6518
+ interface VarnishSoftwareSetting {
6519
+ name: string;
6520
+ value: string;
6521
+ }
6522
+ interface VerificationEmailDetectPhishingMailResponse {
6523
+ result: MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
6524
+ }
6525
+ type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
6526
+ type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
6527
+ /**
6528
+ * Typed reason a domain cannot be migrated.
6529
+ */
6530
+ type DomainmigrationDomainNotMigratableReason = "DOMAIN_NOT_MIGRATABLE_REASON_NEED_EPP" | "DOMAIN_NOT_MIGRATABLE_REASON_TLD_NOT_SUPPORTED" | "DOMAIN_NOT_MIGRATABLE_REASON_PREMIUM_DOMAIN" | "DOMAIN_NOT_MIGRATABLE_REASON_REGISTRAR_NOT_SUPPORTED" | "DOMAIN_NOT_MIGRATABLE_REASON_NOT_ORDERABLE" | "DOMAIN_NOT_MIGRATABLE_REASON_INSUFFICIENT_STATE";
6531
+ /**
6532
+ * A non-migratable-domain failure: one selected domain cannot be migrated. type is always DOMAIN_NOT_MIGRATABLE, path is the affected domain, and context.reason carries the typed reason code.
6533
+ */
6534
+ interface DomainmigrationDomainNotMigratableValidationError {
6535
+ context: {
6536
+ reason: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainNotMigratableReason;
6537
+ [k: string]: string;
6538
+ };
6539
+ message: string;
6540
+ /**
6541
+ * The affected domain.
6542
+ */
6543
+ path: string;
6544
+ /**
6545
+ * Discriminator for this branch; always DOMAIN_NOT_MIGRATABLE.
6546
+ */
6547
+ type: "DOMAIN_NOT_MIGRATABLE";
6548
+ }
6549
+ interface ActivitylogParameterProperty {
6550
+ aggregate?: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
6551
+ name: string;
6552
+ }
6553
+ interface ActivitylogAppInstallationAppVersionSet {
6554
+ changes: {
6555
+ after?: {
6556
+ appId: string;
6557
+ appVersionId: string;
6558
+ };
6559
+ before?: {
6560
+ appId?: string | null;
6561
+ appVersionId?: string | null;
6562
+ };
6563
+ };
6564
+ name: "app.version-set";
6565
+ }
6566
+ interface ActivitylogDatabaseMysqlNameSet {
6567
+ changes: {
6568
+ after?: {
6569
+ name: string;
6570
+ };
6571
+ before?: {
6572
+ name: string | null;
6573
+ };
6574
+ };
6575
+ name: "database.mysql-name-set";
6576
+ parameters: {
6577
+ name: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6578
+ };
6579
+ }
6580
+ interface ActivitylogDatabaseMysqlUserUpdated {
6581
+ changes: {
6582
+ after?: {
6583
+ description: string;
6584
+ externalAccess: boolean;
6585
+ permissions: {};
6586
+ };
6587
+ before?: {
6588
+ description: string | null;
6589
+ externalAccess: boolean | null;
6590
+ permissions: {};
6591
+ };
6592
+ };
6593
+ name: "database.mysql-user-updated";
6594
+ parameters: {
6595
+ databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6596
+ name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6597
+ };
6598
+ }
6599
+ interface ActivitylogDnsCnameRecordSet {
6600
+ changes: {
6601
+ after?: {
6602
+ cname: string;
6603
+ };
6604
+ before?: {
6605
+ cname: string;
6606
+ };
6607
+ };
6608
+ name: "dns.cname-record-set";
6609
+ parameters: {
6610
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6611
+ };
6612
+ }
6613
+ interface ActivitylogAggregateReference {
6614
+ aggregate: string;
6615
+ domain: string;
6616
+ id: string;
6617
+ }
6618
+ interface ActivitylogDatabaseDescriptionSet {
6619
+ changes: {
6620
+ after?: {
6621
+ description: string;
6622
+ };
6623
+ before?: {
6624
+ description: string | null;
6625
+ };
6626
+ };
6627
+ name: "database.mysql-description-set" | "database.redis-description-set";
6628
+ parameters: {
6629
+ name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6649
6630
  };
6650
- /**
6651
- * Truth value, whether the user is a mittwald employee
6652
- */
6653
- isEmployee?: boolean;
6654
- mfa?: {
6655
- active: boolean;
6656
- setup: boolean;
6631
+ }
6632
+ interface ActivitylogDatabaseCreated {
6633
+ changes: {
6634
+ after?: {
6635
+ description: string;
6636
+ name: string;
6637
+ version: string;
6638
+ };
6639
+ before?: {
6640
+ description?: string | null;
6641
+ name?: string | null;
6642
+ version?: string | null;
6643
+ };
6657
6644
  };
6658
- passwordUpdatedAt?: string;
6659
- person: MittwaldAPIV2.Components.Schemas.CommonsPerson;
6660
- phoneNumber?: string;
6661
- projectMemberships?: {
6662
- [k: string]: MittwaldAPIV2.Components.Schemas.UserProjectMembership;
6645
+ name: "database.mysql-created" | "database.redis-created";
6646
+ parameters: {
6647
+ name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6648
+ version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6663
6649
  };
6664
- registeredAt?: string;
6665
- userId: string;
6666
6650
  }
6667
- interface SignupSshKey {
6668
- algorithm: string;
6669
- comment: string;
6670
- createdAt: string;
6671
- expiresAt?: string;
6672
- fingerprint: string;
6673
- key: string;
6674
- sshKeyId: string;
6651
+ /**
6652
+ * Fallback when no matching action is found
6653
+ */
6654
+ interface ActivitylogGenericAction {
6655
+ changes: {
6656
+ [k: string]: {
6657
+ after?: {
6658
+ [k: string]: unknown;
6659
+ };
6660
+ before?: {
6661
+ [k: string]: unknown;
6662
+ };
6663
+ };
6664
+ };
6665
+ name: string;
6666
+ parameters: {
6667
+ [k: string]: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6668
+ };
6675
6669
  }
6676
- interface PollUserPollSettings {
6677
- completedAt?: string;
6678
- dontShowUntil?: string;
6679
- ignoredAt?: string;
6680
- shouldShow: boolean;
6681
- status: "completed" | "muted" | "ignored" | "new";
6682
- userId: string;
6670
+ interface ActivitylogDatabaseVersionSet {
6671
+ changes: {
6672
+ after?: {
6673
+ version: string;
6674
+ };
6675
+ before?: {
6676
+ version: string;
6677
+ };
6678
+ };
6679
+ name: "database.mysql-version-set" | "database.redis-version-set";
6680
+ parameters: {
6681
+ name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6682
+ version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6683
+ };
6683
6684
  }
6684
- interface SignupUserSession {
6685
- created: string;
6686
- device: MittwaldAPIV2.Components.Schemas.SignupDeviceInfo;
6687
- lastAccess?: string;
6688
- location?: MittwaldAPIV2.Components.Schemas.SignupLocation;
6689
- tokenId: string;
6685
+ interface ActivitylogDnsZoneDeleted {
6686
+ changes: {};
6687
+ name: "dns.zone-deleted";
6688
+ parameters: {
6689
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6690
+ };
6690
6691
  }
6691
- interface VarnishConfigRevision {
6692
- expire?: number;
6693
- files: MittwaldAPIV2.Components.Schemas.VarnishConfigFileRef[];
6694
- note?: string;
6695
- revision: number;
6696
- updated: string;
6692
+ interface ActivitylogDatabaseMysqlUserDeleted {
6693
+ changes: {};
6694
+ name: "database.mysql-user-deleted";
6695
+ parameters: {
6696
+ databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6697
+ name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6698
+ };
6697
6699
  }
6698
- interface VarnishConfigTemplate {
6699
- /**
6700
- * A set of config file references.
6701
- */
6702
- files: MittwaldAPIV2.Components.Schemas.VarnishConfigFileRef[];
6703
- isGlobal?: boolean;
6704
- note?: string;
6705
- projectId?: string;
6706
- softwareConfigTemplateId: string;
6707
- softwareTemplateId: string;
6708
- updatedAt?: string;
6700
+ interface ActivitylogDatabaseMysqlUserCreated {
6701
+ changes: {
6702
+ after?: {
6703
+ description: string;
6704
+ externalAccess: boolean;
6705
+ name: string;
6706
+ permissions: {};
6707
+ };
6708
+ before?: {
6709
+ description?: string | null;
6710
+ externalAccess?: boolean | null;
6711
+ name?: string | null;
6712
+ permissions?: {} | null;
6713
+ };
6714
+ };
6715
+ name: "database.mysql-user-created";
6716
+ parameters: {
6717
+ databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6718
+ name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6719
+ };
6709
6720
  }
6710
- interface VarnishConfigFile {
6711
- content: string;
6712
- meta?: MittwaldAPIV2.Components.Schemas.VarnishConfigFileMetadata;
6721
+ interface ActivitylogDnsZoneCreated {
6722
+ changes: {
6723
+ after?: {
6724
+ domain: string;
6725
+ };
6726
+ before?: {
6727
+ domain: string | null;
6728
+ };
6729
+ };
6730
+ name: "dns.zone-created";
6731
+ parameters: {
6732
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6733
+ };
6713
6734
  }
6714
- interface VarnishConfigFileMetadata {
6735
+ interface ActivitylogLinkedParameterProperty {
6736
+ aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
6715
6737
  name: string;
6716
- path?: string;
6717
6738
  }
6718
- interface VarnishConfigFileRef {
6719
- meta?: MittwaldAPIV2.Components.Schemas.VarnishConfigFileMetadata;
6720
- refId: string;
6739
+ interface ActivitylogDnsARecordSet {
6740
+ changes: {
6741
+ after?: {
6742
+ aRecords: string[];
6743
+ aaaaRecords: string[];
6744
+ };
6745
+ before?: {
6746
+ aRecords: string[];
6747
+ aaaaRecords: string[];
6748
+ };
6749
+ };
6750
+ name: "dns.a-record-set";
6751
+ parameters: {
6752
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6753
+ };
6721
6754
  }
6722
- interface VarnishGlobalConfigTemplate {
6723
- data: string;
6724
- name: string;
6725
- updatedAt: string;
6755
+ interface ActivitylogDnsTxtRecordSet {
6756
+ changes: {
6757
+ after?: {
6758
+ txt: string[];
6759
+ };
6760
+ before?: {
6761
+ txt: string[];
6762
+ };
6763
+ };
6764
+ name: "dns.txt-record-set";
6765
+ parameters: {
6766
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6767
+ };
6726
6768
  }
6727
- interface VarnishSoftware {
6728
- config: MittwaldAPIV2.Components.Schemas.VarnishSoftwareConfig;
6729
- projectId: string;
6730
- settings?: {
6731
- [k: string]: string;
6769
+ interface ActivitylogDatabaseDeleted {
6770
+ changes: {};
6771
+ name: "database.mysql-deleted" | "database.redis-deleted";
6772
+ parameters: {
6773
+ name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6732
6774
  };
6733
- softwareId: string;
6734
- softwareTemplateId: string;
6735
- softwareVersion: string;
6736
- updatedAt: string;
6737
6775
  }
6738
- interface VarnishSoftwareConfig {
6739
- configExpiration?: MittwaldAPIV2.Components.Schemas.VarnishConfigExpiration;
6740
- latestConfigRevision?: number;
6741
- revisions?: MittwaldAPIV2.Components.Schemas.VarnishConfigRevision[];
6776
+ interface ActivitylogDnsCaaRecordSet {
6777
+ changes: {
6778
+ after?: {
6779
+ caa: {}[];
6780
+ };
6781
+ before?: {
6782
+ caa: {}[];
6783
+ };
6784
+ };
6785
+ name: "dns.caa-record-set";
6786
+ parameters: {
6787
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6788
+ };
6789
+ }
6790
+ interface ActivitylogDnsMxRecordSet {
6791
+ changes: {
6792
+ after?: {
6793
+ mx: {}[];
6794
+ };
6795
+ before?: {
6796
+ mx: {}[];
6797
+ };
6798
+ };
6799
+ name: "dns.mx-record-set";
6800
+ parameters: {
6801
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6802
+ };
6803
+ }
6804
+ interface ActivitylogAppInstallationCopyRequested {
6805
+ changes: {
6806
+ after?: {
6807
+ appId: string;
6808
+ sourceAppInstallationId: string;
6809
+ };
6810
+ before?: {
6811
+ appId?: string | null;
6812
+ sourceAppInstallationId?: string | null;
6813
+ };
6814
+ };
6815
+ name: "app.copy-requested";
6742
6816
  }
6743
- interface VarnishConfigExpiration {
6744
- maxVersions?: number;
6745
- retentionTime?: number;
6817
+ interface ActivitylogDnsSrvRecordSet {
6818
+ changes: {
6819
+ after?: {
6820
+ srv: {}[];
6821
+ };
6822
+ before?: {
6823
+ srv: {}[];
6824
+ };
6825
+ };
6826
+ name: "dns.srv-record-set";
6827
+ parameters: {
6828
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6829
+ };
6746
6830
  }
6747
- interface VarnishSoftwareConfigFileAccessToken {
6748
- accessToken: string;
6749
- expiresAt: string;
6831
+ interface ActivitylogLogEntry {
6832
+ action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlNameSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
6833
+ aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
6834
+ dateTime: string;
6835
+ /**
6836
+ * Null or empty object. If set, the action was executed by an mittwald employee.
6837
+ */
6838
+ impersonator?: {};
6839
+ user?: {
6840
+ id: string;
6841
+ type: "user" | "extension";
6842
+ };
6750
6843
  }
6751
- interface VarnishSoftwareSetting {
6752
- name: string;
6753
- value: string;
6844
+ interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
6845
+ changes: {
6846
+ after?: {
6847
+ software: string;
6848
+ softwareVersion: string;
6849
+ updatePolicy: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
6850
+ };
6851
+ before?: {
6852
+ software?: string;
6853
+ softwareVersion?: string;
6854
+ updatePolicy?: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
6855
+ };
6856
+ };
6857
+ name: "app.systemsoftware-set" | "app.systemsoftware-deleted";
6858
+ parameters?: {
6859
+ software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6860
+ version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6861
+ };
6754
6862
  }
6755
- interface VerificationEmailDetectPhishingMailResponse {
6756
- result: MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
6863
+ interface ProjectProjectListItem {
6864
+ backupStorageUsageInBytes: number;
6865
+ backupStorageUsageInBytesSetAt: string;
6866
+ createdAt: string;
6867
+ customerId: string;
6868
+ customerMeta: {
6869
+ id: string;
6870
+ };
6871
+ description: string;
6872
+ disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
6873
+ disabledAt?: string;
6874
+ enabled: boolean;
6875
+ /**
6876
+ * @deprecated
6877
+ * Deprecated by 'supportedFeatures'.
6878
+ */
6879
+ features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
6880
+ id: string;
6881
+ imageRefId?: string;
6882
+ /**
6883
+ * @deprecated
6884
+ * deprecated
6885
+ */
6886
+ isReady: boolean;
6887
+ projectHostingId?: string;
6888
+ readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
6889
+ serverGroupId: string;
6890
+ serverId?: string;
6891
+ shortId: string;
6892
+ status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
6893
+ statusSetAt: string;
6894
+ supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
6895
+ webStorageUsageInBytes: number;
6896
+ webStorageUsageInBytesSetAt: string;
6757
6897
  }
6758
- type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
6759
- type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
6760
6898
  interface CommonsAddress {
6761
6899
  street: string;
6762
6900
  houseNumber: string;
@@ -10743,76 +10881,6 @@ export declare namespace MittwaldAPIV2 {
10743
10881
  }
10744
10882
  }
10745
10883
  }
10746
- namespace V2ContainerImageConfig {
10747
- namespace Get {
10748
- namespace Parameters {
10749
- type Path = {};
10750
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
10751
- type Query = {
10752
- imageReference: string;
10753
- useCredentialsForProjectId?: string;
10754
- useCredentialsForRegistryId?: string;
10755
- generateAiData?: boolean;
10756
- };
10757
- }
10758
- namespace Responses {
10759
- namespace $200 {
10760
- namespace Content {
10761
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfig;
10762
- }
10763
- }
10764
- namespace $400 {
10765
- namespace Content {
10766
- interface ApplicationJson {
10767
- [k: string]: unknown;
10768
- }
10769
- }
10770
- }
10771
- namespace $403 {
10772
- namespace Content {
10773
- interface ApplicationJson {
10774
- [k: string]: unknown;
10775
- }
10776
- }
10777
- }
10778
- namespace $404 {
10779
- namespace Content {
10780
- interface ApplicationJson {
10781
- [k: string]: unknown;
10782
- }
10783
- }
10784
- }
10785
- namespace $412 {
10786
- namespace Content {
10787
- interface ApplicationJson {
10788
- [k: string]: unknown;
10789
- }
10790
- }
10791
- }
10792
- namespace $429 {
10793
- namespace Content {
10794
- interface ApplicationJson {
10795
- [k: string]: unknown;
10796
- }
10797
- }
10798
- }
10799
- namespace $500 {
10800
- namespace Content {
10801
- interface ApplicationJson {
10802
- [k: string]: unknown;
10803
- }
10804
- }
10805
- }
10806
- namespace Default {
10807
- namespace Content {
10808
- interface ApplicationJson {
10809
- [k: string]: unknown;
10810
- }
10811
- }
10812
- }
10813
- }
10814
- }
10815
- }
10816
10884
  namespace V2StacksStackIdServicesServiceIdLogs {
10817
10885
  namespace Get {
10818
10886
  namespace Parameters {
@@ -14560,7 +14628,9 @@ export declare namespace MittwaldAPIV2 {
14560
14628
  executionId: string;
14561
14629
  cronjobId: string;
14562
14630
  };
14563
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14631
+ type Header = {
14632
+ "Accept-Language"?: "de" | "en";
14633
+ } & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14564
14634
  type Query = {};
14565
14635
  }
14566
14636
  namespace Responses {
@@ -19016,15 +19086,38 @@ export declare namespace MittwaldAPIV2 {
19016
19086
  type Query = {};
19017
19087
  }
19018
19088
  namespace Responses {
19019
- namespace $204 {
19089
+ namespace $201 {
19020
19090
  namespace Content {
19021
- type Empty = unknown;
19091
+ interface ApplicationJson {
19092
+ id: string;
19093
+ }
19022
19094
  }
19023
19095
  }
19024
19096
  namespace $400 {
19025
19097
  namespace Content {
19026
19098
  interface ApplicationJson {
19027
- [k: string]: unknown;
19099
+ message: string;
19100
+ params?: {
19101
+ [k: string]: string;
19102
+ };
19103
+ type: string;
19104
+ /**
19105
+ * One entry per problem. Each entry is a oneOf, mutually exclusive on type: a DomainNotMigratableValidationError (type DOMAIN_NOT_MIGRATABLE, path = the affected domain, context.reason = the typed reason code), or a generic service-base validation error (type = the JSON-schema keyword such as required/pattern/format, path = the request field).
19106
+ */
19107
+ validationErrors: (MittwaldAPIV2.Components.Schemas.DomainmigrationDomainNotMigratableValidationError | {
19108
+ context?: {
19109
+ [k: string]: string;
19110
+ };
19111
+ message: string;
19112
+ /**
19113
+ * The request field that failed validation (JS property-access notation, e.g. .pAccount).
19114
+ */
19115
+ path: string;
19116
+ /**
19117
+ * JSON-schema validation keyword (e.g. required, pattern, format).
19118
+ */
19119
+ type: string;
19120
+ })[];
19028
19121
  }
19029
19122
  }
19030
19123
  }
@@ -24404,6 +24497,45 @@ export declare namespace MittwaldAPIV2 {
24404
24497
  }
24405
24498
  }
24406
24499
  }
24500
+ namespace V2MailRateLimitsMailRateLimitId {
24501
+ namespace Get {
24502
+ namespace Parameters {
24503
+ type Path = {
24504
+ mailRateLimitId: string;
24505
+ };
24506
+ type Header = {};
24507
+ type Query = {};
24508
+ }
24509
+ namespace Responses {
24510
+ namespace $200 {
24511
+ namespace Content {
24512
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit;
24513
+ }
24514
+ }
24515
+ namespace $404 {
24516
+ namespace Content {
24517
+ interface ApplicationJson {
24518
+ [k: string]: unknown;
24519
+ }
24520
+ }
24521
+ }
24522
+ namespace $429 {
24523
+ namespace Content {
24524
+ interface ApplicationJson {
24525
+ [k: string]: unknown;
24526
+ }
24527
+ }
24528
+ }
24529
+ namespace Default {
24530
+ namespace Content {
24531
+ interface ApplicationJson {
24532
+ [k: string]: unknown;
24533
+ }
24534
+ }
24535
+ }
24536
+ }
24537
+ }
24538
+ }
24407
24539
  namespace V2MailAddressesMailAddressIdBackups {
24408
24540
  namespace Get {
24409
24541
  namespace Parameters {
@@ -24541,6 +24673,36 @@ export declare namespace MittwaldAPIV2 {
24541
24673
  }
24542
24674
  }
24543
24675
  }
24676
+ namespace V2MailRateLimits {
24677
+ namespace Get {
24678
+ namespace Parameters {
24679
+ type Path = {};
24680
+ type Header = {};
24681
+ type Query = {};
24682
+ }
24683
+ namespace Responses {
24684
+ namespace $200 {
24685
+ namespace Content {
24686
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[];
24687
+ }
24688
+ }
24689
+ namespace $429 {
24690
+ namespace Content {
24691
+ interface ApplicationJson {
24692
+ [k: string]: unknown;
24693
+ }
24694
+ }
24695
+ }
24696
+ namespace Default {
24697
+ namespace Content {
24698
+ interface ApplicationJson {
24699
+ [k: string]: unknown;
24700
+ }
24701
+ }
24702
+ }
24703
+ }
24704
+ }
24705
+ }
24544
24706
  namespace V2ProjectsProjectIdMailSettings {
24545
24707
  namespace Get {
24546
24708
  namespace Parameters {
@@ -27389,46 +27551,12 @@ export declare namespace MittwaldAPIV2 {
27389
27551
  page?: number;
27390
27552
  sort?: "createdAt" | "description";
27391
27553
  order?: "asc" | "desc";
27392
- };
27393
- }
27394
- namespace Responses {
27395
- namespace $200 {
27396
- namespace Content {
27397
- type ApplicationJson = {
27398
- backupStorageUsageInBytes: number;
27399
- backupStorageUsageInBytesSetAt: string;
27400
- createdAt: string;
27401
- customerId: string;
27402
- customerMeta: {
27403
- id: string;
27404
- };
27405
- description: string;
27406
- disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
27407
- disabledAt?: string;
27408
- enabled: boolean;
27409
- /**
27410
- * @deprecated
27411
- * Deprecated by 'supportedFeatures'.
27412
- */
27413
- features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
27414
- id: string;
27415
- imageRefId?: string;
27416
- /**
27417
- * @deprecated
27418
- * deprecated
27419
- */
27420
- isReady: boolean;
27421
- projectHostingId?: string;
27422
- readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
27423
- serverGroupId: string;
27424
- serverId?: string;
27425
- shortId: string;
27426
- status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
27427
- statusSetAt: string;
27428
- supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
27429
- webStorageUsageInBytes: number;
27430
- webStorageUsageInBytesSetAt: string;
27431
- }[];
27554
+ };
27555
+ }
27556
+ namespace Responses {
27557
+ namespace $200 {
27558
+ namespace Content {
27559
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[];
27432
27560
  }
27433
27561
  }
27434
27562
  namespace $400 {
@@ -31137,6 +31265,11 @@ export declare namespace MittwaldAPIV2 {
31137
31265
  type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
31138
31266
  }
31139
31267
  }
31268
+ namespace $412 {
31269
+ namespace Content {
31270
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsError;
31271
+ }
31272
+ }
31140
31273
  namespace $429 {
31141
31274
  namespace Content {
31142
31275
  interface ApplicationJson {
@@ -31485,5 +31618,265 @@ export declare namespace MittwaldAPIV2 {
31485
31618
  }
31486
31619
  }
31487
31620
  }
31621
+ namespace V2ContainerImageConfig {
31622
+ namespace Get {
31623
+ namespace Parameters {
31624
+ type Path = {};
31625
+ type Header = {
31626
+ "Accept-Language"?: "de" | "en";
31627
+ } & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31628
+ type Query = {
31629
+ imageReference: string;
31630
+ useCredentialsForProjectId?: string;
31631
+ useCredentialsForRegistryId?: string;
31632
+ generateAiData?: boolean;
31633
+ };
31634
+ }
31635
+ namespace Responses {
31636
+ namespace $200 {
31637
+ namespace Content {
31638
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfig;
31639
+ }
31640
+ }
31641
+ namespace $400 {
31642
+ namespace Content {
31643
+ interface ApplicationJson {
31644
+ [k: string]: unknown;
31645
+ }
31646
+ }
31647
+ }
31648
+ namespace $403 {
31649
+ namespace Content {
31650
+ interface ApplicationJson {
31651
+ [k: string]: unknown;
31652
+ }
31653
+ }
31654
+ }
31655
+ namespace $404 {
31656
+ namespace Content {
31657
+ interface ApplicationJson {
31658
+ [k: string]: unknown;
31659
+ }
31660
+ }
31661
+ }
31662
+ namespace $412 {
31663
+ namespace Content {
31664
+ interface ApplicationJson {
31665
+ [k: string]: unknown;
31666
+ }
31667
+ }
31668
+ }
31669
+ namespace $429 {
31670
+ namespace Content {
31671
+ interface ApplicationJson {
31672
+ [k: string]: unknown;
31673
+ }
31674
+ }
31675
+ }
31676
+ namespace $500 {
31677
+ namespace Content {
31678
+ interface ApplicationJson {
31679
+ [k: string]: unknown;
31680
+ }
31681
+ }
31682
+ }
31683
+ namespace Default {
31684
+ namespace Content {
31685
+ interface ApplicationJson {
31686
+ [k: string]: unknown;
31687
+ }
31688
+ }
31689
+ }
31690
+ }
31691
+ }
31692
+ }
31693
+ namespace V2MailAddressesMailAddressIdRequestRateLimitChange {
31694
+ namespace Post {
31695
+ namespace Parameters {
31696
+ type Path = {
31697
+ mailAddressId: string;
31698
+ };
31699
+ interface RequestBody {
31700
+ rateLimitId: string;
31701
+ }
31702
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31703
+ type Query = {};
31704
+ }
31705
+ namespace Responses {
31706
+ namespace $204 {
31707
+ namespace Content {
31708
+ type Empty = unknown;
31709
+ }
31710
+ }
31711
+ namespace $400 {
31712
+ namespace Content {
31713
+ interface ApplicationJson {
31714
+ [k: string]: unknown;
31715
+ }
31716
+ }
31717
+ }
31718
+ namespace $403 {
31719
+ namespace Content {
31720
+ interface ApplicationJson {
31721
+ [k: string]: unknown;
31722
+ }
31723
+ }
31724
+ }
31725
+ namespace $404 {
31726
+ namespace Content {
31727
+ interface ApplicationJson {
31728
+ [k: string]: unknown;
31729
+ }
31730
+ }
31731
+ }
31732
+ namespace $429 {
31733
+ namespace Content {
31734
+ interface ApplicationJson {
31735
+ [k: string]: unknown;
31736
+ }
31737
+ }
31738
+ }
31739
+ namespace $500 {
31740
+ namespace Content {
31741
+ interface ApplicationJson {
31742
+ [k: string]: unknown;
31743
+ }
31744
+ }
31745
+ }
31746
+ namespace $503 {
31747
+ namespace Content {
31748
+ interface ApplicationJson {
31749
+ [k: string]: unknown;
31750
+ }
31751
+ }
31752
+ }
31753
+ namespace Default {
31754
+ namespace Content {
31755
+ interface ApplicationJson {
31756
+ [k: string]: unknown;
31757
+ }
31758
+ }
31759
+ }
31760
+ }
31761
+ }
31762
+ }
31763
+ namespace V2ProjectsProjectIdActivities {
31764
+ namespace Get {
31765
+ namespace Parameters {
31766
+ type Path = {
31767
+ projectId: string;
31768
+ };
31769
+ type Header = {};
31770
+ type Query = {
31771
+ aggregateName?: string;
31772
+ aggregateDomain?: string;
31773
+ aggregateId?: string;
31774
+ startTime?: string;
31775
+ endTime?: string;
31776
+ fulltextSearch?: string;
31777
+ limit?: number;
31778
+ skip?: number;
31779
+ page?: number;
31780
+ sort?: "dateTime";
31781
+ order?: "asc" | "desc";
31782
+ };
31783
+ }
31784
+ namespace Responses {
31785
+ namespace $200 {
31786
+ namespace Content {
31787
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[];
31788
+ }
31789
+ }
31790
+ namespace $400 {
31791
+ namespace Content {
31792
+ interface ApplicationJson {
31793
+ [k: string]: unknown;
31794
+ }
31795
+ }
31796
+ }
31797
+ namespace $403 {
31798
+ namespace Content {
31799
+ interface ApplicationJson {
31800
+ [k: string]: unknown;
31801
+ }
31802
+ }
31803
+ }
31804
+ namespace $404 {
31805
+ namespace Content {
31806
+ interface ApplicationJson {
31807
+ [k: string]: unknown;
31808
+ }
31809
+ }
31810
+ }
31811
+ namespace $429 {
31812
+ namespace Content {
31813
+ interface ApplicationJson {
31814
+ [k: string]: unknown;
31815
+ }
31816
+ }
31817
+ }
31818
+ namespace Default {
31819
+ namespace Content {
31820
+ interface ApplicationJson {
31821
+ [k: string]: unknown;
31822
+ }
31823
+ }
31824
+ }
31825
+ }
31826
+ }
31827
+ }
31828
+ namespace V2CustomersCustomerIdProjects {
31829
+ namespace Get {
31830
+ namespace Parameters {
31831
+ type Path = {
31832
+ customerId: string;
31833
+ };
31834
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31835
+ type Query = {
31836
+ searchTerm?: string;
31837
+ limit?: number;
31838
+ skip?: number;
31839
+ page?: number;
31840
+ sort?: "createdAt" | "description";
31841
+ order?: "asc" | "desc";
31842
+ };
31843
+ }
31844
+ namespace Responses {
31845
+ namespace $200 {
31846
+ namespace Content {
31847
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[];
31848
+ }
31849
+ }
31850
+ namespace $400 {
31851
+ namespace Content {
31852
+ interface ApplicationJson {
31853
+ [k: string]: unknown;
31854
+ }
31855
+ }
31856
+ }
31857
+ namespace $403 {
31858
+ namespace Content {
31859
+ interface ApplicationJson {
31860
+ [k: string]: unknown;
31861
+ }
31862
+ }
31863
+ }
31864
+ namespace $429 {
31865
+ namespace Content {
31866
+ interface ApplicationJson {
31867
+ [k: string]: unknown;
31868
+ }
31869
+ }
31870
+ }
31871
+ namespace Default {
31872
+ namespace Content {
31873
+ interface ApplicationJson {
31874
+ [k: string]: unknown;
31875
+ }
31876
+ }
31877
+ }
31878
+ }
31879
+ }
31880
+ }
31488
31881
  }
31489
31882
  }