@mittwald/api-client 4.206.0 → 4.207.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.
@@ -80,6 +80,8 @@ const buildContractApi = (baseClient) => ({
80
80
  getDetailOfContractByDomain: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByDomain, baseClient.contract.getDetailOfContractByDomain).getApiResource,
81
81
  /** Return the Contract for the given LeadFyndrProfile. */
82
82
  getDetailOfContractByLeadFyndr: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByLeadFyndr, baseClient.contract.getDetailOfContractByLeadFyndr).getApiResource,
83
+ /** Return the Contract for the given Mail Address. */
84
+ getDetailOfContractByMailAddress: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByMailAddress, baseClient.contract.getDetailOfContractByMailAddress).getApiResource,
83
85
  /** Return the Contract for the given Project. */
84
86
  getDetailOfContractByProject: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByProject, baseClient.contract.getDetailOfContractByProject).getApiResource,
85
87
  /** Return the Contract for the given Server. */
@@ -106,8 +108,6 @@ const buildContractApi = (baseClient) => ({
106
108
  orderListCustomerOrders: new ApiCallAsyncResourceFactory(descriptors.orderListCustomerOrders, baseClient.contract.orderListCustomerOrders).getApiResource,
107
109
  /** Get list of Orders of a Project. */
108
110
  orderListProjectOrders: new ApiCallAsyncResourceFactory(descriptors.orderListProjectOrders, baseClient.contract.orderListProjectOrders).getApiResource,
109
- /** Return the Contract for the given Mail Address. */
110
- getDetailOfContractByMailAddress: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByMailAddress, baseClient.contract.getDetailOfContractByMailAddress).getApiResource,
111
111
  });
112
112
  const buildMarketplaceApi = (baseClient) => ({
113
113
  /** Get Contributor Billing Information. */
@@ -158,6 +158,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
158
158
  getDetailOfContractByDomain: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByDomain),
159
159
  /** Return the Contract for the given LeadFyndrProfile. */
160
160
  getDetailOfContractByLeadFyndr: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByLeadFyndr),
161
+ /** Return the Contract for the given Mail Address. */
162
+ getDetailOfContractByMailAddress: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByMailAddress),
161
163
  /** Return the Contract for the given Project. */
162
164
  getDetailOfContractByProject: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByProject),
163
165
  /** Return the Contract for the given Server. */
@@ -194,8 +196,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
194
196
  orderPreviewOrder: this.requestFunctionFactory(descriptors.orderPreviewOrder),
195
197
  /** Preview TariffChange. */
196
198
  orderPreviewTariffChange: this.requestFunctionFactory(descriptors.orderPreviewTariffChange),
197
- /** Return the Contract for the given Mail Address. */
198
- getDetailOfContractByMailAddress: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByMailAddress),
199
199
  };
200
200
  /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
