@mittwald/api-client 0.0.0-development-fd244c8-20250625 → 0.0.0-development-5f2817b-20250709

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.
@@ -88,8 +88,6 @@ const buildContractApi = (baseClient) => ({
88
88
  getDetailOfContractItem: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractItem, baseClient.contract.getDetailOfContractItem).getApiResource,
89
89
  /** Returns the Contract with the given ID. */
90
90
  getDetailOfContract: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContract, baseClient.contract.getDetailOfContract).getApiResource,
91
- /** Return the next TerminationDate for the ContractItem with the given ID. */
92
- getNextTerminationDateForItem: new ApiCallAsyncResourceFactory(descriptors.contractGetNextTerminationDateForItem, baseClient.contract.getNextTerminationDateForItem).getApiResource,
93
91
  /** Return a list of Contracts for the given Customer. */
94
92
  listContracts: new ApiCallAsyncResourceFactory(descriptors.contractListContracts, baseClient.contract.listContracts).getApiResource,
95
93
  /** Get details of an Invoice. */
@@ -116,6 +114,8 @@ const buildMarketplaceApi = (baseClient) => ({
116
114
  contributorGetCustomerBillingPortalLink: new ApiCallAsyncResourceFactory(descriptors.contributorGetCustomerBillingPortalLink, baseClient.marketplace.contributorGetCustomerBillingPortalLink).getApiResource,
117
115
  /** Get the Stripe Dashboard Link for a Contributor. */
118
116
  contributorGetLoginLink: new ApiCallAsyncResourceFactory(descriptors.contributorGetLoginLink, baseClient.marketplace.contributorGetLoginLink).getApiResource,
117
+ /** List ContractPartners of the contributor. */
118
+ contributorListContractPartnersOfContributor: new ApiCallAsyncResourceFactory(descriptors.contributorListContractPartnersOfContributor, baseClient.marketplace.contributorListContractPartnersOfContributor).getApiResource,
119
119
  /** List incoming Invoices of a Contributor. */
120
120
  contributorListIncomingInvoices: new ApiCallAsyncResourceFactory(descriptors.contributorListIncomingInvoices, baseClient.marketplace.contributorListIncomingInvoices).getApiResource,
121
121
  /** List all invoices on behalf of a contributor. */
@@ -273,21 +273,21 @@ const buildFileApi = (baseClient) => ({
273
273
  });
274
274
  const buildLeadFyndrApi = (baseClient) => ({
275
275
  /** Get your LeadFyndr request. */
276
- leadfyndrGetLeadFyndrProfileRequestExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfileRequestExperimental, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfileRequestExperimental).getApiResource,
276
+ leadfyndrGetLeadFyndrProfileRequest: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfileRequest, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfileRequest).getApiResource,
277
277
  /** Get cities in DACH. */
278
- leadfyndrGetCitiesExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetCitiesExperimental, baseClient.leadFyndr.leadfyndrGetCitiesExperimental).getApiResource,
279
- /** Get a simple lead. Use the unlocked route for more detail leads. */
280
- leadfyndrGetLeadExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadExperimental, baseClient.leadFyndr.leadfyndrGetLeadExperimental).getApiResource,
281
- /** Get your LeadFyndr profile. */
282
- leadfyndrGetLeadFyndrProfileExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfileExperimental, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfileExperimental).getApiResource,
278
+ leadfyndrGetCities: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetCities, baseClient.leadFyndr.leadfyndrGetCities).getApiResource,
283
279
  /** Get lead tariff options. How many leads did you unlock this month? */
284
- leadfyndrGetLeadFyndrProfileTariffOptionsExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfileTariffOptionsExperimental, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfileTariffOptionsExperimental).getApiResource,
280
+ leadfyndrGetLeadFyndrProfileTariffOptions: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfileTariffOptions, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfileTariffOptions).getApiResource,
281
+ /** Get your LeadFyndr profile. */
282
+ leadfyndrGetLeadFyndrProfile: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfile, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfile).getApiResource,
283
+ /** Get a simple lead. Use the unlocked route for more detail leads. */
284
+ leadfyndrGetLead: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLead, baseClient.leadFyndr.leadfyndrGetLead).getApiResource,
285
285
  /** Get a detail of a unlocked lead. Organisation can unlock leads. */
