@mittwald/api-client 4.44.0 → 4.44.4

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.
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.43.0';
1
+ export const MittwaldAPIClientVersion = '4.44.3';
@@ -249,7 +249,7 @@ declare const buildArticleApi: (baseClient: MittwaldAPIV2Client) => {
249
249
  } | undefined;
250
250
  modifierArticles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableModifierArticleOptions[] | undefined;
251
251
  name: string;
252
- orderable: "full" | "forbidden" | "internal" | "beta_testing" | "deprecated";
252
+ orderable: "forbidden" | "internal" | "beta_testing" | "full" | "deprecated";
253
253
  possibleArticleChanges?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableChangeArticleOptions[] | undefined;
254
254
  price?: number | undefined;
255
255
  tags?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleArticleTag[] | undefined;
@@ -269,7 +269,7 @@ declare const buildArticleApi: (baseClient: MittwaldAPIV2Client) => {
269
269
  tags?: string[] | undefined;
270
270
  templateNames?: string[] | undefined;
271
271
  articleIds?: string[] | undefined;
272
- orderable?: ("full" | "forbidden" | "internal" | "beta_testing" | "deprecated")[] | undefined;
272
+ orderable?: ("forbidden" | "internal" | "beta_testing" | "full" | "deprecated")[] | undefined;
273
273
  name?: string | undefined;
274
274
  } | undefined;
275
275
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableArticle[]>;
@@ -637,8 +637,8 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
637
637
  customerId: string;
638
638
  date: string;
639
639
  groups: {
640
- contractId?: string | undefined;
641
- description?: string | undefined;
640
+ contractId?: string;
641
+ description?: string;
642
642
  items: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceInvoiceItem[];
643
643
  }[];
644
644
  id: string;
@@ -816,8 +816,8 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
816
816
  preferredUsers: {
817
817
  categoryUserPairs?: {
818
818
  [k: string]: string;
819
- } | undefined;
820
- fallback?: string | undefined;
819
+ };
820
+ fallback?: string;
821
821
  };
822
822
  }>;
823
823
  /** Get a support conversation. */
@@ -904,7 +904,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
904
904
  appId: string;
905
905
  createdAt: string;
906
906
  description: string;
907
- destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl;
907
+ destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
908
908
  email?: string | undefined;
909
909
  id: string;
910
910
  interval: string;
@@ -925,7 +925,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
925
925
  } | undefined;
926
926
  }) => import("@mittwald/react-use-promise").AsyncResource<{
927
927
  abortedBy?: {
928
- id?: string | undefined;
928
+ id?: string;
929
929
  } | undefined;
930
930
  durationInMilliseconds?: number | undefined;
931
931
  end?: string | undefined;
@@ -934,10 +934,10 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
934
934
  id: string;
935
935
  logPath?: string | undefined;
936
936
  start?: string | undefined;
937
- status: "Pending" | "Failed" | "Complete" | "AbortedBySystem" | "Running" | "AbortedByUser" | "TimedOut";
937
+ status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser" | "TimedOut";
938
938
  successful: boolean;
939
939
  triggeredBy?: {
940
- id?: string | undefined;
940
+ id?: string;
941
941
  } | undefined;
942
942
  }>;
943
943
  };
@@ -1039,7 +1039,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1039
1039
  owner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerContact | undefined;
1040
1040
  projectCount: number;
1041
1041
  vatId?: string | undefined;
1042
- vatIdValidationState?: "unspecified" | "valid" | "invalid" | "pending" | undefined;
1042
+ vatIdValidationState?: ("valid" | "invalid" | "pending" | "unspecified") | undefined;
1043
1043
  }>;
1044
1044
  /** Get a CustomerInvite by token. */
1045
1045
  getCustomerTokenInvite: (conf: {
@@ -1315,7 +1315,7 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1315
1315
  domain: string;
1316
1316
  domainId: string;
1317
1317
  handles: {
1318
- adminC?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable | undefined;
1318
+ adminC?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable;
1319
1319
  ownerC: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable;
1320
1320
  };
1321
1321
  nameservers: string[];
@@ -1529,14 +1529,14 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1529
1529
  properties?: {
1530
1530
  imageDimensions?: {
1531
1531
  max?: {
1532
- height?: number | undefined;
1533
- width?: number | undefined;
1534
- } | undefined;
1532
+ height?: number;
1533
+ width?: number;
1534
+ };
1535
1535
  min?: {
1536
- height?: number | undefined;
1537
- width?: number | undefined;
1538
- } | undefined;
1539
- } | undefined;
1536
+ height?: number;
1537
+ width?: number;
1538
+ };
1539
+ };
1540
1540
  } | undefined;
1541
1541
  }>;
1542
1542
  /** Get a FileUploadType's rules. */
@@ -1554,14 +1554,14 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1554
1554
  properties?: {
1555
1555
  imageDimensions?: {
1556
1556
  max?: {
1557
- height?: number | undefined;
1558
- width?: number | undefined;
1559
- } | undefined;
1557
+ height?: number;
1558
+ width?: number;
1559
+ };
1560
1560
  min?: {
1561
- height?: number | undefined;
1562
- width?: number | undefined;
1563
- } | undefined;
1564
- } | undefined;
1561
+ height?: number;
1562
+ width?: number;
1563
+ };
1564
+ };
1565
1565
  } | undefined;
1566
1566
  }>;
1567
1567
  /** Get a File. */
