@mittwald/api-client 4.144.0 → 4.145.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,10 +150,6 @@ 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,
157
153
  /** Check if the customer profile has a valid contract partner configured. */
158
154
  isCustomerLegallyCompetent: new ApiCallAsyncResourceFactory(descriptors.customerIsCustomerLegallyCompetent, baseClient.customer.isCustomerLegallyCompetent).getApiResource,
159
155
  /** List CustomerInvites belonging to the executing user. */
@@ -358,10 +358,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
358
358
  deleteCustomer: this.requestFunctionFactory(descriptors.customerDeleteCustomer),
359
359
  /** Get a CustomerInvite by token. */
360
360
  getCustomerTokenInvite: this.requestFunctionFactory(descriptors.customerGetCustomerTokenInvite),
361
- /** Get your LeadFyndr request. */
362
- getLeadFyndrProfileRequest: this.requestFunctionFactory(descriptors.customerGetLeadFyndrProfileRequest),
363
- /** Get your LeadFyndr profile. */
364
- getLeadFyndrProfile: this.requestFunctionFactory(descriptors.customerGetLeadFyndrProfile),
365
361
  /** Check if the customer profile has a valid contract partner configured. */
366
362
  isCustomerLegallyCompetent: this.requestFunctionFactory(descriptors.customerIsCustomerLegallyCompetent),
367
363
  /** List CustomerInvites belonging to the executing user. */
@@ -706,18 +706,6 @@ 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
- };
721
709
  /** Check if the customer profile has a valid contract partner configured. */
722
710
  export const customerIsCustomerLegallyCompetent = {
723
711
  path: "/v2/customers/{customerId}/legally-competent",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.143.0';
1
+ export const MittwaldAPIClientVersion = '4.144.0';
@@ -1114,33 +1114,6 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1114
1114
  message?: string | undefined;
1115
1115
  role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
1116
1116
  }>;
1117
- /** Get your LeadFyndr request. */
1118
- getLeadFyndrProfileRequest: (conf: {
1119
- customerId: string;
1120
- headers?: {
1121
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1122
- } | undefined;
1123
- }) => import("@mittwald/react-use-promise").AsyncResource<{
1124
- createdOn: string;
1125
- customerId: string;
1126
- domain: string;
1127
- profileId: string;
1128
- requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadFinderUser;
1129
- resultOn?: string | undefined;
1130
- status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
1131
- }>;
1132
- /** Get your LeadFyndr profile. */
1133
- getLeadFyndrProfile: (conf: {
1134
- customerId: string;
1135
- headers?: {
1136
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1137
- } | undefined;
1138
- }) => import("@mittwald/react-use-promise").AsyncResource<{
1139
- approvedOn: string;
1140
- customerId: string;
1141
- disabledOn?: string | undefined;
1142
- domain: string;
1143
- }>;
1144
1117
  /** Check if the customer profile has a valid contract partner configured. */
