@mittwald/api-client 0.0.0-development-e8d9270-20260119 → 0.0.0-development-49bfc51-20260120

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.284.0';
1
+ export const MittwaldAPIClientVersion = '0.0.0-development-f31be48-20260120';
@@ -17520,6 +17520,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
17520
17520
  }>;
17521
17521
  }, import("@mittwald/api-client-commons").Response<{
17522
17522
  authCode: string;
17523
+ expirationDate?: string | undefined;
17523
17524
  }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
17524
17525
  [x: string]: unknown;
17525
17526
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -17542,6 +17543,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
17542
17543
  }>;
17543
17544
  }, import("@mittwald/api-client-commons").Response<{
17544
17545
  authCode: string;
17546
+ expirationDate?: string | undefined;
17545
17547
  }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
17546
17548
  [x: string]: unknown;
17547
17549
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -1870,6 +1870,30 @@ export declare namespace MittwaldAPIV2 {
1870
1870
  name: string;
1871
1871
  termsOfServiceLink: string;
1872
1872
  }
1873
+ interface AihostingPlanOptions {
1874
+ customerId: string;
1875
+ deletedAt?: string;
1876
+ keys: MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
1877
+ nextTokenReset: string;
1878
+ rateLimit: MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
1879
+ tokens: MittwaldAPIV2.Components.Schemas.AihostingPlanUsageBig;
1880
+ topUsages?: {
1881
+ keyId?: string;
1882
+ name: string;
1883
+ projectId?: string;
1884
+ tokenUsed: number;
1885
+ }[];
1886
+ }
1887
+ interface AihostingPlanUsageBig {
1888
+ available: number;
1889
+ planLimit: number;
1890
+ used: number;
1891
+ }
1892
+ interface AihostingPlanUsage {
1893
+ available: number;
1894
+ planLimit: number;
1895
+ used: number;
1896
+ }
1873
1897
  /**
1874
1898
  * The number of allowed requests per unit. Limits are shared across all keys within the same project.
1875
1899
  */
@@ -5472,6 +5496,12 @@ export declare namespace MittwaldAPIV2 {
5472
5496
  organizationalUnit?: string;
5473
5497
  state?: string;
5474
5498
  }
5499
+ interface SslDNSCertStatus {
5500
+ message?: string;
5501
+ status: MittwaldAPIV2.Components.Schemas.SslProjectCertificateStatus;
5502
+ updatedAt?: string;
5503
+ }
5504
+ type SslProjectCertificateStatus = "issuing" | "ready" | "cnameError" | "error" | "unspecified";
5475
5505
  type StoragespaceStatisticsCategoryKind = "webspace" | "projectBackup" | "mailAddress" | "mysqlDatabase" | "redisDatabase" | "containerVolume";
5476
5506
  interface StoragespaceStatisticsCategory {
5477
5507
  kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategoryKind;
@@ -5740,60 +5770,30 @@ export declare namespace MittwaldAPIV2 {
5740
5770
  }
5741
5771
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
5742
5772
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
5743
- interface AihostingPlanOptions {
5744
- customerId: string;
5745
- deletedAt?: string;
5746
- keys: MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
5747
- nextTokenReset: string;
5748
- rateLimit: MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
5749
- tokens: MittwaldAPIV2.Components.Schemas.AihostingPlanUsageBig;
5750
- topUsages?: {
5751
- keyId?: string;
5752
- name: string;
5753
- projectId?: string;
5754
- tokenUsed: number;
5755
- }[];
5756
- }
5757
- interface AihostingPlanUsage {
5758
- available: number;
5759
- planLimit: number;
5760
- used: number;
5761
- }
5762
- interface AihostingPlanUsageBig {
5763
- available: number;
5764
- planLimit: number;
5765
- used: number;
5766
- }
5767
- interface OrderLicenceOrderPreviewResponse {
5768
- totalPrice: number;
5769
- }
5770
5773
  /**
5771
5774
  * Software Licences
5772
5775
  */
5773
- type OrderLicenceOrderPreview = {
5776
+ type OrderLicenceOrder = {
5774
5777
  licenceType: "typo3";
5775
5778
  /**
5776
5779
  * The mayor version for which a licence should be purchased.
5777
5780
  */
5778
5781
  mayorVersion: number;
5782
+ projectId: string;
5779
5783
  };
5780
5784
  /**
5781
5785
  * Software Licences
5782
5786
  */
5783
- type OrderLicenceOrder = {
5787
+ type OrderLicenceOrderPreview = {
5784
5788
  licenceType: "typo3";
5785
5789
  /**
5786
5790
  * The mayor version for which a licence should be purchased.
5787
5791
  */
5788
5792
  mayorVersion: number;
5789
- projectId: string;
5790
5793
  };
5791
- interface SslDNSCertStatus {
5792
- message?: string;
5793
- status: MittwaldAPIV2.Components.Schemas.SslProjectCertificateStatus;
5794
- updatedAt?: string;
5794
+ interface OrderLicenceOrderPreviewResponse {
5795
+ totalPrice: number;
5795
5796
  }
5796
- type SslProjectCertificateStatus = "issuing" | "ready" | "cname_error" | "error" | "undefined";
5797
5797
  interface CommonsAddress {
5798
5798
  street: string;
5799
5799
  houseNumber: string;
@@ -16748,6 +16748,7 @@ export declare namespace MittwaldAPIV2 {
16748
16748
  namespace Content {
16749
16749
  interface ApplicationJson {
16750
16750
  authCode: string;
16751
+ expirationDate?: string;
16751
16752
  }
16752
16753
  }
16753
16754
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.284.0';
1
+ export declare const MittwaldAPIClientVersion = '0.0.0-development-f31be48-20260120';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "0.0.0-development-e8d9270-20260119",
3
+ "version": "0.0.0-development-49bfc51-20260120",
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",
@@ -46,11 +46,11 @@
46
46
  "test:compile": "run tsc --noEmit"
47
47
  },
48
48
  "dependencies": {
49
- "@mittwald/api-client-commons": "^0.0.0-development-e8d9270-20260119",
49
+ "@mittwald/api-client-commons": "^0.0.0-development-49bfc51-20260120",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^0.0.0-development-e8d9270-20260119",
53
+ "@mittwald/api-code-generator": "^0.0.0-development-49bfc51-20260120",
54
54
  "@mittwald/react-use-promise": "^2.6.2",
55
55
  "@types/node": "^22.18.11",
56
56
  "@types/react": "^18.3.26",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "421fb85a679788d0f7f4c8bf0f5618435a895367"
83
+ "gitHead": "042ca89d14d5fb598c73287f762043c1d93b6575"
84
84
  }