@@ -1569,8 +1569,8 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1569
1569
  fileId: string;
1570
1570
  headers?: {
1571
1571
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1572
- Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
1573
- "Content-Disposition"?: "inline" | "attachment" | undefined;
1572
+ Accept?: ("application/octet-stream" | "text/plain;base64") | undefined;
1573
+ "Content-Disposition"?: ("inline" | "attachment") | undefined;
1574
1574
  Token?: string | undefined;
1575
1575
  } | undefined;
1576
1576
  }) => import("@mittwald/react-use-promise").AsyncResource<string>;
@@ -1580,8 +1580,8 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1580
1580
  fileName: string;
1581
1581
  headers?: {
1582
1582
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1583
- Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
1584
- "Content-Disposition"?: "inline" | "attachment" | undefined;
1583
+ Accept?: ("application/octet-stream" | "text/plain;base64") | undefined;
1584
+ "Content-Disposition"?: ("inline" | "attachment") | undefined;
1585
1585
  Token?: string | undefined;
1586
1586
  } | undefined;
1587
1587
  }) => import("@mittwald/react-use-promise").AsyncResource<string>;
@@ -1631,9 +1631,9 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
1631
1631
  address: string;
1632
1632
  autoResponder: {
1633
1633
  active: boolean;
1634
- expiresAt?: string | undefined;
1635
- message?: string | undefined;
1636
- startsAt?: string | undefined;
1634
+ expiresAt?: string;
1635
+ message?: string;
1636
+ startsAt?: string;
1637
1637
  };
1638
1638
  forwardAddresses: string[];
1639
1639
  id: string;
@@ -1737,7 +1737,7 @@ declare const buildNotificationApi: (baseClient: MittwaldAPIV2Client) => {
1737
1737
  } | undefined;
1738
1738
  queryParameters?: {
1739
1739
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1740
- status?: "unread" | "read" | undefined;
1740
+ status?: ("unread" | "read") | undefined;
1741
1741
  } | undefined;
1742
1742
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MessagingNotification[]>;
1743
1743
  };
@@ -1760,7 +1760,7 @@ declare const buildPageInsightsApi: (baseClient: MittwaldAPIV2Client) => {
1760
1760
  metrics?: {
1761
1761
  createdAt: string;
1762
1762
  name: string;
1763
- score?: number | undefined;
1763
+ score?: number;
1764
1764
  value: number;
1765
1765
  }[] | undefined;
1766
1766
  moreDataAvailable?: string[] | undefined;
@@ -1782,7 +1782,7 @@ declare const buildPageInsightsApi: (baseClient: MittwaldAPIV2Client) => {
1782
1782
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1783
1783
  executedAt: string;
1784
1784
  id: string;
1785
- result: import("./types.js").MittwaldAPIV2.Components.Schemas.StraceData | import("./types.js").MittwaldAPIV2.Components.Schemas.StraceError;
1785
+ result: import("./types.js").MittwaldAPIV2.Components.Schemas.StraceError | import("./types.js").MittwaldAPIV2.Components.Schemas.StraceData;
1786
1786
  }>;
1787
1787
  /** List websites (specified as domain and path) from a project where performance data is available. */
1788
1788
  pageinsightsListPerformanceDataForProject: (conf: {
@@ -1801,7 +1801,7 @@ declare const buildPageInsightsApi: (baseClient: MittwaldAPIV2Client) => {
1801
1801
  createdAt: string;
1802
1802
  path: string;
1803
1803
  performanceScore: number;
1804
- screenshotFileRef?: string | undefined;
1804
+ screenshotFileRef?: string;
1805
1805
  }[];
1806
1806
  }[]>;
1807
1807
  };
@@ -1882,7 +1882,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
1882
1882
  serverId?: string | undefined;
1883
1883
  serverShortId?: string | undefined;
1884
1884
  shortId: string;
1885
- spec?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectHardwareSpec | import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectVisitorSpec | undefined;
1885
+ spec?: (import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectVisitorSpec | import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectHardwareSpec) | undefined;
1886
1886
  statisticsBaseDomain?: string | undefined;
1887
1887
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
1888
1888
  statusSetAt: string;
@@ -1937,7 +1937,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
1937
1937
  createdAt: string;
1938
1938
  customerId: string;
1939
1939
  description: string;
1940
- disabledReason?: "suspended" | undefined;
1940
+ disabledReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason | undefined;
1941
1941
  id: string;
1942
1942
  imageRefId?: string | undefined;
1943
1943
  isReady: boolean;
@@ -2003,15 +2003,15 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2003
2003
  id: string;
2004
2004
  };
2005
2005
  description: string;
2006
- disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
2007
- disabledAt?: string | undefined;
2006
+ disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
2007
+ disabledAt?: string;
2008
2008
  enabled: boolean;
2009
2009
  id: string;
2010
- imageRefId?: string | undefined;
2010
+ imageRefId?: string;
2011
2011
  isReady: boolean;
2012
- projectHostingId?: string | undefined;
2012
+ projectHostingId?: string;
2013
2013
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
2014
- serverId?: string | undefined;
2014
+ serverId?: string;
2015
2015
  shortId: string;
2016
2016
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
2017
2017
  statusSetAt: string;
@@ -2262,8 +2262,8 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
2262
2262
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
2263
2263
  email?: string | undefined;
