@mittwald/api-client 4.134.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. */
@@ -158,10 +162,6 @@ const buildCustomerApi = (baseClient) => ({
158
162
  listCustomerMemberships: new ApiCallAsyncResourceFactory(descriptors.customerListCustomerMemberships, baseClient.customer.listCustomerMemberships).getApiResource,
159
163
  /** List Memberships belonging to a Customer. */
160
164
  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,
165
165
  });
166
166
  const buildDatabaseApi = (baseClient) => ({
167
167
  /** List MySQLDatabases belonging to a Project. */
@@ -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. */
@@ -368,10 +372,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
368
372
  removeAvatar: this.requestFunctionFactory(descriptors.customerRemoveAvatar),
369
373
  /** Resend the mail for a CustomerInvite. */
370
374
  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),
375
375
  };
376
376
  /** The database API allows you to manage your databases, like MySQL and Redis databases. */
377
377
  database = {
@@ -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",
@@ -2242,15 +2254,3 @@ export const verificationVerifyCompany = {
2242
2254
  method: "POST",
2243
2255
  operationId: "verification-verify-company",
2244
2256
  };
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.133.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;
@@ -1160,33 +1187,6 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1160
1187
  skip?: number | undefined;
1161
1188
  } | undefined;
1162
1189
  }) => 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
- }>;
1190
1190
  };
1191
1191
  declare const buildDatabaseApi: (baseClient: MittwaldAPIV2Client) => {
1192
1192
  /** List MySQLDatabases belonging to a Project. */
@@ -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;
@@ -11210,110 +11314,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11210
11314
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
11211
11315
  [x: string]: unknown;
11212
11316
  }, 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">>>;
11317
11317
  };
11318
11318
  /** The database API allows you to manage your databases, like MySQL and Redis databases. */
11319
11319
  readonly database: {
@@ -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. */
@@ -751,7 +755,3 @@ export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simpli
751
755
  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">>;
752
756
  /** Check if a company exists. */
753
757
  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">>;
@@ -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>;
@@ -1498,14 +1506,6 @@ export declare namespace MittwaldAPIV2 {
1498
1506
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1499
1507
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1500
1508
  }
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 {
@@ -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 {
@@ -23327,111 +23433,5 @@ export declare namespace MittwaldAPIV2 {
23327
23433
  }
23328
23434
  }
23329
23435
  }
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.133.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.134.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": "18cc1aea98b43c36944e4c5cc3c51a37592cef07"
83
+ "gitHead": "657b8c9295ecaaf63d76872df411aa94beedea47"
84
84
  }