201
201
  marketplace = {
@@ -418,6 +418,12 @@ export const contractGetDetailOfContractByLeadFyndr = {
418
418
  method: "GET",
419
419
  operationId: "contract-get-detail-of-contract-by-lead-fyndr",
420
420
  };
421
+ /** Return the Contract for the given Mail Address. */
422
+ export const contractGetDetailOfContractByMailAddress = {
423
+ path: "/v2/mail-addresses/{mailAddressId}/contract",
424
+ method: "GET",
425
+ operationId: "contract-get-detail-of-contract-by-mail-address",
426
+ };
421
427
  /** Return the Contract for the given Project. */
422
428
  export const contractGetDetailOfContractByProject = {
423
429
  path: "/v2/projects/{projectId}/contract",
@@ -2494,9 +2500,3 @@ export const verificationVerifyCompany = {
2494
2500
  method: "POST",
2495
2501
  operationId: "verification-verify-company",
2496
2502
  };
2497
- /** Return the Contract for the given Mail Address. */
2498
- export const contractGetDetailOfContractByMailAddress = {
2499
- path: "/v2/mail-addresses/{mailAddressId}/contract",
2500
- method: "GET",
2501
- operationId: "contract-get-detail-of-contract-by-mail-address",
2502
- };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.205.0';
1
+ export const MittwaldAPIClientVersion = '4.206.0';
@@ -593,6 +593,21 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
593
593
  customerId: string;
594
594
  termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
595
595
  }>;
596
+ /** Return the Contract for the given Mail Address. */
597
+ getDetailOfContractByMailAddress: (conf: {
598
+ mailAddressId: string;
599
+ headers?: {
600
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
601
+ "x-access-token"?: string | undefined;
602
+ } | undefined;
603
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
604
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
605
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
606
+ contractId: string;
607
+ contractNumber: string;
608
+ customerId: string;
609
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
610
+ }>;
596
611
  /** Return the Contract for the given Project. */
597
612
  getDetailOfContractByProject: (conf: {
598
613
  projectId: string;
@@ -836,21 +851,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
836
851
  "x-access-token"?: string | undefined;
837
852
  } | undefined;
838
853
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
839
- /** Return the Contract for the given Mail Address. */
840
- getDetailOfContractByMailAddress: (conf: {
841
- mailAddressId: string;
842
- headers?: {
843
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
844
- "x-access-token"?: string | undefined;
845
- } | undefined;
846
- }) => import("@mittwald/react-use-promise").AsyncResource<{
847
- additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
848
- baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
849
- contractId: string;
850
- contractNumber: string;
851
- customerId: string;
852
- termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
853
- }>;
854
854
  };
855
855
  declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
856
856
  /** Get Contributor Billing Information. */
@@ -4694,6 +4694,68 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4694
4694
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4695
4695
  [x: string]: unknown;
4696
4696
  }, 429, "application/json">>>;
4697
+ /** Return the Contract for the given Mail Address. */
4698
+ getDetailOfContractByMailAddress: (request: {
4699
+ mailAddressId: string;
4700
+ headers?: {
4701
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4702
+ "x-access-token"?: string | undefined;
4703
+ } | undefined;
4704
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4705
+ headers?: Partial<{
4706
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4707
+ }>;
4708
+ } & {
4709
+ pathParameters: {
4710
+ mailAddressId: string;
4711
+ };
4712
+ } & {
4713
+ headers: {
4714
+ "x-access-token"?: string | undefined;
4715
+ } & Partial<{
4716
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4717
+ }>;
4718
+ }, import("@mittwald/api-client-commons").Response<{
4719
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
4720
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
4721
+ contractId: string;
4722
+ contractNumber: string;
4723
+ customerId: string;
4724
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
4725
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4726
+ [x: string]: unknown;
4727
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4728
+ [x: string]: unknown;
4729
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4730
+ [x: string]: unknown;
4731
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4732
+ headers?: Partial<{
4733
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4734
+ }>;
4735
+ } & {
4736
+ pathParameters: {
4737
+ mailAddressId: string;
4738
+ };
4739
+ } & {
4740
+ headers: {
4741
+ "x-access-token"?: string | undefined;
4742
+ } & Partial<{
4743
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4744
+ }>;
4745
+ }, import("@mittwald/api-client-commons").Response<{
4746
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
4747
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
4748
+ contractId: string;
4749
+ contractNumber: string;
4750
+ customerId: string;
4751
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
4752
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4753
+ [x: string]: unknown;
4754
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4755
+ [x: string]: unknown;
4756
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4757
+ [x: string]: unknown;
4758
+ }, 429, "application/json">>>;
4697
4759
  /** Return the Contract for the given Project. */
4698
4760
  getDetailOfContractByProject: (request: {
4699
4761
  projectId: string;
@@ -6051,68 +6113,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6051
6113
  }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
6052
6114
  [x: string]: unknown;
6053
6115
  }, 429, "application/json">>>;
6054
- /** Return the Contract for the given Mail Address. */
6055
- getDetailOfContractByMailAddress: (request: {
6056
- mailAddressId: string;
6057
- headers?: {
6058
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6059
- "x-access-token"?: string | undefined;
6060
- } | undefined;
6061
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6062
- headers?: Partial<{
6063
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6064
- }>;
6065
- } & {
6066
- pathParameters: {
6067
- mailAddressId: string;
6068
- };
6069
- } & {
6070
- headers: {
6071
- "x-access-token"?: string | undefined;
6072
- } & Partial<{
6073
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6074
- }>;
6075
- }, import("@mittwald/api-client-commons").Response<{
6076
- additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
6077
- baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
6078
- contractId: string;
6079
- contractNumber: string;
6080
- customerId: string;
6081
- termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
6082
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6083
- [x: string]: unknown;
6084
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6085
- [x: string]: unknown;
6086
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6087
- [x: string]: unknown;
6088
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6089
- headers?: Partial<{
6090
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6091
- }>;
6092
- } & {
6093
- pathParameters: {
6094
- mailAddressId: string;
6095
- };
6096
- } & {
6097
- headers: {
6098
- "x-access-token"?: string | undefined;
6099
- } & Partial<{
6100
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6101
- }>;
6102
- }, import("@mittwald/api-client-commons").Response<{
6103
- additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
6104
- baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
6105
- contractId: string;
6106
- contractNumber: string;
6107
- customerId: string;
6108
- termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
6109
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6110
- [x: string]: unknown;
6111
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6112
- [x: string]: unknown;
6113
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6114
- [x: string]: unknown;
6115
- }, 429, "application/json">>>;
6116
6116
  };
6117
6117
  /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
6118
6118
  readonly marketplace: {
@@ -143,6 +143,8 @@ export declare const contractGetDetailOfContractByCertificate: OpenAPIOperation<
143
143
  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">>;
144
144
  /** Return the Contract for the given LeadFyndrProfile. */
145
145
  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">>;
146
+ /** Return the Contract for the given Mail Address. */
147
+ 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">>;
146
148
  /** Return the Contract for the given Project. */
147
149
  export declare const contractGetDetailOfContractByProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
148
150
  /** Return the Contract for the given Server. */
@@ -835,5 +837,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
835
837
  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.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
836
838
  /** Check if a company exists. */
837
839
  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.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
838
- /** Return the Contract for the given Mail Address. */
839
- 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">>;
@@ -282,6 +282,10 @@ export declare namespace MittwaldAPIV2 {
282
282
  type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByLeadFyndr>;
283
283
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByLeadFyndr, TStatus>;
284
284
  }
285
+ namespace ContractGetDetailOfContractByMailAddress {
286
+ type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByMailAddress>;
287
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByMailAddress, TStatus>;
288
+ }
285
289
  namespace ContractGetDetailOfContractByProject {
286
290
  type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByProject>;
287
291
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByProject, TStatus>;
@@ -1666,10 +1670,6 @@ export declare namespace MittwaldAPIV2 {
1666
1670
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1667
1671
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1668
1672
  }
1669
- namespace ContractGetDetailOfContractByMailAddress {
1670
- type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByMailAddress>;
1671
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByMailAddress, TStatus>;
1672
- }
1673
1673
  }
1674
1674
  namespace Components {
1675
1675
  namespace Schemas {
@@ -9016,6 +9016,52 @@ export declare namespace MittwaldAPIV2 {
9016
9016
  }
9017
9017
  }
9018
9018
  }
9019
+ namespace V2MailAddressesMailAddressIdContract {
9020
+ namespace Get {
9021
+ namespace Parameters {
9022
+ type Path = {
9023
+ mailAddressId: string;
9024
+ };
9025
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9026
+ type Query = {};
9027
+ }
9028
+ namespace Responses {
9029
+ namespace $200 {
9030
+ namespace Content {
9031
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
9032
+ }
9033
+ }
9034
+ namespace $400 {
9035
+ namespace Content {
9036
+ interface ApplicationJson {
9037
+ [k: string]: unknown;
9038
+ }
9039
+ }
9040
+ }
9041
+ namespace $404 {
9042
+ namespace Content {
9043
+ interface ApplicationJson {
9044
+ [k: string]: unknown;
9045
+ }
9046
+ }
9047
+ }
9048
+ namespace $429 {
9049
+ namespace Content {
9050
+ interface ApplicationJson {
9051
+ [k: string]: unknown;
9052
+ }
9053
+ }
9054
+ }
9055
+ namespace Default {
9056
+ namespace Content {
9057
+ interface ApplicationJson {
9058
+ [k: string]: unknown;
9059
+ }
9060
+ }
9061
+ }
9062
+ }
9063
+ }
9064
+ }
9019
9065
  namespace V2ProjectsProjectIdContract {
9020
9066
  namespace Get {
9021
9067
  namespace Parameters {
@@ -26321,51 +26367,5 @@ export declare namespace MittwaldAPIV2 {
26321
26367
  }
26322
26368
  }
26323
26369
  }
26324
- namespace V2MailAddressesMailAddressIdContract {
26325
- namespace Get {
26326
- namespace Parameters {
26327
- type Path = {
26328
- mailAddressId: string;
26329
- };
26330
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
26331
- type Query = {};
26332
- }
26333
- namespace Responses {
26334
- namespace $200 {
26335
- namespace Content {
26336
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
26337
- }
26338
- }
26339
- namespace $400 {
26340
- namespace Content {
26341
- interface ApplicationJson {
26342
- [k: string]: unknown;
26343
- }
26344
- }
26345
- }
26346
- namespace $404 {
26347
- namespace Content {
26348
- interface ApplicationJson {
26349
- [k: string]: unknown;
26350
- }
26351
- }
26352
- }
26353
- namespace $429 {
26354
- namespace Content {
26355
- interface ApplicationJson {
26356
- [k: string]: unknown;
26357
- }
26358
- }
26359
- }
26360
- namespace Default {
26361
- namespace Content {
26362
- interface ApplicationJson {
26363
- [k: string]: unknown;
26364
- }
26365
- }
26366
- }
26367
- }
26368
- }
26369
- }
26370
26370
  }
26371
26371
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.205.0';
1
+ export declare const MittwaldAPIClientVersion = '4.206.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.206.0",
3
+ "version": "4.207.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",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "739a66adec503bf41a7c32036d421a78e1050499"
83
+ "gitHead": "ed6529f70c4cb8f2454a072c31854ab2c05ddf40"
84
84
  }