2264
2264
  mfaDetails?: {
2265
- mfaConfirmed?: boolean | undefined;
2266
- mfaInitialized?: boolean | undefined;
2265
+ mfaConfirmed?: boolean;
2266
+ mfaInitialized?: boolean;
2267
2267
  } | undefined;
2268
2268
  passwordUpdatedAt?: string | undefined;
2269
2269
  person?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsPerson | undefined;
@@ -141,8 +141,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
141
141
  description?: string | undefined;
142
142
  systemSoftware?: {
143
143
  [k: string]: {
144
- systemSoftwareVersion?: string | undefined;
145
- updatePolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftwareUpdatePolicy | undefined;
144
+ systemSoftwareVersion?: string;
145
+ updatePolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftwareUpdatePolicy;
146
146
  };
147
147
  } | undefined;
148
148
  updatePolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy | undefined;
@@ -786,7 +786,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
786
786
  } | undefined;
787
787
  modifierArticles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableModifierArticleOptions[] | undefined;
788
788
  name: string;
789
- orderable: "full" | "forbidden" | "internal" | "beta_testing" | "deprecated";
789
+ orderable: "forbidden" | "internal" | "beta_testing" | "full" | "deprecated";
790
790
  possibleArticleChanges?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableChangeArticleOptions[] | undefined;
791
791
  price?: number | undefined;
792
792
  tags?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleArticleTag[] | undefined;
@@ -808,7 +808,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
808
808
  tags?: string[] | undefined;
809
809
  templateNames?: string[] | undefined;
810
810
  articleIds?: string[] | undefined;
811
- orderable?: ("full" | "forbidden" | "internal" | "beta_testing" | "deprecated")[] | undefined;
811
+ orderable?: ("forbidden" | "internal" | "beta_testing" | "full" | "deprecated")[] | undefined;
812
812
  name?: string | undefined;
813
813
  } | undefined;
814
814
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -824,7 +824,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
824
824
  tags?: string[] | undefined;
825
825
  templateNames?: string[] | undefined;
826
826
  articleIds?: string[] | undefined;
827
- orderable?: ("full" | "forbidden" | "internal" | "beta_testing" | "deprecated")[] | undefined;
827
+ orderable?: ("forbidden" | "internal" | "beta_testing" | "full" | "deprecated")[] | undefined;
828
828
  name?: string | undefined;
829
829
  } & Partial<{
830
830
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -2626,8 +2626,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2626
2626
  customerId: string;
2627
2627
  date: string;
2628
2628
  groups: {
2629
- contractId?: string | undefined;
2630
- description?: string | undefined;
2629
+ contractId?: string;
2630
+ description?: string;
2631
2631
  items: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceInvoiceItem[];
2632
2632
  }[];
2633
2633
  id: string;
@@ -2905,7 +2905,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2905
2905
  projectId: string;
2906
2906
  authCode?: string | undefined;
2907
2907
  } | undefined;
2908
- orderType?: "domain" | "server" | "projectHosting" | undefined;
2908
+ orderType?: ("domain" | "projectHosting" | "server") | undefined;
2909
2909
  } | undefined;
2910
2910
  headers?: {
2911
2911
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -2913,8 +2913,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2913
2913
  } | undefined;
2914
2914
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2915
2915
  data: {
2916
- orderData?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | undefined;
2917
- orderType?: "domain" | "server" | "projectHosting" | undefined;
2916
+ orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder) | undefined;
2917
+ orderType?: ("domain" | "projectHosting" | "server") | undefined;
2918
2918
  };
2919
2919
  } & {
2920
2920
  headers?: Partial<{
@@ -2950,7 +2950,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2950
2950
  diskspaceInGiB: number;
2951
2951
  machineType: string;
2952
2952
  } | undefined;
2953
- tariffChangeType?: "server" | "projectHosting" | undefined;
2953
+ tariffChangeType?: ("projectHosting" | "server") | undefined;
2954
2954
  } | undefined;
2955
2955
  headers?: {
2956
2956
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -2958,8 +2958,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2958
2958
  } | undefined;
2959
2959
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2960
2960
  data: {
2961
- tariffChangeData?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | undefined;
2962
- tariffChangeType?: "server" | "projectHosting" | undefined;
2961
+ tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange) | undefined;
2962
+ tariffChangeType?: ("projectHosting" | "server") | undefined;
2963
2963
  };
2964
2964
  } & {
2965
2965
  headers?: Partial<{
@@ -3118,15 +3118,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3118
3118
  authCode?: string | undefined;
3119
3119
  projectId?: string | undefined;
3120
3120
  } | undefined;
3121
- orderType?: "domain" | "server" | "projectHosting" | undefined;
3121
+ orderType?: ("domain" | "projectHosting" | "server") | undefined;
3122
3122
  } | undefined;
3123
3123
  headers?: {
3124
3124
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3125
3125
  } | undefined;
3126
3126
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3127
3127
  data: {
3128
- orderData?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | undefined;
3129
- orderType?: "domain" | "server" | "projectHosting" | undefined;
3128
+ orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview) | undefined;
3129
+ orderType?: ("domain" | "projectHosting" | "server") | undefined;
3130
3130
  };
3131
3131
  } & {
3132
3132
  headers?: Partial<{
@@ -3154,7 +3154,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3154
3154
  diskspaceInGiB: number;
3155
3155
  machineType: string;
3156
3156
  } | undefined;
3157
- tariffChangeType?: "server" | "projectHosting" | undefined;
3157
+ tariffChangeType?: ("projectHosting" | "server") | undefined;
3158
3158
  } | undefined;
