@mittwald/api-client 4.133.0 → 4.134.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.
@@ -158,6 +158,10 @@ const buildCustomerApi = (baseClient) => ({
158
158
  listCustomerMemberships: new ApiCallAsyncResourceFactory(descriptors.customerListCustomerMemberships, baseClient.customer.listCustomerMemberships).getApiResource,
159
159
  /** List Memberships belonging to a Customer. */
160
160
  listMembershipsForCustomer: new ApiCallAsyncResourceFactory(descriptors.customerListMembershipsForCustomer, baseClient.customer.listMembershipsForCustomer).getApiResource,
161
+ /** Get your LeadFyndr profile. */
162
+ getLeadFyndrProfile: new ApiCallAsyncResourceFactory(descriptors.customerGetLeadFyndrProfile, baseClient.customer.getLeadFyndrProfile).getApiResource,
163
+ /** Get your LeadFyndr request. */
164
+ getLeadFyndrProfileRequest: new ApiCallAsyncResourceFactory(descriptors.customerGetLeadFyndrProfileRequest, baseClient.customer.getLeadFyndrProfileRequest).getApiResource,
161
165
  });
162
166
  const buildDatabaseApi = (baseClient) => ({
163
167
  /** List MySQLDatabases belonging to a Project. */
@@ -368,6 +368,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
368
368
  removeAvatar: this.requestFunctionFactory(descriptors.customerRemoveAvatar),
369
369
  /** Resend the mail for a CustomerInvite. */
370
370
  resendCustomerInviteMail: this.requestFunctionFactory(descriptors.customerResendCustomerInviteMail),
371
+ /** Get your LeadFyndr profile. */
372
+ getLeadFyndrProfile: this.requestFunctionFactory(descriptors.customerGetLeadFyndrProfile),
373
+ /** Get your LeadFyndr request. */
374
+ getLeadFyndrProfileRequest: this.requestFunctionFactory(descriptors.customerGetLeadFyndrProfileRequest),
371
375
  };
372
376
  /** The database API allows you to manage your databases, like MySQL and Redis databases. */
373
377
  database = {
@@ -1372,18 +1372,6 @@ export const invoiceListCustomerInvoices = {
1372
1372
  method: "GET",
1373
1373
  operationId: "invoice-list-customer-invoices",
1374
1374
  };
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
1375
  /** List DeliveryBoxes belonging to a Project. */
1388
1376
  export const mailListDeliveryBoxes = {
1389
1377
  path: "/v2/projects/{projectId}/delivery-boxes",
@@ -2254,3 +2242,15 @@ export const verificationVerifyCompany = {
2254
2242
  method: "POST",
2255
2243
  operationId: "verification-verify-company",
2256
2244
  };
2245
+ /** Get your LeadFyndr profile. */
2246
+ export const customerGetLeadFyndrProfile = {
2247
+ path: "/v2/customers/{customerId}/lead-fyndr-profile",
2248
+ method: "GET",
2249
+ operationId: "customer-get-lead-fyndr-profile",
2250
+ };
2251
+ /** Get your LeadFyndr request. */
2252
+ export const customerGetLeadFyndrProfileRequest = {
2253
+ path: "/v2/customers/{customerId}/lead-fyndr-profile-request",
2254
+ method: "GET",
2255
+ operationId: "customer-get-lead-fyndr-profile-request",
2256
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.132.0';
1
+ export const MittwaldAPIClientVersion = '4.133.0';
@@ -1160,6 +1160,33 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1160
1160
  skip?: number | undefined;
1161
1161
  } | undefined;
1162
1162
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerMembership[]>;
1163
+ /** Get your LeadFyndr profile. */
1164
+ getLeadFyndrProfile: (conf: {
1165
+ customerId: string;
1166
+ headers?: {
1167
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1168
+ } | undefined;
1169
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1170
+ approvedOn: string;
1171
+ customerId: string;
1172
+ disabledOn?: string | undefined;
1173
+ domain: string;
1174
+ }>;
1175
+ /** Get your LeadFyndr request. */
1176
+ getLeadFyndrProfileRequest: (conf: {
1177
+ customerId: string;
1178
+ headers?: {
1179
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1180
+ } | undefined;
1181
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1182
+ createdOn: string;
1183
+ customerId: string;
1184
+ domain: string;
1185
+ profileId: string;
1186
+ requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadFinderUser;
1187
+ resultOn?: string | undefined;
1188
+ status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
1189
+ }>;
1163
1190
  };
1164
1191
  declare const buildDatabaseApi: (baseClient: MittwaldAPIV2Client) => {
1165
1192
  /** List MySQLDatabases belonging to a Project. */
@@ -11210,6 +11210,110 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11210
11210
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
11211
11211
  [x: string]: unknown;
11212
11212
  }, 429, "application/json">>>;
11213
+ /** Get your LeadFyndr profile. */
11214
+ getLeadFyndrProfile: (request: {
11215
+ customerId: string;
11216
+ headers?: {
11217
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
11218
+ } | undefined;
11219
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
11220
+ headers?: Partial<{
11221
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11222
+ }>;
11223
+ } & {
11224
+ pathParameters: {
11225
+ customerId: string;
11226
+ };
11227
+ }, import("@mittwald/api-client-commons").Response<{
11228
+ approvedOn: string;
11229
+ customerId: string;
11230
+ disabledOn?: string | undefined;
11231
+ domain: string;
11232
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
11233
+ [x: string]: unknown;
11234
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
11235
+ [x: string]: unknown;
11236
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
11237
+ [x: string]: unknown;
11238
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
11239
+ [x: string]: unknown;
11240
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
11241
+ headers?: Partial<{
11242
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11243
+ }>;
11244
+ } & {
11245
+ pathParameters: {
11246
+ customerId: string;
11247
+ };
11248
+ }, import("@mittwald/api-client-commons").Response<{
11249
+ approvedOn: string;
11250
+ customerId: string;
11251
+ disabledOn?: string | undefined;
11252
+ domain: string;
11253
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
11254
+ [x: string]: unknown;
11255
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
11256
+ [x: string]: unknown;
11257
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
11258
+ [x: string]: unknown;
11259
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
11260
+ [x: string]: unknown;
11261
+ }, 429, "application/json">>>;
11262
+ /** Get your LeadFyndr request. */
11263
+ getLeadFyndrProfileRequest: (request: {
11264
+ customerId: string;
11265
+ headers?: {
11266
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
11267
+ } | undefined;
11268
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
11269
+ headers?: Partial<{
11270
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11271
+ }>;
11272
+ } & {
11273
+ pathParameters: {
11274
+ customerId: string;
11275
+ };
11276
+ }, import("@mittwald/api-client-commons").Response<{
11277
+ createdOn: string;
11278
+ customerId: string;
11279
+ domain: string;
11280
+ profileId: string;
11281
+ requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadFinderUser;
11282
+ resultOn?: string | undefined;
11283
+ status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
11284
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
11285
+ [x: string]: unknown;
11286
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
11287
+ [x: string]: unknown;
11288
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
11289
+ [x: string]: unknown;
11290
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
11291
+ [x: string]: unknown;
11292
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
11293
+ headers?: Partial<{
11294
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11295
+ }>;
11296
+ } & {
11297
+ pathParameters: {
11298
+ customerId: string;
11299
+ };
11300
+ }, import("@mittwald/api-client-commons").Response<{
11301
+ createdOn: string;
11302
+ customerId: string;
11303
+ domain: string;
11304
+ profileId: string;
11305
+ requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadFinderUser;
11306
+ resultOn?: string | undefined;
11307
+ status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
11308
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
11309
+ [x: string]: unknown;
11310
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
11311
+ [x: string]: unknown;
11312
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
11313
+ [x: string]: unknown;
11314
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
11315
+ [x: string]: unknown;
11316
+ }, 429, "application/json">>>;
11213
11317
  };
11214
11318
  /** The database API allows you to manage your databases, like MySQL and Redis databases. */
11215
11319
  readonly database: {
@@ -461,10 +461,6 @@ export declare const invoiceUpdateInvoiceSettings: OpenAPIOperation<RequestType<
461
461
  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
462
  /** List Invoices of a Customer. */
463
463
  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
464
  /** List DeliveryBoxes belonging to a Project. */
469
465
  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
466
  /** Create a DeliveryBox. */
@@ -755,3 +751,7 @@ export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simpli
755
751
  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">>;
756
752
  /** Check if a company exists. */
757
753
  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">>;
754
+ /** Get your LeadFyndr profile. */
755
+ 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">>;
756
+ /** Get your LeadFyndr request. */
757
+ 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">>;
@@ -918,14 +918,6 @@ export declare namespace MittwaldAPIV2 {
918
918
  type RequestData = InferredRequestData<typeof descriptors.invoiceListCustomerInvoices>;
919
919
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.invoiceListCustomerInvoices, TStatus>;
920
920
  }
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
921
  namespace MailListDeliveryBoxes {
930
922
  type RequestData = InferredRequestData<typeof descriptors.mailListDeliveryBoxes>;
931
923
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListDeliveryBoxes, TStatus>;
@@ -1506,6 +1498,14 @@ export declare namespace MittwaldAPIV2 {
1506
1498
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1507
1499
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1508
1500
  }
1501
+ namespace CustomerGetLeadFyndrProfile {
1502
+ type RequestData = InferredRequestData<typeof descriptors.customerGetLeadFyndrProfile>;
1503
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerGetLeadFyndrProfile, TStatus>;
1504
+ }
1505
+ namespace CustomerGetLeadFyndrProfileRequest {
1506
+ type RequestData = InferredRequestData<typeof descriptors.customerGetLeadFyndrProfileRequest>;
1507
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerGetLeadFyndrProfileRequest, TStatus>;
1508
+ }
1509
1509
  }
1510
1510
  namespace Components {
1511
1511
  namespace Schemas {
@@ -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;
@@ -16243,112 +16243,6 @@ export declare namespace MittwaldAPIV2 {
16243
16243
  }
16244
16244
  }
16245
16245
  }
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
16246
  namespace V2ProjectsProjectIdDeliveryboxes { }
16353
16247
  namespace V2ProjectsProjectIdDeliveryBoxes {
16354
16248
  namespace Get {
@@ -23433,5 +23327,111 @@ export declare namespace MittwaldAPIV2 {
23433
23327
  }
23434
23328
  }
23435
23329
  }
23330
+ namespace V2CustomersCustomerIdLeadFyndrProfile {
23331
+ namespace Get {
23332
+ namespace Parameters {
23333
+ type Path = {
23334
+ customerId: string;
23335
+ };
23336
+ type Header = {};
23337
+ type Query = {};
23338
+ }
23339
+ namespace Responses {
23340
+ namespace $200 {
23341
+ namespace Content {
23342
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadFinderProfile;
23343
+ }
23344
+ }
23345
+ namespace $400 {
23346
+ namespace Content {
23347
+ interface ApplicationJson {
23348
+ [k: string]: unknown;
23349
+ }
23350
+ }
23351
+ }
23352
+ namespace $403 {
23353
+ namespace Content {
23354
+ interface ApplicationJson {
23355
+ [k: string]: unknown;
23356
+ }
23357
+ }
23358
+ }
23359
+ namespace $404 {
23360
+ namespace Content {
23361
+ interface ApplicationJson {
23362
+ [k: string]: unknown;
23363
+ }
23364
+ }
23365
+ }
23366
+ namespace $429 {
23367
+ namespace Content {
23368
+ interface ApplicationJson {
23369
+ [k: string]: unknown;
23370
+ }
23371
+ }
23372
+ }
23373
+ namespace Default {
23374
+ namespace Content {
23375
+ interface ApplicationJson {
23376
+ [k: string]: unknown;
23377
+ }
23378
+ }
23379
+ }
23380
+ }
23381
+ }
23382
+ }
23383
+ namespace V2CustomersCustomerIdLeadFyndrProfileRequest {
23384
+ namespace Get {
23385
+ namespace Parameters {
23386
+ type Path = {
23387
+ customerId: string;
23388
+ };
23389
+ type Header = {};
23390
+ type Query = {};
23391
+ }
23392
+ namespace Responses {
23393
+ namespace $200 {
23394
+ namespace Content {
23395
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadFinderProfileRequest;
23396
+ }
23397
+ }
23398
+ namespace $400 {
23399
+ namespace Content {
23400
+ interface ApplicationJson {
23401
+ [k: string]: unknown;
23402
+ }
23403
+ }
23404
+ }
23405
+ namespace $403 {
23406
+ namespace Content {
23407
+ interface ApplicationJson {
23408
+ [k: string]: unknown;
23409
+ }
23410
+ }
23411
+ }
23412
+ namespace $404 {
23413
+ namespace Content {
23414
+ interface ApplicationJson {
23415
+ [k: string]: unknown;
23416
+ }
23417
+ }
23418
+ }
23419
+ namespace $429 {
23420
+ namespace Content {
23421
+ interface ApplicationJson {
23422
+ [k: string]: unknown;
23423
+ }
23424
+ }
23425
+ }
23426
+ namespace Default {
23427
+ namespace Content {
23428
+ interface ApplicationJson {
23429
+ [k: string]: unknown;
23430
+ }
23431
+ }
23432
+ }
23433
+ }
23434
+ }
23435
+ }
23436
23436
  }
23437
23437
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.132.0';
1
+ export declare const MittwaldAPIClientVersion = '4.133.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.134.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": "18cc1aea98b43c36944e4c5cc3c51a37592cef07"
84
84
  }