286
- leadfyndrGetUnlockedLeadExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetUnlockedLeadExperimental, baseClient.leadFyndr.leadfyndrGetUnlockedLeadExperimental).getApiResource,
286
+ leadfyndrGetUnlockedLead: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetUnlockedLead, baseClient.leadFyndr.leadfyndrGetUnlockedLead).getApiResource,
287
287
  /** Get all leads. Use the unlocked routes for more lead details. */
288
- leadfyndrListLeadsExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListLeadsExperimental, baseClient.leadFyndr.leadfyndrListLeadsExperimental).getApiResource,
288
+ leadfyndrListLeads: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListLeads, baseClient.leadFyndr.leadfyndrListLeads).getApiResource,
289
289
  /** Get all unlocked leads. Organisation can unlock leads. */
290
- leadfyndrListUnlockedLeadsExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListUnlockedLeadsExperimental, baseClient.leadFyndr.leadfyndrListUnlockedLeadsExperimental).getApiResource,
290
+ leadfyndrListUnlockedLeads: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListUnlockedLeads, baseClient.leadFyndr.leadfyndrListUnlockedLeads).getApiResource,
291
291
  });
292
292
  const buildMailApi = (baseClient) => ({
293
293
  /** List DeliveryBoxes belonging to a Project. */
@@ -166,8 +166,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
166
166
  getDetailOfContractItem: this.requestFunctionFactory(descriptors.contractGetDetailOfContractItem),
167
167
  /** Returns the Contract with the given ID. */
168
168
  getDetailOfContract: this.requestFunctionFactory(descriptors.contractGetDetailOfContract),
169
- /** Return the next TerminationDate for the ContractItem with the given ID. */
170
- getNextTerminationDateForItem: this.requestFunctionFactory(descriptors.contractGetNextTerminationDateForItem),
171
169
  /** Return a list of Contracts for the given Customer. */
172
170
  listContracts: this.requestFunctionFactory(descriptors.contractListContracts),
173
171
  /** Get details of an Invoice. */
@@ -207,6 +205,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
207
205
  contributorGetCustomerBillingPortalLink: this.requestFunctionFactory(descriptors.contributorGetCustomerBillingPortalLink),
208
206
  /** Get the Stripe Dashboard Link for a Contributor. */
209
207
  contributorGetLoginLink: this.requestFunctionFactory(descriptors.contributorGetLoginLink),
208
+ /** List ContractPartners of the contributor. */
209
+ contributorListContractPartnersOfContributor: this.requestFunctionFactory(descriptors.contributorListContractPartnersOfContributor),
210
210
  /** List incoming Invoices of a Contributor. */
211
211
  contributorListIncomingInvoices: this.requestFunctionFactory(descriptors.contributorListIncomingInvoices),
212
212
  /** List all invoices on behalf of a contributor. */
@@ -307,8 +307,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
307
307
  customerGetPaymentMethod: this.requestFunctionFactory(descriptors.marketplaceCustomerGetPaymentMethod),
308
308
  /** Get the link to update the marketplace payment method */
309
309
  customerUpdatePaymentMethod: this.requestFunctionFactory(descriptors.marketplaceCustomerUpdatePaymentMethod),
310
- /** Verify an Extension. */
311
- extensionVerifyExtensionInternal: this.requestFunctionFactory(descriptors.extensionVerifyExtensionInternal),
312
310
  };
313
311
  /** The conversation API allows you to manage your support conversations. */
314
312
  conversation = {
@@ -748,29 +746,29 @@ export class MittwaldAPIV2Client extends ApiClientBase {
748
746
  /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
749
747
  leadFyndr = {
750
748
  /** Get your LeadFyndr request. */
751
- leadfyndrGetLeadFyndrProfileRequestExperimental: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfileRequestExperimental),
749
+ leadfyndrGetLeadFyndrProfileRequest: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfileRequest),
752
750
  /** Create a new access request for LeadFyndr. */
753
- leadfyndrCreateLeadFyndrAccessRequestExperimental: this.requestFunctionFactory(descriptors.leadfyndrCreateLeadFyndrAccessRequestExperimental),
751
+ leadfyndrCreateLeadFyndrAccessRequest: this.requestFunctionFactory(descriptors.leadfyndrCreateLeadFyndrAccessRequest),
754
752
  /** Get cities in DACH. */
755
- leadfyndrGetCitiesExperimental: this.requestFunctionFactory(descriptors.leadfyndrGetCitiesExperimental),
756
- /** Get a simple lead. Use the unlocked route for more detail leads. */
757
- leadfyndrGetLeadExperimental: this.requestFunctionFactory(descriptors.leadfyndrGetLeadExperimental),
758
- /** Get your LeadFyndr profile. */
759
- leadfyndrGetLeadFyndrProfileExperimental: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfileExperimental),
753
+ leadfyndrGetCities: this.requestFunctionFactory(descriptors.leadfyndrGetCities),
760
754
  /** Get lead tariff options. How many leads did you unlock this month? */
761
- leadfyndrGetLeadFyndrProfileTariffOptionsExperimental: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfileTariffOptionsExperimental),
755
+ leadfyndrGetLeadFyndrProfileTariffOptions: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfileTariffOptions),
756
+ /** Get your LeadFyndr profile. */
757
+ leadfyndrGetLeadFyndrProfile: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfile),
758
+ /** Get a simple lead. Use the unlocked route for more detail leads. */
759
+ leadfyndrGetLead: this.requestFunctionFactory(descriptors.leadfyndrGetLead),
762
760
  /** Get a detail of a unlocked lead. Organisation can unlock leads. */