3159
3159
  headers?: {
3160
3160
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -3162,8 +3162,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3162
3162
  } | undefined;
3163
3163
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3164
3164
  data: {
3165
- tariffChangeData?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | undefined;
3166
- tariffChangeType?: "server" | "projectHosting" | undefined;
3165
+ tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange) | undefined;
3166
+ tariffChangeType?: ("projectHosting" | "server") | undefined;
3167
3167
  };
3168
3168
  } & {
3169
3169
  headers?: Partial<{
@@ -3363,8 +3363,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3363
3363
  preferredUsers: {
3364
3364
  categoryUserPairs?: {
3365
3365
  [k: string]: string;
3366
- } | undefined;
3367
- fallback?: string | undefined;
3366
+ };
3367
+ fallback?: string;
3368
3368
  };
3369
3369
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3370
3370
  [x: string]: unknown;
@@ -3503,15 +3503,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3503
3503
  properties?: {
3504
3504
  imageDimensions?: {
3505
3505
  max?: {
3506
- height?: number | undefined;
3507
- width?: number | undefined;
3508
- } | undefined;
3506
+ height?: number;
3507
+ width?: number;
3508
+ };
3509
3509
  min?: {
3510
- height?: number | undefined;
3511
- width?: number | undefined;
3512
- } | undefined;
3513
- } | undefined;
3514
- } | undefined;
3510
+ height?: number;
3511
+ width?: number;
3512
+ };
3513
+ };
3514
+ };
3515
3515
  };
3516
3516
  uploadToken: string;
3517
3517
  }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -3520,7 +3520,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3520
3520
  /** Update the status of a conversation. */
3521
3521
  setConversationStatus: (request: {
3522
3522
  data: {
3523
- status: "open" | "closed" | "answered" | "waiting";
3523
+ status: "open" | "answered" | "closed" | "waiting";
3524
3524
  department?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationDepartment | undefined;
3525
3525
  };
3526
3526
  conversationId: string;
@@ -3530,7 +3530,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3530
3530
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3531
3531
  data: {
3532
3532
  department?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationDepartment | undefined;
3533
- status: "open" | "closed" | "answered" | "waiting";
3533
+ status: "open" | "answered" | "closed" | "waiting";
3534
3534
  };
3535
3535
  } & {
3536
3536
  pathParameters: {
@@ -3680,7 +3680,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3680
3680
  active: boolean;
3681
3681
  appId: string;
3682
3682
  description: string;
3683
- destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl;
3683
+ destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
3684
3684
  email?: string | undefined;
3685
3685
  interval: string;
3686
3686
  timeout: number;
@@ -3809,7 +3809,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3809
3809
  appId: string;
3810
3810
  createdAt: string;
3811
3811
  description: string;
3812
- destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl;
3812
+ destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
3813
3813
  email?: string | undefined;
3814
3814
  id: string;
3815
3815
  interval: string;
@@ -3873,7 +3873,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3873
3873
  data: {
3874
3874
  active?: boolean | undefined;
3875
3875
  description?: string | undefined;
3876
- destination?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | undefined;
3876
+ destination?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand) | undefined;
3877
3877
  email?: string | undefined;
3878
3878
  interval?: string | undefined;
3879
3879
  timeout?: number | undefined;
@@ -3924,7 +3924,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3924
3924
  }>;
3925
3925
  }, import("@mittwald/api-client-commons").Response<{
3926
3926
  abortedBy?: {
3927
- id?: string | undefined;
3927
+ id?: string;
3928
3928
  } | undefined;
3929
3929
  durationInMilliseconds?: number | undefined;
3930
3930
  end?: string | undefined;
@@ -3933,10 +3933,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3933
3933
  id: string;
3934
3934
  logPath?: string | undefined;
3935
3935
  start?: string | undefined;
3936
- status: "Pending" | "Failed" | "Complete" | "AbortedBySystem" | "Running" | "AbortedByUser" | "TimedOut";
3936
+ status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser" | "TimedOut";
3937
3937
  successful: boolean;
3938
3938
  triggeredBy?: {
3939
- id?: string | undefined;
3939
+ id?: string;
3940
3940
  } | undefined;
3941
3941
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3942
3942
  [x: string]: unknown;
@@ -4517,7 +4517,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4517
4517
  owner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerContact | undefined;
4518
4518
  projectCount: number;
4519
4519
  vatId?: string | undefined;
4520
- vatIdValidationState?: "unspecified" | "valid" | "invalid" | "pending" | undefined;
4520
+ vatIdValidationState?: ("valid" | "invalid" | "pending" | "unspecified") | undefined;
4521
4521
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4522
4522
  [x: string]: unknown;
4523
4523
  }, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -4870,15 +4870,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4870
4870
  properties?: {
4871
4871
  imageDimensions?: {
4872
4872
  max?: {
4873
- height?: number | undefined;
4874
- width?: number | undefined;
4875
- } | undefined;
4873
+ height?: number;
4874
+ width?: number;
4875
+ };
4876
4876
  min?: {
4877
- height?: number | undefined;
4878
- width?: number | undefined;
4879
- } | undefined;
4880
- } | undefined;
4881
- } | undefined;
4877
+ height?: number;
4878
+ width?: number;
4879
+ };
4880
+ };
4881
+ };
4882
4882
  };
