@mittwald/api-client 4.133.0 → 4.135.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.
@@ -150,6 +150,10 @@ const buildCustomerApi = (baseClient) => ({
150
150
  getCustomer: new ApiCallAsyncResourceFactory(descriptors.customerGetCustomer, baseClient.customer.getCustomer).getApiResource,
151
151
  /** Get a CustomerInvite by token. */
152
152
  getCustomerTokenInvite: new ApiCallAsyncResourceFactory(descriptors.customerGetCustomerTokenInvite, baseClient.customer.getCustomerTokenInvite).getApiResource,
153
+ /** Get your LeadFyndr request. */
154
+ getLeadFyndrProfileRequest: new ApiCallAsyncResourceFactory(descriptors.customerGetLeadFyndrProfileRequest, baseClient.customer.getLeadFyndrProfileRequest).getApiResource,
155
+ /** Get your LeadFyndr profile. */
156
+ getLeadFyndrProfile: new ApiCallAsyncResourceFactory(descriptors.customerGetLeadFyndrProfile, baseClient.customer.getLeadFyndrProfile).getApiResource,
153
157
  /** Check if the customer profile has a valid contract partner configured. */
154
158
  isCustomerLegallyCompetent: new ApiCallAsyncResourceFactory(descriptors.customerIsCustomerLegallyCompetent, baseClient.customer.isCustomerLegallyCompetent).getApiResource,
155
159
  /** List CustomerInvites belonging to the executing user. */
@@ -354,6 +354,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
354
354
  deleteCustomer: this.requestFunctionFactory(descriptors.customerDeleteCustomer),
355
355
  /** Get a CustomerInvite by token. */
356
356
  getCustomerTokenInvite: this.requestFunctionFactory(descriptors.customerGetCustomerTokenInvite),
357
+ /** Get your LeadFyndr request. */
358
+ getLeadFyndrProfileRequest: this.requestFunctionFactory(descriptors.customerGetLeadFyndrProfileRequest),
359
+ /** Get your LeadFyndr profile. */
360
+ getLeadFyndrProfile: this.requestFunctionFactory(descriptors.customerGetLeadFyndrProfile),
357
361
  /** Check if the customer profile has a valid contract partner configured. */
358
362
  isCustomerLegallyCompetent: this.requestFunctionFactory(descriptors.customerIsCustomerLegallyCompetent),
359
363
  /** List CustomerInvites belonging to the executing user. */
@@ -706,6 +706,18 @@ export const customerGetCustomerTokenInvite = {
706
706
  method: "GET",
707
707
  operationId: "customer-get-customer-token-invite",
708
708
  };
709
+ /** Get your LeadFyndr request. */
710
+ export const customerGetLeadFyndrProfileRequest = {
711
+ path: "/v2/customers/{customerId}/lead-fyndr-profile-request",
712
+ method: "GET",
713
+ operationId: "customer-get-lead-fyndr-profile-request",
714
+ };
715
+ /** Get your LeadFyndr profile. */
716
+ export const customerGetLeadFyndrProfile = {
717
+ path: "/v2/customers/{customerId}/lead-fyndr-profile",
718
+ method: "GET",
719
+ operationId: "customer-get-lead-fyndr-profile",
720
+ };
709
721
  /** Check if the customer profile has a valid contract partner configured. */
710
722
  export const customerIsCustomerLegallyCompetent = {
711
723
  path: "/v2/customers/{customerId}/legally-competent",
@@ -1372,18 +1384,6 @@ export const invoiceListCustomerInvoices = {
1372
1384
  method: "GET",
1373
1385
  operationId: "invoice-list-customer-invoices",
1374
1386
  };
1375
- /** Get your LeadFyndr request. */
1376
- export const leadFinderGetLeadFyndrProfileRequest = {
1377
- path: "/v2/customers/{customerId}/lead-fyndr-profile-request",
1378
- method: "GET",
1379
- operationId: "lead-finder-get-lead-fyndr-profile-request",
1380
- };
1381
- /** Get your LeadFyndr profile. */
1382
- export const leadFinderGetLeadFyndrProfile = {
1383
- path: "/v2/customers/{customerId}/lead-fyndr-profile",
1384
- method: "GET",
1385
- operationId: "lead-finder-get-lead-fyndr-profile",
1386
- };
1387
1387
  /** List DeliveryBoxes belonging to a Project. */
1388
1388
  export const mailListDeliveryBoxes = {
1389
1389
  path: "/v2/projects/{projectId}/delivery-boxes",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.132.0';
1
+ export const MittwaldAPIClientVersion = '4.134.0';
@@ -1113,6 +1113,33 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1113
1113
  message?: string | undefined;
1114
1114
  role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
1115
1115
  }>;
1116
+ /** Get your LeadFyndr request. */
1117
+ getLeadFyndrProfileRequest: (conf: {
1118
+ customerId: string;
1119
+ headers?: {
1120
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1121
+ } | undefined;
1122
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1123
+ createdOn: string;
1124
+ customerId: string;
1125
+ domain: string;
1126
+ profileId: string;
1127
+ requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadFinderUser;
1128
+ resultOn?: string | undefined;
1129
+ status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
1130
+ }>;
1131
+ /** Get your LeadFyndr profile. */
1132
+ getLeadFyndrProfile: (conf: {
1133
+ customerId: string;
1134
+ headers?: {
1135
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1136
+ } | undefined;
1137
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1138
+ approvedOn: string;
1139
+ customerId: string;
1140
+ disabledOn?: string | undefined;
1141
+ domain: string;
1142
+ }>;
1116
1143
  /** Check if the customer profile has a valid contract partner configured. */
1117
1144
  isCustomerLegallyCompetent: (conf: {
1118
1145
  customerId: string;
@@ -10796,6 +10796,110 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10796
10796
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10797
10797
  [x: string]: unknown;
10798
10798
  }, 429, "application/json">>>;
10799
+ /** Get your LeadFyndr request. */
10800
+ getLeadFyndrProfileRequest: (request: {
10801
+ customerId: string;
10802
+ headers?: {
10803
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
10804
+ } | undefined;
10805
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
10806
+ headers?: Partial<{
10807
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10808
+ }>;
10809
+ } & {
10810
+ pathParameters: {
10811
+ customerId: string;
10812
+ };
10813
+ }, import("@mittwald/api-client-commons").Response<{
10814
+ createdOn: string;
10815
+ customerId: string;
10816
+ domain: string;
10817
+ profileId: string;
10818
+ requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadFinderUser;
10819
+ resultOn?: string | undefined;
10820
+ status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
10821
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
10822
+ [x: string]: unknown;
10823
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10824
+ [x: string]: unknown;
10825
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
10826
+ [x: string]: unknown;
10827
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10828
+ [x: string]: unknown;
10829
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
10830
+ headers?: Partial<{
10831
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10832
+ }>;
10833
+ } & {
10834
+ pathParameters: {
10835
+ customerId: string;
10836
+ };
10837
+ }, import("@mittwald/api-client-commons").Response<{
10838
+ createdOn: string;
10839
+ customerId: string;
10840
+ domain: string;
10841
+ profileId: string;
10842
+ requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadFinderUser;
10843
+ resultOn?: string | undefined;
10844
+ status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
10845
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
10846
+ [x: string]: unknown;
10847
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10848
+ [x: string]: unknown;
10849
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
10850
+ [x: string]: unknown;
10851
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10852
+ [x: string]: unknown;
10853
+ }, 429, "application/json">>>;
10854
+ /** Get your LeadFyndr profile. */
10855
+ getLeadFyndrProfile: (request: {
10856
+ customerId: string;
10857
+ headers?: {
10858
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
10859
+ } | undefined;
10860
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
10861
+ headers?: Partial<{
10862
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10863
+ }>;
10864
+ } & {
10865
+ pathParameters: {
10866
+ customerId: string;
10867
+ };
10868
+ }, import("@mittwald/api-client-commons").Response<{
10869
+ approvedOn: string;
10870
+ customerId: string;
10871
+ disabledOn?: string | undefined;
10872
+ domain: string;
10873
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
10874
+ [x: string]: unknown;
10875
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10876
+ [x: string]: unknown;
10877
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
10878
+ [x: string]: unknown;
10879
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10880
+ [x: string]: unknown;
10881
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
10882
+ headers?: Partial<{
10883
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10884
+ }>;
10885
+ } & {
10886
+ pathParameters: {
10887
+ customerId: string;
10888
+ };
10889
+ }, import("@mittwald/api-client-commons").Response<{
10890
+ approvedOn: string;
10891
+ customerId: string;
10892
+ disabledOn?: string | undefined;
10893
+ domain: string;
10894
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
10895
+ [x: string]: unknown;
10896
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10897
+ [x: string]: unknown;
10898
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
10899
+ [x: string]: unknown;
10900
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10901
+ [x: string]: unknown;
10902
+ }, 429, "application/json">>>;
10799
10903
  /** Check if the customer profile has a valid contract partner configured. */
10800
10904
  isCustomerLegallyCompetent: (request: {
10801
10905
  customerId: string;
@@ -239,6 +239,10 @@ export declare const customerUpdateCustomer: OpenAPIOperation<RequestType<Simpli
239
239
  export declare const customerDeleteCustomer: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
240
240
  /** Get a CustomerInvite by token. */
241
241
  export declare const customerGetCustomerTokenInvite: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
242
+ /** Get your LeadFyndr request. */
243
+ export declare const customerGetLeadFyndrProfileRequest: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
244
+ /** Get your LeadFyndr profile. */
245
+ export declare const customerGetLeadFyndrProfile: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
242
246
  /** Check if the customer profile has a valid contract partner configured. */
243
247
  export declare const customerIsCustomerLegallyCompetent: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
244
248
  /** List CustomerInvites belonging to the executing user. */
@@ -461,10 +465,6 @@ export declare const invoiceUpdateInvoiceSettings: OpenAPIOperation<RequestType<
461
465
  export declare const invoiceGetFileAccessToken: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceIdFileAccessToken.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceIdFileAccessToken.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceIdFileAccessToken.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceIdFileAccessToken.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceIdFileAccessToken.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceIdFileAccessToken.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceIdFileAccessToken.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceIdFileAccessToken.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
462
466
  /** List Invoices of a Customer. */
463
467
  export declare const invoiceListCustomerInvoices: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
464
- /** Get your LeadFyndr request. */
465
- export declare const leadFinderGetLeadFyndrProfileRequest: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
466
- /** Get your LeadFyndr profile. */
467
- export declare const leadFinderGetLeadFyndrProfile: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfile.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
468
468
  /** List DeliveryBoxes belonging to a Project. */
469
469
  export declare const mailListDeliveryBoxes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
470
470
  /** Create a DeliveryBox. */
@@ -474,6 +474,14 @@ export declare namespace MittwaldAPIV2 {
474
474
  type RequestData = InferredRequestData<typeof descriptors.customerGetCustomerTokenInvite>;
475
475
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerGetCustomerTokenInvite, TStatus>;
476
476
  }
477
+ namespace CustomerGetLeadFyndrProfileRequest {
478
+ type RequestData = InferredRequestData<typeof descriptors.customerGetLeadFyndrProfileRequest>;
479
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerGetLeadFyndrProfileRequest, TStatus>;
480
+ }
481
+ namespace CustomerGetLeadFyndrProfile {
482
+ type RequestData = InferredRequestData<typeof descriptors.customerGetLeadFyndrProfile>;
483
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerGetLeadFyndrProfile, TStatus>;
484
+ }
477
485
  namespace CustomerIsCustomerLegallyCompetent {
478
486
  type RequestData = InferredRequestData<typeof descriptors.customerIsCustomerLegallyCompetent>;
479
487
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerIsCustomerLegallyCompetent, TStatus>;
@@ -918,14 +926,6 @@ export declare namespace MittwaldAPIV2 {
918
926
  type RequestData = InferredRequestData<typeof descriptors.invoiceListCustomerInvoices>;
919
927
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.invoiceListCustomerInvoices, TStatus>;
920
928
  }
921
- namespace LeadFinderGetLeadFyndrProfileRequest {
922
- type RequestData = InferredRequestData<typeof descriptors.leadFinderGetLeadFyndrProfileRequest>;
923
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadFinderGetLeadFyndrProfileRequest, TStatus>;
924
- }
925
- namespace LeadFinderGetLeadFyndrProfile {
926
- type RequestData = InferredRequestData<typeof descriptors.leadFinderGetLeadFyndrProfile>;
927
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadFinderGetLeadFyndrProfile, TStatus>;
928
- }
929
929
  namespace MailListDeliveryBoxes {
930
930
  type RequestData = InferredRequestData<typeof descriptors.mailListDeliveryBoxes>;
931
931
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListDeliveryBoxes, TStatus>;
@@ -3383,7 +3383,7 @@ export declare namespace MittwaldAPIV2 {
3383
3383
  profileId: string;
3384
3384
  requestedBy: MittwaldAPIV2.Components.Schemas.LeadFinderUser;
3385
3385
  resultOn?: string;
3386
- status: "NEW" | "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
3386
+ status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
3387
3387
  }
3388
3388
  interface LeadFinderProfile {
3389
3389
  approvedOn: string;
@@ -10675,6 +10675,112 @@ export declare namespace MittwaldAPIV2 {
10675
10675
  }
10676
10676
  }
10677
10677
  }
10678
+ namespace V2CustomersCustomerIdLeadFyndrProfileRequest {
10679
+ namespace Get {
10680
+ namespace Parameters {
10681
+ type Path = {
10682
+ customerId: string;
10683
+ };
10684
+ type Header = {};
10685
+ type Query = {};
10686
+ }
10687
+ namespace Responses {
10688
+ namespace $200 {
10689
+ namespace Content {
10690
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadFinderProfileRequest;
10691
+ }
10692
+ }
10693
+ namespace $400 {
10694
+ namespace Content {
10695
+ interface ApplicationJson {
10696
+ [k: string]: unknown;
10697
+ }
10698
+ }
10699
+ }
10700
+ namespace $403 {
10701
+ namespace Content {
10702
+ interface ApplicationJson {
10703
+ [k: string]: unknown;
10704
+ }
10705
+ }
10706
+ }
10707
+ namespace $404 {
10708
+ namespace Content {
10709
+ interface ApplicationJson {
10710
+ [k: string]: unknown;
10711
+ }
10712
+ }
10713
+ }
10714
+ namespace $429 {
10715
+ namespace Content {
10716
+ interface ApplicationJson {
10717
+ [k: string]: unknown;
10718
+ }
10719
+ }
10720
+ }
10721
+ namespace Default {
10722
+ namespace Content {
10723
+ interface ApplicationJson {
10724
+ [k: string]: unknown;
10725
+ }
10726
+ }
10727
+ }
10728
+ }
10729
+ }
10730
+ }
10731
+ namespace V2CustomersCustomerIdLeadFyndrProfile {
10732
+ namespace Get {
10733
+ namespace Parameters {
10734
+ type Path = {
10735
+ customerId: string;
10736
+ };
10737
+ type Header = {};
10738
+ type Query = {};
10739
+ }
10740
+ namespace Responses {
10741
+ namespace $200 {
10742
+ namespace Content {
10743
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadFinderProfile;
10744
+ }
10745
+ }
10746
+ namespace $400 {
10747
+ namespace Content {
10748
+ interface ApplicationJson {
10749
+ [k: string]: unknown;
10750
+ }
10751
+ }
10752
+ }
10753
+ namespace $403 {
10754
+ namespace Content {
10755
+ interface ApplicationJson {
10756
+ [k: string]: unknown;
10757
+ }
10758
+ }
10759
+ }
10760
+ namespace $404 {
10761
+ namespace Content {
10762
+ interface ApplicationJson {
10763
+ [k: string]: unknown;
10764
+ }
10765
+ }
10766
+ }
10767
+ namespace $429 {
10768
+ namespace Content {
10769
+ interface ApplicationJson {
10770
+ [k: string]: unknown;
10771
+ }
10772
+ }
10773
+ }
10774
+ namespace Default {
10775
+ namespace Content {
10776
+ interface ApplicationJson {
10777
+ [k: string]: unknown;
10778
+ }
10779
+ }
10780
+ }
10781
+ }
10782
+ }
10783
+ }
10678
10784
  namespace V2CustomersCustomerIdLegallyCompetent {
10679
10785
  namespace Get {
10680
10786
  namespace Parameters {
@@ -16243,112 +16349,6 @@ export declare namespace MittwaldAPIV2 {
16243
16349
  }
16244
16350
  }
16245
16351
  }
16246
- namespace V2CustomersCustomerIdLeadFyndrProfileRequest {
16247
- namespace Get {
16248
- namespace Parameters {
16249
- type Path = {
16250
- customerId: string;
16251
- };
16252
- type Header = {};
16253
- type Query = {};
16254
- }
16255
- namespace Responses {
16256
- namespace $200 {
16257
- namespace Content {
16258
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadFinderProfileRequest;
16259
- }
16260
- }
16261
- namespace $400 {
16262
- namespace Content {
16263
- interface ApplicationJson {
16264
- [k: string]: unknown;
16265
- }
16266
- }
16267
- }
16268
- namespace $403 {
16269
- namespace Content {
16270
- interface ApplicationJson {
16271
- [k: string]: unknown;
16272
- }
16273
- }
16274
- }
16275
- namespace $404 {
16276
- namespace Content {
16277
- interface ApplicationJson {
16278
- [k: string]: unknown;
16279
- }
16280
- }
16281
- }
16282
- namespace $429 {
16283
- namespace Content {
16284
- interface ApplicationJson {
16285
- [k: string]: unknown;
16286
- }
16287
- }
16288
- }
16289
- namespace Default {
16290
- namespace Content {
16291
- interface ApplicationJson {
16292
- [k: string]: unknown;
16293
- }
16294
- }
16295
- }
16296
- }
16297
- }
16298
- }
16299
- namespace V2CustomersCustomerIdLeadFyndrProfile {
16300
- namespace Get {
16301
- namespace Parameters {
16302
- type Path = {
16303
- customerId: string;
16304
- };
16305
- type Header = {};
16306
- type Query = {};
16307
- }
16308
- namespace Responses {
16309
- namespace $200 {
16310
- namespace Content {
16311
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadFinderProfile;
16312
- }
16313
- }
16314
- namespace $400 {
16315
- namespace Content {
16316
- interface ApplicationJson {
16317
- [k: string]: unknown;
16318
- }
16319
- }
16320
- }
16321
- namespace $403 {
16322
- namespace Content {
16323
- interface ApplicationJson {
16324
- [k: string]: unknown;
16325
- }
16326
- }
16327
- }
16328
- namespace $404 {
16329
- namespace Content {
16330
- interface ApplicationJson {
16331
- [k: string]: unknown;
16332
- }
16333
- }
16334
- }
16335
- namespace $429 {
16336
- namespace Content {
16337
- interface ApplicationJson {
16338
- [k: string]: unknown;
16339
- }
16340
- }
16341
- }
16342
- namespace Default {
16343
- namespace Content {
16344
- interface ApplicationJson {
16345
- [k: string]: unknown;
16346
- }
16347
- }
16348
- }
16349
- }
16350
- }
16351
- }
16352
16352
  namespace V2ProjectsProjectIdDeliveryboxes { }
16353
16353
  namespace V2ProjectsProjectIdDeliveryBoxes {
16354
16354
  namespace Get {
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.132.0';
1
+ export declare const MittwaldAPIClientVersion = '4.134.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.133.0",
3
+ "version": "4.135.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": "68a3126da3af614caea11d2cd28ae9d402e7b1ff"
83
+ "gitHead": "657b8c9295ecaaf63d76872df411aa94beedea47"
84
84
  }