1145
1118
  isCustomerLegallyCompetent: (conf: {
1146
1119
  customerId: string;
@@ -2456,6 +2429,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2456
2429
  hasExpiry?: boolean | undefined;
2457
2430
  isInherited?: boolean | undefined;
2458
2431
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
2432
+ hasMfa?: boolean | undefined;
2459
2433
  } | undefined;
2460
2434
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
2461
2435
  /** List ProjectInvites belonging to the executing user. */
@@ -9044,26 +9044,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9044
9044
  abortExecution: (request: {
9045
9045
  cronjobId: string;
9046
9046
  executionId: string;
9047
- data?: {
9048
- [x: string]: unknown;
9049
- } | undefined;
9050
9047
  headers?: {
9051
9048
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9052
9049
  "x-access-token"?: string | undefined;
9053
9050
  } | undefined;
9054
9051
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9055
- data: {
9056
- [x: string]: unknown;
9057
- };
9052
+ headers?: Partial<{
9053
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9054
+ }>;
9058
9055
  } & {
9059
9056
  pathParameters: {
9060
9057
  cronjobId: string;
9061
9058
  executionId: string;
9062
9059
  };
9063
- } & {
9064
- headers?: Partial<{
9065
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9066
- }>;
9067
9060
  } & {
9068
9061
  headers: {
9069
9062
  "x-access-token"?: string | undefined;
@@ -9075,18 +9068,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9075
9068
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9076
9069
  [x: string]: unknown;
9077
9070
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9078
- data: {
9079
- [x: string]: unknown;
9080
- };
9071
+ headers?: Partial<{
9072
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9073
+ }>;
9081
9074
  } & {
9082
9075
  pathParameters: {
9083
9076
  cronjobId: string;
9084
9077
  executionId: string;
9085
9078
  };
9086
- } & {
9087
- headers?: Partial<{
9088
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9089
- }>;
9090
9079
  } & {
9091
9080
  headers: {
9092
9081
  "x-access-token"?: string | undefined;
@@ -9327,25 +9316,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9327
9316
  /** Trigger a Cronjob. */
9328
9317
  createExecution: (request: {
9329
9318
  cronjobId: string;
9330
- data?: {
9331
- [x: string]: unknown;
9332
- } | undefined;
9333
9319
  headers?: {
9334
9320
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9335
9321
  "x-access-token"?: string | undefined;
9336
9322
  } | undefined;
9337
9323
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9338
- data: {
9339
- [x: string]: unknown;
9340
- };
9324
+ headers?: Partial<{
9325
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9326
+ }>;
9341
9327
  } & {
9342
9328
  pathParameters: {
9343
9329
  cronjobId: string;
9344
9330
  };
9345
- } & {
9346
- headers?: Partial<{
9347
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9348
- }>;
9349
9331
  } & {
9350
9332
  headers: {
9351
9333
  "x-access-token"?: string | undefined;
@@ -9361,17 +9343,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9361
9343
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
9362
9344
  [x: string]: unknown;
9363
9345
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9364
- data: {
9365
- [x: string]: unknown;
9366
- };
9346
+ headers?: Partial<{
9347
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9348
+ }>;
9367
9349
  } & {
9368
9350
  pathParameters: {
9369
9351
  cronjobId: string;
9370
9352
  };
9371
- } & {
9372
- headers?: Partial<{
9373
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9374
- }>;
9375
9353
  } & {
9376
9354
  headers: {
9377
9355
  "x-access-token"?: string | undefined;
@@ -10294,25 +10272,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10294
10272
  /** Decline a CustomerInvite. */
10295
10273
  declineCustomerInvite: (request: {
10296
10274
  customerInviteId: string;
10297
- data?: {
10298
- [x: string]: unknown;
10299
- } | undefined;
10300
10275
  headers?: {
10301
10276
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
10302
10277
  "x-access-token"?: string | undefined;
10303
10278
  } | undefined;
10304
10279
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
10305
- data: {
10306
- [x: string]: unknown;
10307
- };
10280
+ headers?: Partial<{
10281
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10282
+ }>;
10308
10283
  } & {
10309
10284
  pathParameters: {
10310
10285
  customerInviteId: string;
10311
10286
  };
10312
- } & {
10313
- headers?: Partial<{
10314
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10315
- }>;
10316
10287
  } & {
10317
10288
  headers: {
10318
10289
  "x-access-token"?: string | undefined;
@@ -10322,17 +10293,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10322
10293
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
10323
10294
  [x: string]: unknown;
10324
10295
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
10325
- data: {
10326
- [x: string]: unknown;
10327
- };
10296
+ headers?: Partial<{
10297
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10298
+ }>;
10328
10299
  } & {
10329
10300
  pathParameters: {
10330
10301
  customerInviteId: string;
10331
10302
  };
10332
- } & {
10333
- headers?: Partial<{
10334
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10335
- }>;
10336
10303
  } & {
10337
10304
  headers: {
10338
10305
  "x-access-token"?: string | undefined;
@@ -10901,110 +10868,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10901
10868
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10902
10869
  [x: string]: unknown;
10903
10870
  }, 429, "application/json">>>;
10904
- /** Get your LeadFyndr request. */
10905
- getLeadFyndrProfileRequest: (request: {
10906
- customerId: string;
10907
- headers?: {
10908
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
10909
- } | undefined;
10910
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
10911
- headers?: Partial<{
10912
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10913
- }>;
10914
- } & {
10915
- pathParameters: {
10916
- customerId: string;
10917
- };
10918
- }, import("@mittwald/api-client-commons").Response<{
10919
- createdOn: string;
10920
- customerId: string;
10921
- domain: string;
10922
- profileId: string;
10923
- requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadFinderUser;
10924
- resultOn?: string | undefined;
10925
- status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
10926
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
10927
- [x: string]: unknown;
10928
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10929
- [x: string]: unknown;
10930
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
10931
- [x: string]: unknown;
10932
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10933
- [x: string]: unknown;
10934
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
10935
- headers?: Partial<{
10936
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10937
- }>;
10938
- } & {
10939
- pathParameters: {
10940
- customerId: string;
10941
- };
10942
- }, import("@mittwald/api-client-commons").Response<{
10943
- createdOn: string;
10944
- customerId: string;
10945
- domain: string;
10946
- profileId: string;
10947
- requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadFinderUser;
10948
- resultOn?: string | undefined;
10949
- status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
10950
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
10951
- [x: string]: unknown;
10952
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10953
- [x: string]: unknown;
10954
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
10955
- [x: string]: unknown;
10956
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10957
- [x: string]: unknown;
10958
- }, 429, "application/json">>>;
10959
- /** Get your LeadFyndr profile. */
10960
- getLeadFyndrProfile: (request: {
10961
- customerId: string;
10962
- headers?: {
10963
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
10964
- } | undefined;
10965
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
10966
- headers?: Partial<{
10967
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10968
- }>;
10969
- } & {
10970
- pathParameters: {
10971
- customerId: string;
10972
- };
10973
- }, import("@mittwald/api-client-commons").Response<{
10974
- approvedOn: string;
10975
- customerId: string;
10976
- disabledOn?: string | undefined;
10977
- domain: string;
10978
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
10979
- [x: string]: unknown;
10980
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10981
- [x: string]: unknown;
10982
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
10983
- [x: string]: unknown;
10984
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10985
- [x: string]: unknown;
10986
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
10987
- headers?: Partial<{
10988
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10989
- }>;
10990
- } & {
10991
- pathParameters: {
10992
- customerId: string;
10993
- };
10994
- }, import("@mittwald/api-client-commons").Response<{
10995
- approvedOn: string;
10996
- customerId: string;
10997
- disabledOn?: string | undefined;
10998
- domain: string;
10999
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
11000
- [x: string]: unknown;
11001
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
11002
- [x: string]: unknown;
11003
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
11004
- [x: string]: unknown;
11005
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
11006
- [x: string]: unknown;
11007
- }, 429, "application/json">>>;
11008
10871
  /** Check if the customer profile has a valid contract partner configured. */
11009
10872
  isCustomerLegallyCompetent: (request: {
11010
10873
  customerId: string;
@@ -11379,25 +11242,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11379
11242
  /** Resend the mail for a CustomerInvite. */
11380
11243
  resendCustomerInviteMail: (request: {
11381
11244
  customerInviteId: string;
11382
- data?: {
11383
- [x: string]: unknown;
11384
- } | undefined;
11385
11245
  headers?: {
11386
11246
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
11387
11247
  "x-access-token"?: string | undefined;
11388
11248
  } | undefined;
11389
11249
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
11390
- data: {
11391
- [x: string]: unknown;
11392
- };
11250
+ headers?: Partial<{
11251
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11252
+ }>;
11393
11253
  } & {
11394
11254
  pathParameters: {
11395
11255
  customerInviteId: string;
11396
11256
  };
11397
- } & {
11398
- headers?: Partial<{
11399
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11400
- }>;
11401
11257
  } & {
11402
11258
  headers: {
11403
11259
  "x-access-token"?: string | undefined;
@@ -11409,17 +11265,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11409
11265
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
11410
11266
  [x: string]: unknown;
11411
11267
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
11412
- data: {
11413
- [x: string]: unknown;
11414
- };
11268
+ headers?: Partial<{
11269
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11270
+ }>;
11415
11271
  } & {
11416
11272
  pathParameters: {
11417
11273
  customerInviteId: string;
11418
11274
  };
11419
- } & {
11420
- headers?: Partial<{
11421
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11422
- }>;
11423
11275
  } & {
11424
11276
  headers: {
11425
11277
  "x-access-token"?: string | undefined;
@@ -12294,25 +12146,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12294
12146
  /** Disable a MySQLUser. */
12295
12147
  disableMysqlUser: (request: {
12296
12148
  mysqlUserId: string;
12297
- data?: {
12298
- [x: string]: unknown;
12299
- } | undefined;
12300
12149
  headers?: {
12301
12150
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
12302
12151
  "x-access-token"?: string | undefined;
12303
12152
  } | undefined;
12304
12153
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
12305
- data: {
12306
- [x: string]: unknown;
12307
- };
12154
+ headers?: Partial<{
12155
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12156
+ }>;
12308
12157
  } & {
12309
12158
  pathParameters: {
12310
12159
  mysqlUserId: string;
12311
12160
  };
12312
- } & {
12313
- headers?: Partial<{
12314
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12315
- }>;
12316
12161
  } & {
12317
12162
  headers: {
12318
12163
  "x-access-token"?: string | undefined;
@@ -12326,17 +12171,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12326
12171
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
12327
12172
  [x: string]: unknown;
12328
12173
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
12329
- data: {
12330
- [x: string]: unknown;
12331
- };
12174
+ headers?: Partial<{
12175
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12176
+ }>;
12332
12177
  } & {
12333
12178
  pathParameters: {
12334
12179
  mysqlUserId: string;
12335
12180
  };
12336
- } & {
12337
- headers?: Partial<{
12338
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12339
- }>;
12340
12181
  } & {
12341
12182
  headers: {
12342
12183
  "x-access-token"?: string | undefined;
@@ -12353,25 +12194,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12353
12194
  /** Enable a MySQLUser. */
12354
12195
  enableMysqlUser: (request: {
12355
12196
  mysqlUserId: string;
12356
- data?: {
12357
- [x: string]: unknown;
12358
- } | undefined;
12359
12197
  headers?: {
12360
12198
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
12361
12199
  "x-access-token"?: string | undefined;
12362
12200
  } | undefined;
12363
12201
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
12364
- data: {
12365
- [x: string]: unknown;
12366
- };
12202
+ headers?: Partial<{
12203
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12204
+ }>;
12367
12205
  } & {
12368
12206
  pathParameters: {
12369
12207
  mysqlUserId: string;
12370
12208
  };
12371
- } & {
12372
- headers?: Partial<{
12373
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12374
- }>;
12375
12209
  } & {
12376
12210
  headers: {
12377
12211
  "x-access-token"?: string | undefined;
@@ -12385,17 +12219,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12385
12219
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
12386
12220
  [x: string]: unknown;
12387
12221
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
12388
- data: {
12389
- [x: string]: unknown;
12390
- };
12222
+ headers?: Partial<{
12223
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12224
+ }>;
12391
12225
  } & {
12392
12226
  pathParameters: {
12393
12227
  mysqlUserId: string;
12394
12228
  };
12395
- } & {
12396
- headers?: Partial<{
12397
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12398
- }>;
12399
12229
  } & {
12400
12230
  headers: {
12401
12231
  "x-access-token"?: string | undefined;
@@ -21158,25 +20988,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
21158
20988
  /** Decline a ProjectInvite. */
21159
20989
  declineProjectInvite: (request: {
21160
20990
  projectInviteId: string;
21161
- data?: {
21162
- [x: string]: unknown;
21163
- } | undefined;
21164
20991
  headers?: {
21165
20992
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
21166
20993
  "x-access-token"?: string | undefined;
21167
20994
  } | undefined;
21168
20995
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
21169
- data: {
21170
- [x: string]: unknown;
21171
- };
20996
+ headers?: Partial<{
20997
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
20998
+ }>;
21172
20999
  } & {
21173
21000
  pathParameters: {
21174
21001
  projectInviteId: string;
21175
21002
  };
21176
- } & {
21177
- headers?: Partial<{
21178
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21179
- }>;
21180
21003
  } & {
21181
21004
  headers: {
21182
21005
  "x-access-token"?: string | undefined;
@@ -21186,17 +21009,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
21186
21009
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
21187
21010
  [x: string]: unknown;
21188
21011
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
21189
- data: {
21190
- [x: string]: unknown;
21191
- };
21012
+ headers?: Partial<{
21013
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21014
+ }>;
21192
21015
  } & {
21193
21016
  pathParameters: {
21194
21017
  projectInviteId: string;
21195
21018
  };
21196
- } & {
21197
- headers?: Partial<{
21198
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21199
- }>;
21200
21019
  } & {
21201
21020
  headers: {
21202
21021
  "x-access-token"?: string | undefined;
@@ -22064,6 +21883,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22064
21883
  hasExpiry?: boolean | undefined;
22065
21884
  isInherited?: boolean | undefined;
22066
21885
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
21886
+ hasMfa?: boolean | undefined;
22067
21887
  } | undefined;
22068
21888
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22069
21889
  headers?: Partial<{
@@ -22080,6 +21900,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22080
21900
  hasExpiry?: boolean | undefined;
22081
21901
  isInherited?: boolean | undefined;
22082
21902
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
21903
+ hasMfa?: boolean | undefined;
22083
21904
  } & Partial<{
22084
21905
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22085
21906
  }>;
@@ -22108,6 +21929,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22108
21929
  hasExpiry?: boolean | undefined;
22109
21930
  isInherited?: boolean | undefined;
22110
21931
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
21932
+ hasMfa?: boolean | undefined;
22111
21933
  } & Partial<{
22112
21934
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22113
21935
  }>;
@@ -22423,25 +22245,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22423
22245
  /** Resend the mail for a ProjectInvite. */
22424
22246
  resendProjectInviteMail: (request: {
22425
22247
  projectInviteId: string;
22426
- data?: {
22427
- [x: string]: unknown;
22428
- } | undefined;
22429
22248
  headers?: {
22430
22249
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22431
22250
  "x-access-token"?: string | undefined;
22432
22251
  } | undefined;
22433
22252
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22434
- data: {
22435
- [x: string]: unknown;
22436
- };
22253
+ headers?: Partial<{
22254
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22255
+ }>;
22437
22256
  } & {
22438
22257
  pathParameters: {
22439
22258
  projectInviteId: string;
22440
22259
  };
22441
- } & {
22442
- headers?: Partial<{
22443
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22444
- }>;
22445
22260
  } & {
22446
22261
  headers: {
22447
22262
  "x-access-token"?: string | undefined;
@@ -22453,17 +22268,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22453
22268
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
22454
22269
  [x: string]: unknown;
22455
22270
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22456
- data: {
22457
- [x: string]: unknown;
22458
- };
22271
+ headers?: Partial<{
22272
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22273
+ }>;
22459
22274
  } & {
22460
22275
  pathParameters: {
22461
22276
  projectInviteId: string;
22462
22277
  };
22463
- } & {
22464
- headers?: Partial<{
22465
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22466
- }>;
22467
22278
  } & {
22468
22279
  headers: {
22469
22280
  "x-access-token"?: string | undefined;
@@ -184,7 +184,7 @@ export declare const conversationSetConversationStatus: OpenAPIOperation<Request
184
184
  /** Update the content of the message */
185
185
  export declare const conversationUpdateMessage: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdMessagesMessageId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
186
186
  /** Abort a CronjobExecution. */
187
- export declare const cronjobAbortExecution: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
187
+ export declare const cronjobAbortExecution: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdActionsAbort.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
188
188
  /** List Cronjobs belonging to a Project. */
189
189
  export declare const cronjobListCronjobs: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
190
190
  /** Create a Cronjob. */
@@ -192,7 +192,7 @@ export declare const cronjobCreateCronjob: OpenAPIOperation<RequestType<Simplify
192
192
  /** List CronjobExecutions belonging to a Cronjob. */
193
193
  export declare const cronjobListExecutions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
194
194
  /** Trigger a Cronjob. */
195
- export declare const cronjobCreateExecution: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
195
+ export declare const cronjobCreateExecution: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
196
196
  /** Get a Cronjob. */
197
197
  export declare const cronjobGetCronjob: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
198
198
  /** Delete a Cronjob. */
@@ -220,7 +220,7 @@ export declare const customerGetWallet: OpenAPIOperation<RequestType<Simplify<nu
220
220
  /** Create the Wallet for the Customer. */
221
221
  export declare const customerCreateWallet: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdWallet.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdWallet.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdWallet.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdWallet.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdWallet.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdWallet.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdWallet.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdWallet.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdWallet.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdWallet.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdWallet.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
222
222
  /** Decline a CustomerInvite. */
223
- export declare const customerDeclineCustomerInvite: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
223
+ export declare const customerDeclineCustomerInvite: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsDecline.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
224
224
  /** Get a CustomerInvite. */
225
225
  export declare const customerGetCustomerInvite: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
226
226
  /** Delete a CustomerInvite. */
@@ -239,10 +239,6 @@ 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">>;
246
242
  /** Check if the customer profile has a valid contract partner configured. */
247
243
  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">>;
248
244
  /** List CustomerInvites belonging to the executing user. */
@@ -256,7 +252,7 @@ export declare const customerRequestAvatarUpload: OpenAPIOperation<RequestType<S
256
252
  /** Remove the avatar picture of the customer profile. */
257
253
  export declare const customerRemoveAvatar: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json">>;
258
254
  /** Resend the mail for a CustomerInvite. */
259
- export declare const customerResendCustomerInviteMail: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
255
+ export declare const customerResendCustomerInviteMail: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
260
256
  /** List MySQLDatabases belonging to a Project. */
261
257
  export declare const databaseListMysqlDatabases: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
262
258
  /** Create a MySQLDatabase with a MySQLUser. */
@@ -284,9 +280,9 @@ export declare const databaseGetRedisDatabase: OpenAPIOperation<RequestType<Simp
284
280
  /** Delete a RedisDatabase. */
285
281
  export declare const databaseDeleteRedisDatabase: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesRedisDatabaseId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesRedisDatabaseId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesRedisDatabaseId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesRedisDatabaseId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesRedisDatabaseId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesRedisDatabaseId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesRedisDatabaseId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesRedisDatabaseId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesRedisDatabaseId.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesRedisDatabaseId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
286
282
  /** Disable a MySQLUser. */
287
- export declare const databaseDisableMysqlUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
283
+ export declare const databaseDisableMysqlUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsDisable.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
288
284
  /** Enable a MySQLUser. */
289
- export declare const databaseEnableMysqlUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
285
+ export declare const databaseEnableMysqlUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdActionsEnable.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
290
286
  /** Get a MySQLUser's PhpMyAdmin-URL. */
291
287
  export declare const databaseGetMysqlUserPhpMyAdminUrl: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdPhpMyAdminUrl.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdPhpMyAdminUrl.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdPhpMyAdminUrl.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdPhpMyAdminUrl.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdPhpMyAdminUrl.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdPhpMyAdminUrl.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdPhpMyAdminUrl.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersMysqlUserIdPhpMyAdminUrl.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
292
288
  /** List available MySQL character sets and collations, optionally filtered by a MySQLVersion. */
@@ -544,7 +540,7 @@ export declare const projectCreateProjectInvite: OpenAPIOperation<RequestType<Si
544
540
  /** Create a Project belonging to a Server. */
545
541
  export declare const projectCreateProject: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdProjects.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
546
542
  /** Decline a ProjectInvite. */
547
- export declare const projectDeclineProjectInvite: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
543
+ export declare const projectDeclineProjectInvite: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsDecline.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
548
544
  /** Request a Project avatar upload. */
549
545
  export declare const projectRequestProjectAvatarUpload: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAvatar.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
550
546
  /** Delete a Project's avatar. */
@@ -594,7 +590,7 @@ export declare const projectListProjects: OpenAPIOperation<RequestType<Simplify<
594
590
  /** List Servers belonging to the executing user. */
595
591
  export declare const projectListServers: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Servers.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Servers.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Servers.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Servers.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Servers.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Servers.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Servers.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
596
592
  /** Resend the mail for a ProjectInvite. */
597
- export declare const projectResendProjectInviteMail: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
593
+ export declare const projectResendProjectInviteMail: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsResend.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
598
594
  /** Update a Project's description. */
599
595
  export declare const projectUpdateProjectDescription: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDescription.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDescription.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDescription.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDescription.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDescription.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDescription.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDescription.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
600
596
  /** Update a Servers's description. */
@@ -474,14 +474,6 @@ 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
- }
485
477
  namespace CustomerIsCustomerLegallyCompetent {
486
478
  type RequestData = InferredRequestData<typeof descriptors.customerIsCustomerLegallyCompetent>;
487
479
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerIsCustomerLegallyCompetent, TStatus>;
@@ -3483,24 +3475,6 @@ export declare namespace MittwaldAPIV2 {
3483
3475
  title?: string;
3484
3476
  useFormalTerm?: boolean;
3485
3477
  }
3486
- interface LeadFinderProfileRequest {
3487
- createdOn: string;
3488
- customerId: string;
3489
- domain: string;
3490
- profileId: string;
3491
- requestedBy: MittwaldAPIV2.Components.Schemas.LeadFinderUser;
3492
- resultOn?: string;
3493
- status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
3494
- }
3495
- interface LeadFinderProfile {
3496
- approvedOn: string;
3497
- customerId: string;
3498
- disabledOn?: string;
3499
- domain: string;
3500
- }
3501
- interface LeadFinderUser {
3502
- userId: string;
3503
- }
3504
3478
  interface MailCreateMailAddress {
3505
3479
  address: string;
3506
3480
  isCatchAll: boolean;
@@ -9518,9 +9492,6 @@ export declare namespace MittwaldAPIV2 {
9518
9492
  cronjobId: string;
9519
9493
  executionId: string;
9520
9494
  };
9521
- interface RequestBody {
9522
- [k: string]: unknown;
9523
- }
9524
9495
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9525
9496
  type Query = {};
9526
9497
  }
@@ -9682,9 +9653,6 @@ export declare namespace MittwaldAPIV2 {
9682
9653
  type Path = {
9683
9654
  cronjobId: string;
9684
9655
  };
9685
- interface RequestBody {
9686
- [k: string]: unknown;
9687
- }
9688
9656
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9689
9657
  type Query = {};
9690
9658
  }
@@ -10414,9 +10382,6 @@ export declare namespace MittwaldAPIV2 {
10414
10382
  type Path = {
10415
10383
  customerInviteId: string;
10416
10384
  };
10417
- interface RequestBody {
10418
- [k: string]: unknown;
10419
- }
10420
10385
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
10421
10386
  type Query = {};
10422
10387
  }
@@ -10810,112 +10775,6 @@ export declare namespace MittwaldAPIV2 {
10810
10775
  }
10811
10776
  }
10812
10777
  }
10813
- namespace V2CustomersCustomerIdLeadFyndrProfileRequest {
10814
- namespace Get {
10815
- namespace Parameters {
10816
- type Path = {
10817
- customerId: string;
10818
- };
10819
- type Header = {};
10820
- type Query = {};
10821
- }
10822
- namespace Responses {
10823
- namespace $200 {
10824
- namespace Content {
10825
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadFinderProfileRequest;
10826
- }
10827
- }
10828
- namespace $400 {
10829
- namespace Content {
10830
- interface ApplicationJson {
10831
- [k: string]: unknown;
10832
- }
10833
- }
10834
- }
10835
- namespace $403 {
10836
- namespace Content {
10837
- interface ApplicationJson {
10838
- [k: string]: unknown;
10839
- }
10840
- }
10841
- }
10842
- namespace $404 {
10843
- namespace Content {
10844
- interface ApplicationJson {
10845
- [k: string]: unknown;
10846
- }
10847
- }
10848
- }
10849
- namespace $429 {
10850
- namespace Content {
10851
- interface ApplicationJson {
10852
- [k: string]: unknown;
10853
- }
10854
- }
10855
- }
10856
- namespace Default {
10857
- namespace Content {
10858
- interface ApplicationJson {
10859
- [k: string]: unknown;
10860
- }
10861
- }
10862
- }
10863
- }
10864
- }
10865
- }
10866
- namespace V2CustomersCustomerIdLeadFyndrProfile {
10867
- namespace Get {
10868
- namespace Parameters {
10869
- type Path = {
10870
- customerId: string;
10871
- };
10872
- type Header = {};
10873
- type Query = {};
10874
- }
10875
- namespace Responses {
10876
- namespace $200 {
10877
- namespace Content {
10878
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadFinderProfile;
10879
- }
10880
- }
10881
- namespace $400 {
10882
- namespace Content {
10883
- interface ApplicationJson {
10884
- [k: string]: unknown;
10885
- }
10886
- }
10887
- }
10888
- namespace $403 {
10889
- namespace Content {
10890
- interface ApplicationJson {
10891
- [k: string]: unknown;
10892
- }
10893
- }
10894
- }
10895
- namespace $404 {
10896
- namespace Content {
10897
- interface ApplicationJson {
10898
- [k: string]: unknown;
10899
- }
10900
- }
10901
- }
10902
- namespace $429 {
10903
- namespace Content {
10904
- interface ApplicationJson {
10905
- [k: string]: unknown;
10906
- }
10907
- }
10908
- }
10909
- namespace Default {
10910
- namespace Content {
10911
- interface ApplicationJson {
10912
- [k: string]: unknown;
10913
- }
10914
- }
10915
- }
10916
- }
10917
- }
10918
- }
10919
10778
  namespace V2CustomersCustomerIdLegallyCompetent {
10920
10779
  namespace Get {
10921
10780
  namespace Parameters {
@@ -11217,9 +11076,6 @@ export declare namespace MittwaldAPIV2 {
11217
11076
  type Path = {
11218
11077
  customerInviteId: string;
11219
11078
  };
11220
- interface RequestBody {
11221
- [k: string]: unknown;
11222
- }
11223
11079
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
11224
11080
  type Query = {};
11225
11081
  }
@@ -11914,9 +11770,6 @@ export declare namespace MittwaldAPIV2 {
11914
11770
  type Path = {
11915
11771
  mysqlUserId: string;
11916
11772
  };
11917
- interface RequestBody {
11918
- [k: string]: unknown;
11919
- }
11920
11773
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
11921
11774
  type Query = {};
11922
11775
  }
@@ -11963,9 +11816,6 @@ export declare namespace MittwaldAPIV2 {
11963
11816
  type Path = {
11964
11817
  mysqlUserId: string;
11965
11818
  };
11966
- interface RequestBody {
11967
- [k: string]: unknown;
11968
- }
11969
11819
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
11970
11820
  type Query = {};
11971
11821
  }
@@ -18635,9 +18485,6 @@ export declare namespace MittwaldAPIV2 {
18635
18485
  type Path = {
18636
18486
  projectInviteId: string;
18637
18487
  };
18638
- interface RequestBody {
18639
- [k: string]: unknown;
18640
- }
18641
18488
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
18642
18489
  type Query = {};
18643
18490
  }
@@ -19542,6 +19389,7 @@ export declare namespace MittwaldAPIV2 {
19542
19389
  hasExpiry?: boolean;
19543
19390
  isInherited?: boolean;
19544
19391
  role?: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
19392
+ hasMfa?: boolean;
19545
19393
  };
19546
19394
  }
19547
19395
  namespace Responses {
@@ -19796,9 +19644,6 @@ export declare namespace MittwaldAPIV2 {
19796
19644
  type Path = {
19797
19645
  projectInviteId: string;
19798
19646
  };
19799
- interface RequestBody {
19800
- [k: string]: unknown;
19801
- }
19802
19647
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
19803
19648
  type Query = {};
19804
19649
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.143.0';
1
+ export declare const MittwaldAPIClientVersion = '4.144.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.144.0",
3
+ "version": "4.145.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": "132c7d31807af9fe998bacfbc3293c07491cc416"
83
+ "gitHead": "536e65b607bbe51d9161101973f1d4efd6108244"
84
84
  }