4883
4883
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4884
4884
  [x: string]: unknown;
@@ -5878,7 +5878,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5878
5878
  } | undefined;
5879
5879
  queryParameters?: {
5880
5880
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5881
- status?: "unread" | "read" | undefined;
5881
+ status?: ("unread" | "read") | undefined;
5882
5882
  } | undefined;
5883
5883
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5884
5884
  headers?: Partial<{
@@ -5886,7 +5886,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5886
5886
  }> | undefined;
5887
5887
  } & {
5888
5888
  queryParameters: {
5889
- status?: "unread" | "read" | undefined;
5889
+ status?: ("unread" | "read") | undefined;
5890
5890
  } & Partial<{
5891
5891
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5892
5892
  }>;
@@ -5914,14 +5914,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5914
5914
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5915
5915
  }>;
5916
5916
  }, import("@mittwald/api-client-commons").Response<{
5917
- status: "read";
5917
+ status: import("./types.js").MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
5918
5918
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5919
5919
  [x: string]: unknown;
5920
5920
  }, 403, "application/json">>>;
5921
5921
  /** Mark notification as read. */
5922
5922
  sreadNotification: (request: {
5923
5923
  data: {
5924
- status: "read";
5924
+ status: import("./types.js").MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
5925
5925
  };
5926
5926
  notificationId: string;
5927
5927
  headers?: {
@@ -5930,7 +5930,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5930
5930
  } | undefined;
5931
5931
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5932
5932
  data: {
5933
- status: "read";
5933
+ status: import("./types.js").MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
5934
5934
  };
5935
5935
  } & {
5936
5936
  pathParameters: {
@@ -5947,7 +5947,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5947
5947
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5948
5948
  }>;
5949
5949
  }, import("@mittwald/api-client-commons").Response<{
5950
- status: "read";
5950
+ status: import("./types.js").MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
5951
5951
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5952
5952
  [x: string]: unknown;
5953
5953
  }, 404, "application/json">>>;
@@ -6104,8 +6104,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6104
6104
  } | undefined;
6105
6105
  } | {
6106
6106
  data: {
6107
- a: string[];
6108
- aaaa: string[];
6107
+ a: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsCombinedAManagedARecord[];
6108
+ aaaa: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsCombinedAManagedAAAARecord[];
6109
6109
  settings: {
6110
6110
  ttl?: {
6111
6111
  seconds: number;
@@ -6188,14 +6188,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6188
6188
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6189
6189
  "x-access-token"?: string | undefined;
6190
6190
  } | undefined;
6191
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
6191
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
6192
6192
  headers?: Partial<{
6193
6193
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6194
6194
  }> | undefined;
6195
6195
  } | {
6196
6196
  data: {
6197
- a: string[];
6198
- aaaa: string[];
6197
+ a: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsCombinedAManagedARecord[];
6198
+ aaaa: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsCombinedAManagedAAAARecord[];
6199
6199
  settings: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
6200
6200
  };
6201
6201
  } | {
@@ -6223,7 +6223,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6223
6223
  dnsZoneId: string;
6224
6224
  recordSet: "a" | "mx" | "txt" | "srv" | "cname";
6225
6225
  };
6226
- } & {
6226
+ }) & {
6227
6227
  headers?: Partial<{
6228
6228
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6229
6229
  }> | undefined;
@@ -6434,7 +6434,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6434
6434
  domain: string;
6435
6435
  domainId: string;
6436
6436
  handles: {
6437
- adminC?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable | undefined;
6437
+ adminC?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable;
6438
6438
  ownerC: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable;
6439
6439
  };
6440
6440
  nameservers: string[];
@@ -6974,7 +6974,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6974
6974
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6975
6975
  "x-access-token"?: string | undefined;
6976
6976
  } | undefined;
6977
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
6977
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
6978
6978
  data: {
6979
6979
  acme: boolean;
6980
6980
  isCreated: boolean;
@@ -6988,7 +6988,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6988
6988
  pathParameters: {
6989
6989
  ingressId: string;
6990
6990
  };
6991
- } & {
6991
+ }) & {
6992
6992
  headers?: Partial<{
6993
6993
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6994
6994
  }> | undefined;
@@ -7476,7 +7476,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7476
7476
  secret: string;
7477
7477
  webhookResult: {
7478
7478
  failure: boolean;
7479
- statusCode?: string | undefined;
7479
+ statusCode?: string;
7480
7480
  };
7481
7481
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7482
7482
  [x: string]: unknown;
@@ -7584,14 +7584,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7584
7584
  properties?: {
7585
7585
  imageDimensions?: {
7586
7586
  max?: {
7587
- height?: number | undefined;
7588
- width?: number | undefined;
7589
- } | undefined;
7587
+ height?: number;
7588
+ width?: number;
7589
+ };
7590
7590
  min?: {
7591
- height?: number | undefined;
7592
- width?: number | undefined;
7593
- } | undefined;
7594
- } | undefined;
7591
+ height?: number;
7592
+ width?: number;
7593
+ };
7594
+ };
7595
7595
  } | undefined;
7596
7596
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7597
7597
  [x: string]: unknown;
@@ -7623,14 +7623,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7623
7623
  properties?: {
7624
7624
  imageDimensions?: {
7625
7625
  max?: {
7626
- height?: number | undefined;
7627
- width?: number | undefined;
7628
- } | undefined;
7626
+ height?: number;
7627
+ width?: number;
7628
+ };
7629
7629
  min?: {
7630
- height?: number | undefined;
7631
- width?: number | undefined;
7632
- } | undefined;
7633
- } | undefined;
7630
+ height?: number;
7631
+ width?: number;
7632
+ };
7633
+ };
7634
7634
  } | undefined;
