@mittwald/api-client 0.0.0-development-fd244c8-20250625 → 0.0.0-development-7e09328-20250710

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.179.0';
@@ -31,7 +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
- processes?: string[] | undefined;
34
+ lockedBy?: {
35
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
36
+ } | undefined;
35
37
  projectId?: string | undefined;
36
38
  screenshotId?: string | undefined;
37
39
  screenshotRef?: string | undefined;
@@ -662,18 +664,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
662
664
  customerId: string;
663
665
  termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
664
666
  }>;
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
667
  /** Return a list of Contracts for the given Customer. */
678
668
  listContracts: (conf: {
679
669
  customerId: string;
@@ -763,6 +753,8 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
763
753
  limit?: number | undefined;
764
754
  skip?: number | undefined;
765
755
  page?: number | undefined;
756
+ sort?: "invoiceNumber"[] | undefined;
757
+ order?: ("asc" | "desc")[] | undefined;
766
758
  } | undefined;
767
759
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceInvoice[]>;
768
760
  /** Get list of Orders. */
@@ -871,6 +863,19 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
871
863
  }) => import("@mittwald/react-use-promise").AsyncResource<{
872
864
  url?: string | undefined;
873
865
  }>;
866
+ /** List ContractPartners of the contributor. */
867
+ contributorListContractPartnersOfContributor: (conf: {
868
+ contributorId: string;
869
+ headers?: {
870
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
871
+ "x-access-token"?: string | undefined;
872
+ } | undefined;
873
+ queryParameters?: {
874
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
875
+ extensionId?: string | undefined;
876
+ extensionInstanceId?: string | undefined;
877
+ } | undefined;
878
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[]>;
874
879
  /** List incoming Invoices of a Contributor. */
875
880
  contributorListIncomingInvoices: (conf: {
876
881
  contributorId: string;
@@ -1439,11 +1444,14 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1439
1444
  "x-access-token"?: string | undefined;
1440
1445
  } | undefined;
1441
1446
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1447
+ avatarRef?: string | undefined;
1442
1448
  customerId: string;
1443
1449
  email: string;
1444
1450
  expiresAt?: string | undefined;
1451
+ firstName: string;
1445
1452
  id: string;
1446
1453
  inviteId?: string | undefined;
1454
+ lastName: string;
1447
1455
  memberSince?: string | undefined;
1448
1456
  mfa: boolean;
1449
1457
  role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
@@ -1760,11 +1768,10 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1760
1768
  }>;
1761
1769
  /** Get the latest screenshot's FileReference belonging to a Domain. */
1762
1770
  getLatestScreenshot: (conf: {
1763
- data: {
1771
+ queryParameters: {
1772
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1764
1773
  domainName: string;
1765
- path: string;
1766
1774
  };
1767
- domainId: string;
1768
1775
  headers?: {
1769
1776
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1770
1777
  "x-access-token"?: string | undefined;
@@ -2021,7 +2028,7 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
2021
2028
  };
2022
2029
  declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2023
2030
  /** Get your LeadFyndr request. */
2024
- leadfyndrGetLeadFyndrProfileRequestExperimental: (conf: {
2031
+ leadfyndrGetLeadFyndrProfileRequest: (conf: {
2025
2032
  customerId: string;
2026
2033
  headers?: {
2027
2034
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -2036,7 +2043,7 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2036
2043
  status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
2037
2044
  }>;
2038
2045
  /** Get cities in DACH. */
2039
- leadfyndrGetCitiesExperimental: (conf: {
2046
+ leadfyndrGetCities: (conf: {
2040
2047
  queryParameters: {
2041
2048
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2042
2049
  input: string;
@@ -2045,31 +2052,27 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2045
2052
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2046
2053
  } | undefined;
2047
2054
  }) => 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;
2055
+ /** Get lead tariff options. How many leads did you unlock this month? */
2056
+ leadfyndrGetLeadFyndrProfileTariffOptions: (conf: {
2051
2057
  customerId: string;
2052
2058
  headers?: {
2053
2059
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2054
2060
  } | undefined;
2055
2061
  }) => 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[];
2062
+ nextUnlockRenewalDate?: string | undefined;
2063
+ reservation: {
2064
+ available: number;
2065
+ tariffLimit: number;
2066
+ used: number;
2067
+ };
2068
+ unlocked: {
2069
+ available: number;
2070
+ tariffLimit: number;
2071
+ used: number;
2061
2072
  };
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
2073
  }>;
2071
2074
  /** Get your LeadFyndr profile. */
2072
- leadfyndrGetLeadFyndrProfileExperimental: (conf: {
2075
+ leadfyndrGetLeadFyndrProfile: (conf: {
2073
2076
  customerId: string;
2074
2077
  headers?: {
2075
2078
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -2081,27 +2084,31 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2081
2084
  domain: string;
2082
2085
  tariff: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTariffOptions;
2083
2086
  }>;
2084
- /** Get lead tariff options. How many leads did you unlock this month? */
2085
- leadfyndrGetLeadFyndrProfileTariffOptionsExperimental: (conf: {
2087
+ /** Get a simple lead. Use the unlocked route for more detail leads. */
2088
+ leadfyndrGetLead: (conf: {
2089
+ leadId: string;
2086
2090
  customerId: string;
2087
2091
  headers?: {
2088
2092
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2089
2093
  } | undefined;
2090
2094
  }) => 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;
2095
+ businessFields: string[];
2096
+ company: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrBasicCompany;
2097
+ description: string;
2098
+ hoster: {
2099
+ server: string[];
2101
2100
  };
2101
+ languages: string[];
2102
+ leadId: string;
2103
+ mainTechnology?: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology | undefined;
2104
+ metrics: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrBasicMetrics;
2105
+ potential: number;
2106
+ scannedAt?: string | undefined;
2107
+ screenshot: string;
2108
+ technologies: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology[];
2102
2109
  }>;
2103
2110
  /** Get a detail of a unlocked lead. Organisation can unlock leads. */
2104
- leadfyndrGetUnlockedLeadExperimental: (conf: {
2111
+ leadfyndrGetUnlockedLead: (conf: {
2105
2112
  leadId: string;
2106
2113
  customerId: string;
2107
2114
  headers?: {
@@ -2129,7 +2136,7 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2129
2136
  unlockedAt: string;
2130
2137
  }>;
2131
2138
  /** Get all leads. Use the unlocked routes for more lead details. */
2132
- leadfyndrListLeadsExperimental: (conf: {
2139
+ leadfyndrListLeads: (conf: {
2133
2140
  customerId: string;
2134
2141
  headers?: {
2135
2142
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -2166,7 +2173,7 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2166
2173
  totalCount: number;
2167
2174
  }>;
2168
2175
  /** Get all unlocked leads. Organisation can unlock leads. */
2169
- leadfyndrListUnlockedLeadsExperimental: (conf: {
2176
+ leadfyndrListUnlockedLeads: (conf: {
2170
2177
  customerId: string;
2171
2178
  headers?: {
2172
2179
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -2236,7 +2243,7 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2236
2243
  limit?: number | undefined;
2237
2244
  skip?: number | undefined;
2238
2245
  page?: number | undefined;
2239
- sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name")[] | undefined;
2246
+ sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[] | undefined;
2240
2247
  order?: ("asc" | "desc")[] | undefined;
2241
2248
  } | undefined;
2242
2249
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[]>;