@mittwald/api-client 4.305.0 → 4.306.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.305.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;
@@ -7395,68 +7457,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7395
7457
  }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
7396
7458
  [x: string]: unknown;
7397
7459
  }, 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
7460
  };
7461
7461
  /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
7462
7462
  readonly marketplace: {
@@ -18056,6 +18056,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18056
18056
  updateDomainContact: (request: {
18057
18057
  data: {
18058
18058
  contact: [import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField[]];
18059
+ avoidEmailConfirmation?: boolean | undefined;
18059
18060
  };
18060
18061
  domainId: string;
18061
18062
  contact: "owner";
@@ -18065,6 +18066,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18065
18066
  } | undefined;
18066
18067
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
18067
18068
  data: {
18069
+ avoidEmailConfirmation?: boolean | undefined;
18068
18070
  contact: [import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField[]];
18069
18071
  };
18070
18072
  } & {
@@ -18092,6 +18094,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18092
18094
  [x: string]: unknown;
18093
18095
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
18094
18096
  data: {
18097
+ avoidEmailConfirmation?: boolean | undefined;
18095
18098
  contact: [import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField[]];
18096
18099
  };
18097
18100
  } & {
@@ -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 {
@@ -10730,6 +10730,52 @@ export declare namespace MittwaldAPIV2 {
10730
10730
  }
10731
10731
  }
10732
10732
  }
10733
+ namespace V2LicensesLicenseIdContract {
10734
+ namespace Get {
10735
+ namespace Parameters {
10736
+ type Path = {
10737
+ licenseId: string;
10738
+ };
10739
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
10740
+ type Query = {};
10741
+ }
10742
+ namespace Responses {
10743
+ namespace $200 {
10744
+ namespace Content {
10745
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
10746
+ }
10747
+ }
10748
+ namespace $400 {
10749
+ namespace Content {
10750
+ interface ApplicationJson {
10751
+ [k: string]: unknown;
10752
+ }
10753
+ }
10754
+ }
10755
+ namespace $404 {
10756
+ namespace Content {
10757
+ interface ApplicationJson {
10758
+ [k: string]: unknown;
10759
+ }
10760
+ }
10761
+ }
10762
+ namespace $429 {
10763
+ namespace Content {
10764
+ interface ApplicationJson {
10765
+ [k: string]: unknown;
10766
+ }
10767
+ }
10768
+ }
10769
+ namespace Default {
10770
+ namespace Content {
10771
+ interface ApplicationJson {
10772
+ [k: string]: unknown;
10773
+ }
10774
+ }
10775
+ }
10776
+ }
10777
+ }
10778
+ }
10733
10779
  namespace V2MailAddressesMailAddressIdContract {
10734
10780
  namespace Get {
10735
10781
  namespace Parameters {
@@ -15443,7 +15489,6 @@ export declare namespace MittwaldAPIV2 {
15443
15489
  }
15444
15490
  namespace V2AppinstallationsAppInstallationIdDatabases { }
15445
15491
  namespace V2ContractsContractIdItemsContractItemIdNextTerminationDates { }
15446
- namespace V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort { }
15447
15492
  namespace V2CustomerCustomerIdActionsLeave { }
15448
15493
  namespace V2CustomersCustomerIdActionsLeave { }
15449
15494
  namespace V2DnsZonesZoneIdRecordsetAcombinedCustom { }
@@ -17171,6 +17216,10 @@ export declare namespace MittwaldAPIV2 {
17171
17216
  contact: "owner";
17172
17217
  };
17173
17218
  interface RequestBody {
17219
+ /**
17220
+ * Whether to avoid the email confirmation if possible. If set to true, a transfer lock of 60 days might be applied to the domain.
17221
+ */
17222
+ avoidEmailConfirmation?: boolean;
17174
17223
  /**
17175
17224
  * @minItems 1
17176
17225
  */
@@ -28938,51 +28987,5 @@ export declare namespace MittwaldAPIV2 {
28938
28987
  }
28939
28988
  }
28940
28989
  }
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
28990
  }
28988
28991
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.304.0';
1
+ export declare const MittwaldAPIClientVersion = '4.305.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.306.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.306.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.306.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": "bb410c17fe39c31dffa1c513baa163bd8236f4e7"
84
84
  }