7635
7635
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7636
7636
  [x: string]: unknown;
@@ -7644,8 +7644,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7644
7644
  fileId: string;
7645
7645
  headers?: {
7646
7646
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7647
- Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
7648
- "Content-Disposition"?: "inline" | "attachment" | undefined;
7647
+ Accept?: ("application/octet-stream" | "text/plain;base64") | undefined;
7648
+ "Content-Disposition"?: ("inline" | "attachment") | undefined;
7649
7649
  Token?: string | undefined;
7650
7650
  } | undefined;
7651
7651
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -7658,8 +7658,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7658
7658
  };
7659
7659
  } & {
7660
7660
  headers: {
7661
- Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
7662
- "Content-Disposition"?: "inline" | "attachment" | undefined;
7661
+ Accept?: ("application/octet-stream" | "text/plain;base64") | undefined;
7662
+ "Content-Disposition"?: ("inline" | "attachment") | undefined;
7663
7663
  Token?: string | undefined;
7664
7664
  } & Partial<{
7665
7665
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -7683,8 +7683,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7683
7683
  fileName: string;
7684
7684
  headers?: {
7685
7685
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7686
- Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
7687
- "Content-Disposition"?: "inline" | "attachment" | undefined;
7686
+ Accept?: ("application/octet-stream" | "text/plain;base64") | undefined;
7687
+ "Content-Disposition"?: ("inline" | "attachment") | undefined;
7688
7688
  Token?: string | undefined;
7689
7689
  } | undefined;
7690
7690
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -7698,8 +7698,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7698
7698
  };
7699
7699
  } & {
7700
7700
  headers: {
7701
- Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
7702
- "Content-Disposition"?: "inline" | "attachment" | undefined;
7701
+ Accept?: ("application/octet-stream" | "text/plain;base64") | undefined;
7702
+ "Content-Disposition"?: ("inline" | "attachment") | undefined;
7703
7703
  Token?: string | undefined;
7704
7704
  } & Partial<{
7705
7705
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -7853,7 +7853,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7853
7853
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7854
7854
  "x-access-token"?: string | undefined;
7855
7855
  } | undefined;
7856
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
7856
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
7857
7857
  data: {
7858
7858
  address: string;
7859
7859
  forwardAddresses: string[];
@@ -7872,7 +7872,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7872
7872
  pathParameters: {
7873
7873
  projectId: string;
7874
7874
  };
7875
- } & {
7875
+ }) & {
7876
7876
  headers?: Partial<{
7877
7877
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7878
7878
  }> | undefined;
@@ -7993,9 +7993,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7993
7993
  address: string;
7994
7994
  autoResponder: {
7995
7995
  active: boolean;
7996
- expiresAt?: string | undefined;
7997
- message?: string | undefined;
7998
- startsAt?: string | undefined;
7996
+ expiresAt?: string;
7997
+ message?: string;
7998
+ startsAt?: string;
7999
7999
  };
8000
8000
  forwardAddresses: string[];
8001
8001
  id: string;
@@ -8367,9 +8367,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8367
8367
  data: {
8368
8368
  autoResponder: {
8369
8369
  active: boolean;
8370
- expiresAt?: string | undefined;
8370
+ expiresAt?: string;
8371
8371
  message: string;
8372
- startsAt?: string | undefined;
8372
+ startsAt?: string;
8373
8373
  };
8374
8374
  };
8375
8375
  } & {
@@ -8559,7 +8559,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8559
8559
  spamProtection: {
8560
8560
  active: boolean;
8561
8561
  autoDeleteSpam: boolean;
8562
- folder: "spam" | "inbox";
8562
+ folder: "inbox" | "spam";
8563
8563
  relocationMinSpamScore: number;
8564
8564
  };
8565
8565
  };
@@ -8573,7 +8573,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8573
8573
  spamProtection: {
8574
8574
  active: boolean;
8575
8575
  autoDeleteSpam: boolean;
8576
- folder: "spam" | "inbox";
8576
+ folder: "inbox" | "spam";
8577
8577
  relocationMinSpamScore: number;
8578
8578
  };
8579
8579
  };
@@ -8623,7 +8623,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8623
8623
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8624
8624
  "x-access-token"?: string | undefined;
8625
8625
  } | undefined;
8626
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
8626
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
8627
8627
  data: {
8628
8628
  blacklist: string[];
8629
8629
  };
@@ -8636,7 +8636,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8636
8636
  projectId: string;
8637
8637
  mailSetting: "blacklist" | "whitelist";
8638
8638
  };
