@mittwald/api-client 4.305.0 → 4.307.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -104,6 +104,8 @@ const buildContractApi = (baseClient) => ({
104
104
  getDetailOfContractByDomain: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByDomain, baseClient.contract.getDetailOfContractByDomain).getApiResource,
105
105
  /** Return the Contract for the given LeadFyndrProfile. */
106
106
  getDetailOfContractByLeadFyndr: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByLeadFyndr, baseClient.contract.getDetailOfContractByLeadFyndr).getApiResource,
107
+ /** Return the Contract for the given License. */
108
+ getDetailOfContractByLicense: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByLicense, baseClient.contract.getDetailOfContractByLicense).getApiResource,
107
109
  /** Return the Contract for the given Mail Address. */
108
110
  getDetailOfContractByMailAddress: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByMailAddress, baseClient.contract.getDetailOfContractByMailAddress).getApiResource,
109
111
  /** Return the Contract for the given Project. */
@@ -132,8 +134,6 @@ const buildContractApi = (baseClient) => ({
132
134
  orderListCustomerOrders: new ApiCallAsyncResourceFactory(descriptors.orderListCustomerOrders, baseClient.contract.orderListCustomerOrders).getApiResource,
133
135
  /** Get list of Orders of a Project. */
134
136
  orderListProjectOrders: new ApiCallAsyncResourceFactory(descriptors.orderListProjectOrders, baseClient.contract.orderListProjectOrders).getApiResource,
135
- /** Return the Contract for the given License. */
136
- getDetailOfContractByLicense: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByLicense, baseClient.contract.getDetailOfContractByLicense).getApiResource,
137
137
  });
138
138
  const buildMarketplaceApi = (baseClient) => ({
139
139
  /** Get a Contributor. */
@@ -197,6 +197,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
197
197
  getDetailOfContractByDomain: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByDomain),
198
198
  /** Return the Contract for the given LeadFyndrProfile. */
199
199
  getDetailOfContractByLeadFyndr: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByLeadFyndr),
200
+ /** Return the Contract for the given License. */
201
+ getDetailOfContractByLicense: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByLicense),
200
202
  /** Return the Contract for the given Mail Address. */
201
203
  getDetailOfContractByMailAddress: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByMailAddress),
202
204
  /** Return the Contract for the given Project. */
@@ -235,8 +237,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
235
237
  orderPreviewOrder: this.requestFunctionFactory(descriptors.orderPreviewOrder),
236
238
  /** Preview TariffChange. */
237
239
  orderPreviewTariffChange: this.requestFunctionFactory(descriptors.orderPreviewTariffChange),
238
- /** Return the Contract for the given License. */
239
- getDetailOfContractByLicense: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByLicense),
240
240
  };
241
241
  /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