763
- leadfyndrGetUnlockedLeadExperimental: this.requestFunctionFactory(descriptors.leadfyndrGetUnlockedLeadExperimental),
761
+ leadfyndrGetUnlockedLead: this.requestFunctionFactory(descriptors.leadfyndrGetUnlockedLead),
764
762
  /** Unlock a lead for the given customerId. */
765
- leadfyndrUnlockLeadExperimental: this.requestFunctionFactory(descriptors.leadfyndrUnlockLeadExperimental),
763
+ leadfyndrUnlockLead: this.requestFunctionFactory(descriptors.leadfyndrUnlockLead),
766
764
  /** Get all leads. Use the unlocked routes for more lead details. */
767
- leadfyndrListLeadsExperimental: this.requestFunctionFactory(descriptors.leadfyndrListLeadsExperimental),
765
+ leadfyndrListLeads: this.requestFunctionFactory(descriptors.leadfyndrListLeads),
768
766
  /** Get all unlocked leads. Organisation can unlock leads. */
769
- leadfyndrListUnlockedLeadsExperimental: this.requestFunctionFactory(descriptors.leadfyndrListUnlockedLeadsExperimental),
767
+ leadfyndrListUnlockedLeads: this.requestFunctionFactory(descriptors.leadfyndrListUnlockedLeads),
770
768
  /** Reserve a unlocked lead for the given customerId. */
771
- leadfyndrReserveUnlockedLeadExperimental: this.requestFunctionFactory(descriptors.leadfyndrReserveUnlockedLeadExperimental),
769
+ leadfyndrReserveUnlockedLead: this.requestFunctionFactory(descriptors.leadfyndrReserveUnlockedLead),
772
770
  /** Removes a reservation on a unlocked lead for the given customerId. */
773
- leadfyndrRemoveUnlockedLeadReservationExperimental: this.requestFunctionFactory(descriptors.leadfyndrRemoveUnlockedLeadReservationExperimental),
771
+ leadfyndrRemoveUnlockedLeadReservation: this.requestFunctionFactory(descriptors.leadfyndrRemoveUnlockedLeadReservation),
774
772
  };
775
773
  /** The page insights API allows you to get page insights information. */