8639
- } & {
8639
+ }) & {
8640
8640
  headers?: Partial<{
8641
8641
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8642
8642
  }> | undefined;
@@ -8696,7 +8696,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8696
8696
  metrics?: {
8697
8697
  createdAt: string;
8698
8698
  name: string;
8699
- score?: number | undefined;
8699
+ score?: number;
8700
8700
  value: number;
8701
8701
  }[] | undefined;
8702
8702
  moreDataAvailable?: string[] | undefined;
@@ -8737,7 +8737,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8737
8737
  }, import("@mittwald/api-client-commons").Response<{
8738
8738
  executedAt: string;
8739
8739
  id: string;
8740
- result: import("./types.js").MittwaldAPIV2.Components.Schemas.StraceData | import("./types.js").MittwaldAPIV2.Components.Schemas.StraceError;
8740
+ result: import("./types.js").MittwaldAPIV2.Components.Schemas.StraceError | import("./types.js").MittwaldAPIV2.Components.Schemas.StraceData;
8741
8741
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8742
8742
  [x: string]: unknown;
8743
8743
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -8780,7 +8780,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8780
8780
  createdAt: string;
8781
8781
  path: string;
8782
8782
  performanceScore: number;
8783
- screenshotFileRef?: string | undefined;
8783
+ screenshotFileRef?: string;
8784
8784
  }[];
8785
8785
  }[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8786
8786
  [x: string]: unknown;
@@ -9249,7 +9249,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9249
9249
  serverId?: string | undefined;
9250
9250
  serverShortId?: string | undefined;
9251
9251
  shortId: string;
9252
- spec?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectHardwareSpec | import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectVisitorSpec | undefined;
9252
+ spec?: (import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectVisitorSpec | import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectHardwareSpec) | undefined;
9253
9253
  statisticsBaseDomain?: string | undefined;
9254
9254
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
9255
9255
  statusSetAt: string;
@@ -9436,7 +9436,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9436
9436
  createdAt: string;
9437
9437
  customerId: string;
9438
9438
  description: string;
9439
- disabledReason?: "suspended" | undefined;
9439
+ disabledReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason | undefined;
9440
9440
  id: string;
9441
9441
  imageRefId?: string | undefined;
9442
9442
  isReady: boolean;
@@ -9617,15 +9617,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9617
9617
  id: string;
9618
9618
  };
9619
9619
  description: string;
9620
- disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
9621
- disabledAt?: string | undefined;
9620
+ disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
9621
+ disabledAt?: string;
9622
9622
  enabled: boolean;
9623
9623
  id: string;
9624
- imageRefId?: string | undefined;
9624
+ imageRefId?: string;
9625
9625
  isReady: boolean;
9626
- projectHostingId?: string | undefined;
9626
+ projectHostingId?: string;
9627
9627
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
9628
- serverId?: string | undefined;
9628
+ serverId?: string;
9629
9629
  shortId: string;
9630
9630
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
9631
9631
  statusSetAt: string;
@@ -10027,14 +10027,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10027
10027
  };
10028
10028
  provider: {
10029
10029
  loginUrl: string;
10030
- name: string;
10030
+ name: string | ("1und1" | "strato");
10031
10031
  password: string;
10032
10032
  sourceAccount: string;
10033
10033
  userName: string;
10034
10034
  };
10035
10035
  target: {
10036
10036
  organisation: string;
10037
- product: string;
10037
+ product: (string | ("Space-Server" | "proSpace" | "Agentur-Server" | "CMS-Hosting" | "Shop-Hosting")) & string;
10038
10038
  projectName: string;
10039
10039
  system: "kc" | "mstudio";
10040
10040
  };
@@ -10053,20 +10053,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10053
10053
  email: string;
10054
10054
  firstName: string;
10055
10055
  lastName: string;
10056
- phoneNumber?: string | undefined;
10056
+ phoneNumber?: string;
10057
10057
  };
10058
10058
  domains?: import("./types.js").MittwaldAPIV2.Components.Schemas.DirectusDomain[] | undefined;
10059
10059
  notes?: string | undefined;
10060
10060
  provider: {
10061
10061
  loginUrl: string;
10062
- name: string;
10062
+ name: string | ("1und1" | "strato");
10063
10063
  password: string;
10064
10064
  sourceAccount: string;
10065
10065
  userName: string;
10066
10066
  };
10067
10067
  target: {
10068
10068
  organisation: string;
10069
- product: string;
10069
+ product: (string | ("Space-Server" | "proSpace" | "Agentur-Server" | "CMS-Hosting" | "Shop-Hosting")) & string;
10070
10070
  projectName: string;
10071
10071
  system: "kc" | "mstudio";
10072
10072
  };
@@ -10129,7 +10129,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10129
10129
  };
10130
10130
  description: string;
10131
10131
  directories: [string, ...string[]];
10132
- accessLevel?: "read" | "full" | undefined;
10132
+ accessLevel?: ("read" | "full") | undefined;
10133
10133
  expiresAt?: string | undefined;
10134
10134
  };
10135
10135
  projectId: string;
@@ -10139,7 +10139,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10139
10139
  } | undefined;