242
242
  marketplace = {
@@ -526,6 +526,12 @@ export const contractGetDetailOfContractByLeadFyndr = {
526
526
  method: "GET",
527
527
  operationId: "contract-get-detail-of-contract-by-lead-fyndr",
528
528
  };
529
+ /** Return the Contract for the given License. */
530
+ export const contractGetDetailOfContractByLicense = {
531
+ path: "/v2/licenses/{licenseId}/contract",
532
+ method: "GET",
533
+ operationId: "contract-get-detail-of-contract-by-license",
534
+ };
529
535
  /** Return the Contract for the given Mail Address. */
530
536
  export const contractGetDetailOfContractByMailAddress = {
531
537
  path: "/v2/mail-addresses/{mailAddressId}/contract",
@@ -2692,9 +2698,3 @@ export const verificationVerifyCompany = {
2692
2698
  method: "POST",
2693
2699
  operationId: "verification-verify-company",
2694
2700
  };
2695
- /** Return the Contract for the given License. */
2696
- export const contractGetDetailOfContractByLicense = {
2697
- path: "/v2/licenses/{licenseId}/contract",
2698
- method: "GET",
2699
- operationId: "contract-get-detail-of-contract-by-license",
2700
- };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.304.0';
1
+ export const MittwaldAPIClientVersion = '4.306.0';
@@ -764,6 +764,21 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
764
764
  customerId: string;
765
765
  termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
766
766
  }>;
767
+ /** Return the Contract for the given License. */
768
+ getDetailOfContractByLicense: (conf: {
769
+ licenseId: string;
770
+ headers?: {
771
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
772
+ "x-access-token"?: string | undefined;
773
+ } | undefined;
774
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
775
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
776
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
777
+ contractId: string;
778
+ contractNumber: string;
779
+ customerId: string;
780
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
781
+ }>;
767
782
  /** Return the Contract for the given Mail Address. */
768
783
  getDetailOfContractByMailAddress: (conf: {
769
784
  mailAddressId: string;
@@ -1024,21 +1039,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
1024
1039
  templateNames?: string[] | undefined;
1025
1040
  } | undefined;
1026
1041
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
1027
- /** Return the Contract for the given License. */
1028
- getDetailOfContractByLicense: (conf: {
1029
- licenseId: string;
1030
- headers?: {
1031
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1032
- "x-access-token"?: string | undefined;
1033
- } | undefined;
1034
- }) => import("@mittwald/react-use-promise").AsyncResource<{
1035
- additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
1036
- baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
1037
- contractId: string;
1038
- contractNumber: string;
1039
- customerId: string;
1040
- termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
1041
- }>;
1042
1042
  };
1043
1043
  declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1044
1044
  /** Get a Contributor. */
@@ -5945,6 +5945,68 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5945
5945
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5946
5946
  [x: string]: unknown;
5947
5947
  }, 429, "application/json">>>;
5948
+ /** Return the Contract for the given License. */
5949
+ getDetailOfContractByLicense: (request: {
5950
+ licenseId: string;
5951
+ headers?: {
5952
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5953
+ "x-access-token"?: string | undefined;
5954
+ } | undefined;
5955
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5956
+ headers?: Partial<{
5957
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5958
+ }>;
5959
+ } & {
5960
+ pathParameters: {
5961
+ licenseId: string;
5962
+ };
5963
+ } & {
5964
+ headers: {
5965
+ "x-access-token"?: string | undefined;
5966
+ } & Partial<{
5967
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5968
+ }>;
5969
+ }, import("@mittwald/api-client-commons").Response<{
5970
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
5971
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
5972
+ contractId: string;
5973
+ contractNumber: string;
5974
+ customerId: string;
5975
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
5976
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5977
+ [x: string]: unknown;
5978
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5979
+ [x: string]: unknown;
5980
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5981
+ [x: string]: unknown;
5982
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5983
+ headers?: Partial<{
5984
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5985
+ }>;
5986
+ } & {
5987
+ pathParameters: {
5988
+ licenseId: string;
5989
+ };
5990
+ } & {
5991
+ headers: {
5992
+ "x-access-token"?: string | undefined;
5993
+ } & Partial<{
5994
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5995
+ }>;
5996
+ }, import("@mittwald/api-client-commons").Response<{
5997
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
5998
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
5999
+ contractId: string;
6000
+ contractNumber: string;
6001
+ customerId: string;
6002
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
6003
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6004
+ [x: string]: unknown;
6005
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6006
+ [x: string]: unknown;
6007
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6008
+ [x: string]: unknown;
6009
+ }, 429, "application/json">>>;
5948
6010
  /** Return the Contract for the given Mail Address. */
5949
6011
  getDetailOfContractByMailAddress: (request: {
5950
6012
  mailAddressId: string;
@@ -6904,8 +6966,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6904
6966
  monthlyTokens: number;
6905
6967
  requestsPerMinute: number;
6906
6968
  useFreeTrial?: boolean | undefined;
6969
+ } | {
6970
+ description: string;
6971
+ licenseType: "typo3";
6972
+ majorVersion: number;
6973
+ projectId: string;
6907
6974
  } | undefined;
6908
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | undefined;
6975
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
6909
6976
  } | undefined;
6910
6977
  headers?: {
6911
6978
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -6913,8 +6980,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6913
6980
  } | undefined;
6914
6981
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6915
6982
  data: {
6916
- orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder) | undefined;
6917
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | undefined;
6983
+ orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLicenseOrder) | undefined;
6984
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
6918
6985
  };
6919
6986
  } & {
6920
6987
  headers?: Partial<{
@@ -6936,8 +7003,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6936
7003
  [x: string]: unknown;
6937
7004
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6938
7005
  data: {
6939
- orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder) | undefined;
6940
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | undefined;
7006
+ orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLicenseOrder) | undefined;
7007
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
6941
7008
  };
6942
7009
  } & {
6943
7010
  headers?: Partial<{
@@ -7276,16 +7343,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7276
7343
  } | {
7277
7344
  monthlyTokens: number;
7278
7345
  requestsPerMinute: number;
7346
+ } | {
7347
+ licenseType: "typo3";
7348
+ majorVersion: number;
7349
+ description?: string | undefined;
7279
7350
  } | undefined;
7280
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | undefined;
7351
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
7281
7352
  } | undefined;