776
774
  pageInsights = {
@@ -442,12 +442,6 @@ export const contractGetDetailOfContract = {
442
442
  method: "GET",
443
443
  operationId: "contract-get-detail-of-contract",
444
444
  };
445
- /** Return the next TerminationDate for the ContractItem with the given ID. */
446
- export const contractGetNextTerminationDateForItem = {
447
- path: "/v2/contracts/{contractId}/items/{contractItemId}/next-termination-dates",
448
- method: "GET",
449
- operationId: "contract-get-next-termination-date-for-item",
450
- };
451
445
  /** Return a list of Contracts for the given Customer. */
452
446
  export const contractListContracts = {
453
447
  path: "/v2/customers/{customerId}/contracts",
@@ -478,6 +472,12 @@ export const contributorGetLoginLink = {
478
472
  method: "GET",
479
473
  operationId: "contributor-get-login-link",
480
474
  };
475
+ /** List ContractPartners of the contributor. */
476
+ export const contributorListContractPartnersOfContributor = {
477
+ path: "/v2/contributors/{contributorId}/contract-partners",
478
+ method: "GET",
479
+ operationId: "contributor-list-contract-partners-of-contributor",
480
+ };
481
481
  /** List incoming Invoices of a Contributor. */
482
482
  export const contributorListIncomingInvoices = {
483
483
  path: "/v2/contributors/{contributorId}/invoices/incoming",
@@ -1080,7 +1080,7 @@ export const domainDeleteDomain = {
1080
1080
  };
1081
1081
  /** Get the latest screenshot's FileReference belonging to a Domain. */
1082
1082
  export const domainGetLatestScreenshot = {
1083
- path: "/v2/domains/{domainId}/latest-screenshot",
1083
+ path: "/v2/domains/latest-screenshot",
1084
1084
  method: "GET",
1085
1085
  operationId: "domain-get-latest-screenshot",
1086
1086
  };
@@ -1499,76 +1499,76 @@ export const invoiceListCustomerInvoices = {
1499
1499
  operationId: "invoice-list-customer-invoices",
1500
1500
  };
1501
1501
  /** Get your LeadFyndr request. */
1502
- export const leadfyndrGetLeadFyndrProfileRequestExperimental = {
1503
- path: "/v2-experimental/customers/{customerId}/lead-fyndr-profile-request",
1502
+ export const leadfyndrGetLeadFyndrProfileRequest = {
1503
+ path: "/v2/customers/{customerId}/lead-fyndr-profile-request",
1504
1504
  method: "GET",
1505
- operationId: "leadfyndr-get-lead-fyndr-profile-request-experimental",
1505
+ operationId: "leadfyndr-get-lead-fyndr-profile-request",
1506
1506
  };
1507
1507
  /** Create a new access request for LeadFyndr. */
1508
- export const leadfyndrCreateLeadFyndrAccessRequestExperimental = {
1509
- path: "/v2-experimental/customers/{customerId}/lead-fyndr-profile-request",
1508
+ export const leadfyndrCreateLeadFyndrAccessRequest = {
1509
+ path: "/v2/customers/{customerId}/lead-fyndr-profile-request",
1510
1510
  method: "POST",
1511
- operationId: "leadfyndr-create-lead-fyndr-access-request-experimental",
1511
+ operationId: "leadfyndr-create-lead-fyndr-access-request",
1512
1512
  };
1513
1513
  /** Get cities in DACH. */
1514
- export const leadfyndrGetCitiesExperimental = {
1515
- path: "/v2-experimental/cities",
1514
+ export const leadfyndrGetCities = {
1515
+ path: "/v2/cities",
1516
1516
  method: "GET",
1517
- operationId: "leadfyndr-get-cities-experimental",
1517
+ operationId: "leadfyndr-get-cities",
1518
1518
  };
1519
- /** Get a simple lead. Use the unlocked route for more detail leads. */
1520
- export const leadfyndrGetLeadExperimental = {
1521
- path: "/v2-experimental/customers/{customerId}/leads/{leadId}",
1519
+ /** Get lead tariff options. How many leads did you unlock this month? */
1520
+ export const leadfyndrGetLeadFyndrProfileTariffOptions = {
1521
+ path: "/v2/customers/{customerId}/lead-fyndr-profile/tariff",
1522
1522
  method: "GET",
1523
- operationId: "leadfyndr-get-lead-experimental",
1523
+ operationId: "leadfyndr-get-lead-fyndr-profile-tariff-options",
1524
1524
  };
1525
1525
  /** Get your LeadFyndr profile. */
1526
- export const leadfyndrGetLeadFyndrProfileExperimental = {
1527
- path: "/v2-experimental/customers/{customerId}/lead-fyndr-profile",
1526
+ export const leadfyndrGetLeadFyndrProfile = {
1527
+ path: "/v2/customers/{customerId}/lead-fyndr-profile",
1528
1528
  method: "GET",
1529
- operationId: "leadfyndr-get-lead-fyndr-profile-experimental",
1529
+ operationId: "leadfyndr-get-lead-fyndr-profile",
1530
1530
  };
1531
- /** Get lead tariff options. How many leads did you unlock this month? */
1532
- export const leadfyndrGetLeadFyndrProfileTariffOptionsExperimental = {
1533
- path: "/v2-experimental/customers/{customerId}/lead-fyndr-profile/tariff",
1531
+ /** Get a simple lead. Use the unlocked route for more detail leads. */
1532
+ export const leadfyndrGetLead = {
1533
+ path: "/v2/customers/{customerId}/leads/{leadId}",
1534
1534
  method: "GET",
1535
- operationId: "leadfyndr-get-lead-fyndr-profile-tariff-options-experimental",
1535
+ operationId: "leadfyndr-get-lead",
1536
1536
  };
1537
1537
  /** Get a detail of a unlocked lead. Organisation can unlock leads. */
1538
- export const leadfyndrGetUnlockedLeadExperimental = {
1539
- path: "/v2-experimental/customers/{customerId}/unlocked-leads/{leadId}",
1538
+ export const leadfyndrGetUnlockedLead = {
1539
+ path: "/v2/customers/{customerId}/unlocked-leads/{leadId}",
1540
1540
  method: "GET",
1541
- operationId: "leadfyndr-get-unlocked-lead-experimental",
1541
+ operationId: "leadfyndr-get-unlocked-lead",
1542
1542
  };
1543
1543
  /** Unlock a lead for the given customerId. */
1544
- export const leadfyndrUnlockLeadExperimental = {
1545
- path: "/v2-experimental/customers/{customerId}/unlocked-leads/{leadId}",
1544
+ export const leadfyndrUnlockLead = {
1545
+ path: "/v2/customers/{customerId}/unlocked-leads/{leadId}",
1546
1546
  method: "POST",
1547
- operationId: "leadfyndr-unlock-lead-experimental",
1547
+ operationId: "leadfyndr-unlock-lead",
1548
1548
  };
1549
1549
  /** Get all leads. Use the unlocked routes for more lead details. */
1550
- export const leadfyndrListLeadsExperimental = {
1551
- path: "/v2-experimental/customers/{customerId}/leads",
1550
+ export const leadfyndrListLeads = {
1551
+ path: "/v2/customers/{customerId}/leads",
1552
1552
  method: "GET",
1553
- operationId: "leadfyndr-list-leads-experimental",
1553
+ operationId: "leadfyndr-list-leads",
1554
1554
  };
1555
1555
  /** Get all unlocked leads. Organisation can unlock leads. */
1556
- export const leadfyndrListUnlockedLeadsExperimental = {
1557
- path: "/v2-experimental/customers/{customerId}/unlocked-leads",
1556
+ export const leadfyndrListUnlockedLeads = {
1557
+ path: "/v2/customers/{customerId}/unlocked-leads",
1558
1558
  method: "GET",
1559
- operationId: "leadfyndr-list-unlocked-leads-experimental",
1559
+ operationId: "leadfyndr-list-unlocked-leads",
1560
1560
  };
1561
1561
  /** Reserve a unlocked lead for the given customerId. */
1562
- export const leadfyndrReserveUnlockedLeadExperimental = {
1563
- path: "/v2-experimental/customers/{customerId}/unlocked-leads/{leadId}/reservation",
1562
+ export const leadfyndrReserveUnlockedLead = {
1563
+ path: "/v2/customers/{customerId}/unlocked-leads/{leadId}/reservation",
1564
1564
  method: "POST",
1565
- operationId: "leadfyndr-reserve-unlocked-lead-experimental",
1565
+ operationId: "leadfyndr-reserve-unlocked-lead",
1566
1566
  };
1567
1567
  /** Removes a reservation on a unlocked lead for the given customerId. */
1568
- export const leadfyndrRemoveUnlockedLeadReservationExperimental = {
1569
- path: "/v2-experimental/customers/{customerId}/unlocked-leads/{leadId}/reservation",
1568
+ export const leadfyndrRemoveUnlockedLeadReservation = {
1569
+ path: "/v2/customers/{customerId}/unlocked-leads/{leadId}/reservation",
1570
1570
  method: "DELETE",
1571
- operationId: "leadfyndr-remove-unlocked-lead-reservation-experimental",
1571
+ operationId: "leadfyndr-remove-unlocked-lead-reservation",
1572
1572
  };
1573
1573
  /** List DeliveryBoxes belonging to a Project. */
1574
1574
  export const mailListDeliveryBoxes = {
@@ -2482,9 +2482,3 @@ export const verificationVerifyCompany = {
2482
2482
  method: "POST",
2483
2483
  operationId: "verification-verify-company",
2484
2484
  };
2485
- /** Verify an Extension. */
2486
- export const extensionVerifyExtensionInternal = {
2487
- path: "/internal-v2/contributors/{contributorId}/extensions/{extensionId}/actions/verify",
2488
- method: "POST",
2489
- operationId: "extension-verify-extension-internal",
2490
- };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.167.0';
1
+ export const MittwaldAPIClientVersion = '4.178.0';
@@ -31,6 +31,9 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
31
31
  id: string;
32
32
  installationPath: string;
33
33
  linkedDatabases?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[] | undefined;
34
+ lockedBy?: {
35
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
36
+ } | undefined;
34
37
  processes?: string[] | undefined;
35
38
  projectId?: string | undefined;
36
39
  screenshotId?: string | undefined;
@@ -662,18 +665,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
662
665
  customerId: string;
663
666
  termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
664
667
  }>;
665
- /** Return the next TerminationDate for the ContractItem with the given ID. */
666
- getNextTerminationDateForItem: (conf: {
667
- contractId: string;
668
- contractItemId: string;
669
- headers?: {
670
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
671
- "x-access-token"?: string | undefined;
672
- } | undefined;
673
- }) => import("@mittwald/react-use-promise").AsyncResource<{
674
- contractItemId: string;
675
- nextTerminationDate: string;
676
- }>;
677
668
  /** Return a list of Contracts for the given Customer. */
678
669
  listContracts: (conf: {
679
670
  customerId: string;
@@ -871,6 +862,19 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
871
862
  }) => import("@mittwald/react-use-promise").AsyncResource<{
872
863
  url?: string | undefined;
873
864
  }>;
865
+ /** List ContractPartners of the contributor. */
866
+ contributorListContractPartnersOfContributor: (conf: {
867
+ contributorId: string;
868
+ headers?: {
869
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
870
+ "x-access-token"?: string | undefined;
871
+ } | undefined;
872
+ queryParameters?: {
873
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
874
+ extensionId?: string | undefined;
875
+ extensionInstanceId?: string | undefined;
876
+ } | undefined;
877
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[]>;
874
878
  /** List incoming Invoices of a Contributor. */
875
879
  contributorListIncomingInvoices: (conf: {
876
880
  contributorId: string;
@@ -1439,11 +1443,14 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1439
1443
  "x-access-token"?: string | undefined;
1440
1444
  } | undefined;
1441
1445
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1446
+ avatarRef?: string | undefined;
1442
1447
  customerId: string;
1443
1448
  email: string;
1444
1449
  expiresAt?: string | undefined;
1450
+ firstName: string;
1445
1451
  id: string;
1446
1452
  inviteId?: string | undefined;
1453
+ lastName: string;
1447
1454
  memberSince?: string | undefined;
1448
1455
  mfa: boolean;
1449
1456
  role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
@@ -1760,11 +1767,10 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1760
1767
  }>;
1761
1768
  /** Get the latest screenshot's FileReference belonging to a Domain. */
1762
1769
  getLatestScreenshot: (conf: {
1763
- data: {
1770
+ queryParameters: {
1771
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1764
1772
  domainName: string;
1765
- path: string;
1766
1773
  };
1767
- domainId: string;
1768
1774
  headers?: {
1769
1775
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1770
1776
  "x-access-token"?: string | undefined;
@@ -2021,7 +2027,7 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
2021
2027
  };
2022
2028
  declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2023
2029
  /** Get your LeadFyndr request. */
2024
- leadfyndrGetLeadFyndrProfileRequestExperimental: (conf: {
2030
+ leadfyndrGetLeadFyndrProfileRequest: (conf: {
2025
2031
  customerId: string;
2026
2032
  headers?: {
2027
2033
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -2036,7 +2042,7 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2036
2042
  status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
2037
2043
  }>;
2038
2044
  /** Get cities in DACH. */
2039
- leadfyndrGetCitiesExperimental: (conf: {
2045
+ leadfyndrGetCities: (conf: {
2040
2046
  queryParameters: {
2041
2047
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2042
2048
  input: string;
@@ -2045,31 +2051,27 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2045
2051
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2046
2052
  } | undefined;
2047
2053
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrCity[]>;
2048
- /** Get a simple lead. Use the unlocked route for more detail leads. */
2049
- leadfyndrGetLeadExperimental: (conf: {
2050
- leadId: string;
2054
+ /** Get lead tariff options. How many leads did you unlock this month? */
2055
+ leadfyndrGetLeadFyndrProfileTariffOptions: (conf: {
2051
2056
  customerId: string;
2052
2057
  headers?: {
2053
2058
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2054
2059
  } | undefined;
2055
2060
  }) => import("@mittwald/react-use-promise").AsyncResource<{
2056
- businessFields: string[];
2057
- company: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrBasicCompany;
2058
- description: string;
2059
- hoster: {
2060
- server: string[];
2061
+ nextUnlockRenewalDate?: string | undefined;
2062
+ reservation: {
2063
+ available: number;
2064
+ tariffLimit: number;
2065
+ used: number;
2066
+ };
2067
+ unlocked: {
2068
+ available: number;
2069
+ tariffLimit: number;
2070
+ used: number;
2061
2071
  };
2062
- languages: string[];
2063
- leadId: string;
2064
- mainTechnology?: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology | undefined;
2065
- metrics: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrBasicMetrics;
2066
- potential: number;
2067
- scannedAt?: string | undefined;
2068
- screenshot: string;
2069
- technologies: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology[];
2070
2072
  }>;
2071
2073
  /** Get your LeadFyndr profile. */
2072
- leadfyndrGetLeadFyndrProfileExperimental: (conf: {
2074
+ leadfyndrGetLeadFyndrProfile: (conf: {
2073
2075
  customerId: string;
2074
2076
  headers?: {
2075
2077
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -2081,27 +2083,31 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2081
2083
  domain: string;
2082
2084
  tariff: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTariffOptions;
2083
2085
  }>;
2084
- /** Get lead tariff options. How many leads did you unlock this month? */
2085
- leadfyndrGetLeadFyndrProfileTariffOptionsExperimental: (conf: {
2086
+ /** Get a simple lead. Use the unlocked route for more detail leads. */
2087
+ leadfyndrGetLead: (conf: {
2088
+ leadId: string;
2086
2089
  customerId: string;
2087
2090
  headers?: {
2088
2091
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2089
2092
  } | undefined;
2090
2093
  }) => import("@mittwald/react-use-promise").AsyncResource<{
2091
- nextUnlockRenewalDate?: string | undefined;
2092
- reservation: {
2093
- available: number;
2094
- tariffLimit: number;
2095
- used: number;
2096
- };
2097
- unlocked: {
2098
- available: number;
2099
- tariffLimit: number;
2100
- used: number;
2094
+ businessFields: string[];
2095
+ company: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrBasicCompany;
2096
+ description: string;
2097
+ hoster: {
2098
+ server: string[];
2101
2099
  };
2100
+ languages: string[];
2101
+ leadId: string;
2102
+ mainTechnology?: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology | undefined;
2103
+ metrics: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrBasicMetrics;
2104
+ potential: number;
2105
+ scannedAt?: string | undefined;
2106
+ screenshot: string;
2107
+ technologies: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology[];
2102
2108
  }>;
2103
2109
  /** Get a detail of a unlocked lead. Organisation can unlock leads. */
2104
- leadfyndrGetUnlockedLeadExperimental: (conf: {
2110
+ leadfyndrGetUnlockedLead: (conf: {
2105
2111
  leadId: string;
2106
2112
  customerId: string;
2107
2113
  headers?: {
@@ -2129,7 +2135,7 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2129
2135
  unlockedAt: string;
2130
2136
  }>;
2131
2137
  /** Get all leads. Use the unlocked routes for more lead details. */
2132
- leadfyndrListLeadsExperimental: (conf: {
2138
+ leadfyndrListLeads: (conf: {
2133
2139
  customerId: string;
2134
2140
  headers?: {
2135
2141
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -2166,7 +2172,7 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2166
2172
  totalCount: number;
2167
2173
  }>;
2168
2174
  /** Get all unlocked leads. Organisation can unlock leads. */
2169
- leadfyndrListUnlockedLeadsExperimental: (conf: {
2175
+ leadfyndrListUnlockedLeads: (conf: {
2170
2176
  customerId: string;
2171
2177
  headers?: {
2172
2178
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -2236,7 +2242,7 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2236
2242
  limit?: number | undefined;
2237
2243
  skip?: number | undefined;
2238
2244
  page?: number | undefined;
2239
- sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name")[] | undefined;
2245
+ sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[] | undefined;
2240
2246
  order?: ("asc" | "desc")[] | undefined;
2241
2247
  } | undefined;
2242
2248
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[]>;