10140
10140
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
10141
10141
  data: {
10142
- accessLevel?: "read" | "full" | undefined;
10142
+ accessLevel?: ("read" | "full") | undefined;
10143
10143
  authentication: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserAuthentication;
10144
10144
  description: string;
10145
10145
  directories: [string, ...string[]];
@@ -10246,7 +10246,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10246
10246
  sftpUserUpdateSftpUser: (request: {
10247
10247
  sftpUserId: string;
10248
10248
  data?: {
10249
- accessLevel?: "read" | "full" | undefined;
10249
+ accessLevel?: ("read" | "full") | undefined;
10250
10250
  active?: boolean | undefined;
10251
10251
  description?: string | undefined;
10252
10252
  directories?: [string, ...string[]] | undefined;
@@ -10260,7 +10260,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10260
10260
  } | undefined;
10261
10261
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
10262
10262
  data: {
10263
- accessLevel?: "read" | "full" | undefined;
10263
+ accessLevel?: ("read" | "full") | undefined;
10264
10264
  active?: boolean | undefined;
10265
10265
  description?: string | undefined;
10266
10266
  directories?: [string, ...string[]] | undefined;
@@ -10927,7 +10927,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10927
10927
  subject: string;
10928
10928
  message?: string | undefined;
10929
10929
  origin?: string | undefined;
10930
- type?: "feedback" | "bug" | undefined;
10930
+ type?: ("feedback" | "bug") | undefined;
10931
10931
  vote?: number | undefined;
10932
10932
  };
10933
10933
  headers?: {
@@ -10939,7 +10939,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10939
10939
  message?: string | undefined;
10940
10940
  origin?: string | undefined;
10941
10941
  subject: string;
10942
- type?: "feedback" | "bug" | undefined;
10942
+ type?: ("feedback" | "bug") | undefined;
10943
10943
  vote?: number | undefined;
10944
10944
  };
10945
10945
  } & {
@@ -11225,8 +11225,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11225
11225
  }, import("@mittwald/api-client-commons").Response<{
11226
11226
  email?: string | undefined;
11227
11227
  mfaDetails?: {
11228
- mfaConfirmed?: boolean | undefined;
11229
- mfaInitialized?: boolean | undefined;
11228
+ mfaConfirmed?: boolean;
11229
+ mfaInitialized?: boolean;
11230
11230
  } | undefined;
11231
11231
  passwordUpdatedAt?: string | undefined;
11232
11232
  person?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsPerson | undefined;
@@ -11824,15 +11824,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11824
11824
  properties?: {
11825
11825
  imageDimensions?: {
11826
11826
  max?: {
11827
- height?: number | undefined;
11828
- width?: number | undefined;
11829
- } | undefined;
11827
+ height?: number;
11828
+ width?: number;
11829
+ };
11830
11830
  min?: {
11831
- height?: number | undefined;
11832
- width?: number | undefined;
11833
- } | undefined;
11834
- } | undefined;
11835
- } | undefined;
11831
+ height?: number;
11832
+ width?: number;
11833
+ };
11834
+ };
11835
+ };
11836
11836
  };
11837
11837
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
11838
11838
  [x: string]: unknown;
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.43.0';
1
+ export declare const MittwaldAPIClientVersion = '4.44.3';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.44.0",
3
+ "version": "4.44.4",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -42,34 +42,35 @@
42
42
  "format": "run prettier --write '**/*.{ts,tsx,yaml,yml,json,md,mdx,js}'",
43
43
  "lint": "run eslint .",
44
44
  "test": "",
45
- "test:client-generation-clean": "git diff --exit-code"
45
+ "test:client-generation-clean": "git diff --exit-code",
46
+ "test:compile": "run tsc --noEmit"
46
47
  },
47
48
  "dependencies": {
48
- "@mittwald/api-client-commons": "^4.15.0",
49
- "browser-or-node": "^3.0.0-pre.0"
49
+ "@mittwald/api-client-commons": "^4.44.3",
50
+ "browser-or-node": "^3.0.0"
50
51
  },
51
52
  "devDependencies": {
52
- "@mittwald/api-code-generator": "^4.14.1",
53
- "@mittwald/react-use-promise": "^2.3.12",
54
- "@types/node": "^20.11.25",
55
- "@types/react": "^18.2.64",
56
- "@typescript-eslint/eslint-plugin": "^7.1.1",
57
- "@typescript-eslint/parser": "^7.1.1",
53
+ "@mittwald/api-code-generator": "^4.44.4",
54
+ "@mittwald/react-use-promise": "^2.3.13",
55
+ "@types/node": "^20.14.14",
56
+ "@types/react": "^18.3.3",
57
+ "@typescript-eslint/eslint-plugin": "^7.18.0",
58
+ "@typescript-eslint/parser": "^7.18.0",
58
59
  "concurrently": "^8.2.2",
59
60
  "eslint": "^8.57.0",
60
61
  "eslint-config-prettier": "^9.1.0",
61
62
  "eslint-plugin-json": "^3.1.0",
62
- "eslint-plugin-prettier": "^5.1.3",
63
+ "eslint-plugin-prettier": "^5.2.1",
63
64
  "has-flag": "^5.0.1",
64
- "prettier": "^3.2.5",
65
+ "prettier": "^3.3.3",
65
66
  "prettier-plugin-jsdoc": "^1.3.0",
66
67
  "prettier-plugin-pkgsort": "^0.2.1",
67
68
  "prettier-plugin-sort-json": "^3.1.0",
68
- "react": "^18.2.0",
69
+ "react": "^18.3.1",
69
70
  "read-pkg": "^9.0.1",
70
- "rimraf": "^5.0.5",
71
- "tsx": "^4.7.1",
72
- "typescript": "5.4.2"
71
+ "rimraf": "^5.0.10",
72
+ "tsx": "^4.16.5",
73
+ "typescript": "5.5.4"
73
74
  },
74
75
  "peerDependencies": {
75
76
  "@mittwald/react-use-promise": "^2.3.12"
@@ -79,5 +80,5 @@
79
80
  "optional": true
80
81
  }
81
82
  },
82
- "gitHead": "643b93d808723fbfc67f1010a7e9bf365d223f90"
83
+ "gitHead": "4a2a0b8c20b57de9f130705197e9418c95651a41"
83
84
  }