7282
7353
  headers?: {
7283
7354
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7284
7355
  } | undefined;
7285
7356
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7286
7357
  data: {
7287
- orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview) | undefined;
7288
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | undefined;
7358
+ orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLicenseOrderPreview) | undefined;
7359
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
7289
7360
  };
7290
7361
  } & {
7291
7362
  headers?: Partial<{
@@ -7299,8 +7370,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7299
7370
  [x: string]: unknown;
7300
7371
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7301
7372
  data: {
7302
- orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview) | undefined;
7303
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | undefined;
7373
+ orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLicenseOrderPreview) | undefined;
7374
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
7304
7375
  };
7305
7376
  } & {
7306
7377
  headers?: Partial<{
@@ -7395,68 +7466,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7395
7466
  }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
7396
7467
  [x: string]: unknown;
7397
7468
  }, 429, "application/json">>>;
7398
- /** Return the Contract for the given License. */
7399
- getDetailOfContractByLicense: (request: {
7400
- licenseId: string;
7401
- headers?: {
7402
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7403
- "x-access-token"?: string | undefined;
7404
- } | undefined;
7405
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7406
- headers?: Partial<{
7407
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7408
- }>;
7409
- } & {
7410
- pathParameters: {
7411
- licenseId: string;
7412
- };
7413
- } & {
7414
- headers: {
7415
- "x-access-token"?: string | undefined;
7416
- } & Partial<{
7417
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7418
- }>;
7419
- }, import("@mittwald/api-client-commons").Response<{
7420
- additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
7421
- baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
7422
- contractId: string;
7423
- contractNumber: string;
7424
- customerId: string;
7425
- termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
7426
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7427
- [x: string]: unknown;
7428
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7429
- [x: string]: unknown;
7430
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7431
- [x: string]: unknown;
7432
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7433
- headers?: Partial<{
7434
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7435
- }>;
7436
- } & {
7437
- pathParameters: {
7438
- licenseId: string;
7439
- };
7440
- } & {
7441
- headers: {
7442
- "x-access-token"?: string | undefined;
7443
- } & Partial<{
7444
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7445
- }>;
7446
- }, import("@mittwald/api-client-commons").Response<{
7447
- additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
7448
- baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
7449
- contractId: string;
7450
- contractNumber: string;
7451
- customerId: string;
7452
- termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
7453
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
7454
- [x: string]: unknown;
7455
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7456
- [x: string]: unknown;
7457
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7458
- [x: string]: unknown;
7459
- }, 429, "application/json">>>;
7460
7469
  };
7461
7470
  /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
7462
7471
  readonly marketplace: {
@@ -18056,6 +18065,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18056
18065
  updateDomainContact: (request: {
18057
18066
  data: {
18058
18067
  contact: [import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField[]];
18068
+ avoidEmailConfirmation?: boolean | undefined;
18059
18069
  };
18060
18070
  domainId: string;
18061
18071
  contact: "owner";
@@ -18065,6 +18075,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18065
18075
  } | undefined;
18066
18076
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
18067
18077
  data: {
18078
+ avoidEmailConfirmation?: boolean | undefined;
18068
18079
  contact: [import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField[]];
18069
18080
  };
18070
18081
  } & {
@@ -18092,6 +18103,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18092
18103
  [x: string]: unknown;
18093
18104
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
18094
18105
  data: {
18106
+ avoidEmailConfirmation?: boolean | undefined;
18095
18107
  contact: [import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField[]];
18096
18108
  };
18097
18109
  } & {
@@ -179,6 +179,8 @@ export declare const contractGetDetailOfContractByCertificate: OpenAPIOperation<
179
179
  export declare const contractGetDetailOfContractByDomain: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
180
180
  /** Return the Contract for the given LeadFyndrProfile. */
181
181
  export declare const contractGetDetailOfContractByLeadFyndr: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
182
+ /** Return the Contract for the given License. */
183
+ export declare const contractGetDetailOfContractByLicense: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
182
184
  /** Return the Contract for the given Mail Address. */
183
185
  export declare const contractGetDetailOfContractByMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
184
186
  /** Return the Contract for the given Project. */
@@ -901,5 +903,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
901
903
  export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
902
904
  /** Check if a company exists. */
903
905
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
904
- /** Return the Contract for the given License. */
905
- export declare const contractGetDetailOfContractByLicense: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -354,6 +354,10 @@ export declare namespace MittwaldAPIV2 {
354
354
  type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByLeadFyndr>;
355
355
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByLeadFyndr, TStatus>;
356
356
  }
357
+ namespace ContractGetDetailOfContractByLicense {
358
+ type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByLicense>;
359
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByLicense, TStatus>;
360
+ }
357
361
  namespace ContractGetDetailOfContractByMailAddress {
358
362
  type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByMailAddress>;
359
363
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByMailAddress, TStatus>;
@@ -1798,10 +1802,6 @@ export declare namespace MittwaldAPIV2 {
1798
1802
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1799
1803
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1800
1804
  }
1801
- namespace ContractGetDetailOfContractByLicense {
1802
- type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByLicense>;
1803
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByLicense, TStatus>;
1804
- }
1805
1805
  }
1806
1806
  namespace Components {
1807
1807
  namespace Schemas {
@@ -5815,6 +5815,52 @@ export declare namespace MittwaldAPIV2 {
5815
5815
  exists: boolean;
5816
5816
  }
5817
5817
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
5818
+ interface LicenseAppVersionMeta {
5819
+ description: string;
5820
+ }
5821
+ interface LicenseMeta {
5822
+ appVersion?: MittwaldAPIV2.Components.Schemas.LicenseAppVersionMeta;
5823
+ }
5824
+ interface LicenseKey {
5825
+ key: string;
5826
+ }
5827
+ interface LicenseReference {
5828
+ aggregate: "project";
5829
+ domain: "project";
5830
+ id: string;
5831
+ }
5832
+ interface LicenseKeyResponse {
5833
+ keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
5834
+ }
5835
+ interface LicenseExternalKey {
5836
+ externalKey: string;
5837
+ }
5838
+ type OrderLicenseOrder = {
5839
+ /**
5840
+ * Describe for which typo3 instance the license will be used.
5841
+ */
5842
+ description: string;
5843
+ licenseType: "typo3";
5844
+ /**
5845
+ * The major version for which a license should be purchased.
5846
+ */
5847
+ majorVersion: number;
5848
+ projectId: string;
5849
+ };
5850
+ interface OrderLicenseOrderPreviewResponse {
5851
+ totalPrice: number;
5852
+ }
5853
+ type OrderLicenseOrderPreview = {
5854
+ /**
5855
+ * Describe for which typo3 instance the license will be used.
5856
+ */
5857
+ description?: string;
5858
+ licenseType: "typo3";
5859
+ /**
5860
+ * The major version for which a license should be purchased.
5861
+ */
5862
+ majorVersion: number;
5863
+ };
5818
5864
  interface CommonsAddress {
5819
5865
  street: string;
5820
5866
  houseNumber: string;
@@ -10730,6 +10776,52 @@ export declare namespace MittwaldAPIV2 {
10730
10776
  }
10731
10777
  }
10732
10778
  }
10779
+ namespace V2LicensesLicenseIdContract {
10780
+ namespace Get {
10781
+ namespace Parameters {
10782
+ type Path = {
10783
+ licenseId: string;
10784
+ };
10785
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
10786
+ type Query = {};
10787
+ }
10788
+ namespace Responses {
10789
+ namespace $200 {
10790
+ namespace Content {
10791
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
10792
+ }
10793
+ }
10794
+ namespace $400 {
10795
+ namespace Content {
10796
+ interface ApplicationJson {
10797
+ [k: string]: unknown;
10798
+ }
10799
+ }
10800
+ }
10801
+ namespace $404 {
10802
+ namespace Content {
10803
+ interface ApplicationJson {
10804
+ [k: string]: unknown;
10805
+ }
10806
+ }
10807
+ }
10808
+ namespace $429 {
10809
+ namespace Content {
10810
+ interface ApplicationJson {
10811
+ [k: string]: unknown;
10812
+ }
10813
+ }
10814
+ }
10815
+ namespace Default {
10816
+ namespace Content {
10817
+ interface ApplicationJson {
10818
+ [k: string]: unknown;
10819
+ }
10820
+ }
10821
+ }
10822
+ }
10823
+ }
10824
+ }
10733
10825
  namespace V2MailAddressesMailAddressIdContract {
10734
10826
  namespace Get {
10735
10827
  namespace Parameters {
@@ -15443,7 +15535,6 @@ export declare namespace MittwaldAPIV2 {
15443
15535
  }
15444
15536
  namespace V2AppinstallationsAppInstallationIdDatabases { }
15445
15537
  namespace V2ContractsContractIdItemsContractItemIdNextTerminationDates { }
15446
- namespace V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort { }
15447
15538
  namespace V2CustomerCustomerIdActionsLeave { }
15448
15539
  namespace V2CustomersCustomerIdActionsLeave { }
15449
15540
  namespace V2DnsZonesZoneIdRecordsetAcombinedCustom { }
@@ -17171,6 +17262,10 @@ export declare namespace MittwaldAPIV2 {
17171
17262
  contact: "owner";
17172
17263
  };
17173
17264
  interface RequestBody {
17265
+ /**
17266
+ * Whether to avoid the email confirmation if possible. If set to true, a transfer lock of 60 days might be applied to the domain.
17267
+ */
17268
+ avoidEmailConfirmation?: boolean;
17174
17269
  /**
17175
17270
  * @minItems 1
17176
17271
  */
@@ -22977,8 +23072,8 @@ export declare namespace MittwaldAPIV2 {
22977
23072
  namespace Parameters {
22978
23073
  type Path = {};
22979
23074
  interface RequestBody {
22980
- orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | MittwaldAPIV2.Components.Schemas.OrderServerOrder | MittwaldAPIV2.Components.Schemas.OrderDomainOrder | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder;
22981
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting";
23075
+ orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | MittwaldAPIV2.Components.Schemas.OrderServerOrder | MittwaldAPIV2.Components.Schemas.OrderDomainOrder | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder | MittwaldAPIV2.Components.Schemas.OrderLicenseOrder;
23076
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license";
22982
23077
  }
22983
23078
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
22984
23079
  type Query = {};
@@ -23180,8 +23275,8 @@ export declare namespace MittwaldAPIV2 {
23180
23275
  namespace Parameters {
23181
23276
  type Path = {};
23182
23277
  interface RequestBody {
23183
- orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview;
23184
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting";
23278
+ orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLicenseOrderPreview;
23279
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license";
23185
23280
  }
23186
23281
  type Header = {};
23187
23282
  type Query = {};
@@ -23189,7 +23284,7 @@ export declare namespace MittwaldAPIV2 {
23189
23284
  namespace Responses {
23190
23285
  namespace $200 {
23191
23286
  namespace Content {
23192
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreviewResponse;
23287
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLicenseOrderPreviewResponse;
23193
23288
  }
23194
23289
  }
23195
23290
  namespace $400 {
@@ -28938,51 +29033,5 @@ export declare namespace MittwaldAPIV2 {
28938
29033
  }
28939
29034
  }
28940
29035
  }
28941
- namespace V2LicensesLicenseIdContract {
28942
- namespace Get {
28943
- namespace Parameters {
28944
- type Path = {
28945
- licenseId: string;
28946
- };
28947
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
28948
- type Query = {};
28949
- }
28950
- namespace Responses {
28951
- namespace $200 {
28952
- namespace Content {
28953
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
28954
- }
28955
- }
28956
- namespace $400 {
28957
- namespace Content {
28958
- interface ApplicationJson {
28959
- [k: string]: unknown;
28960
- }
28961
- }
28962
- }
28963
- namespace $404 {
28964
- namespace Content {
28965
- interface ApplicationJson {
28966
- [k: string]: unknown;
28967
- }
28968
- }
28969
- }
28970
- namespace $429 {
28971
- namespace Content {
28972
- interface ApplicationJson {
28973
- [k: string]: unknown;
28974
- }
28975
- }
28976
- }
28977
- namespace Default {
28978
- namespace Content {
28979
- interface ApplicationJson {
28980
- [k: string]: unknown;
28981
- }
28982
- }
28983
- }
28984
- }
28985
- }
28986
- }
28987
29036
  }
28988
29037
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.304.0';
1
+ export declare const MittwaldAPIClientVersion = '4.306.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.305.0",
3
+ "version": "4.307.0",
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": "^4.305.0",
49
+ "@mittwald/api-client-commons": "^4.307.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.305.0",
53
+ "@mittwald/api-code-generator": "^4.307.0",
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": "46b63576853aba493ac3275e4b942b3275467481"
83
+ "gitHead": "da4743e302e6ac2e75edefef0e7a1a5a7f26e691"
84
84
  }