@mittwald/api-client 4.176.0 → 4.177.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.
@@ -267,6 +267,24 @@ const buildFileApi = (baseClient) => ({
267
267
  /** Get a File with user-friendly url. */
268
268
  getFileWithName: new ApiCallAsyncResourceFactory(descriptors.fileGetFileWithName, baseClient.file.getFileWithName).getApiResource,
269
269
  });
270
+ const buildLeadFyndrApi = (baseClient) => ({
271
+ /** Get your LeadFyndr request. */
272
+ leadfyndrGetLeadFyndrProfileRequest: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfileRequest, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfileRequest).getApiResource,
273
+ /** Get cities in DACH. */
274
+ leadfyndrGetCities: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetCities, baseClient.leadFyndr.leadfyndrGetCities).getApiResource,
275
+ /** Get lead tariff options. How many leads did you unlock this month? */
276
+ leadfyndrGetLeadFyndrProfileTariffOptions: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfileTariffOptions, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfileTariffOptions).getApiResource,
277
+ /** Get your LeadFyndr profile. */
278
+ leadfyndrGetLeadFyndrProfile: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfile, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfile).getApiResource,
279
+ /** Get a simple lead. Use the unlocked route for more detail leads. */
280
+ leadfyndrGetLead: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLead, baseClient.leadFyndr.leadfyndrGetLead).getApiResource,
281
+ /** Get a detail of a unlocked lead. Organisation can unlock leads. */
282
+ leadfyndrGetUnlockedLead: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetUnlockedLead, baseClient.leadFyndr.leadfyndrGetUnlockedLead).getApiResource,
283
+ /** Get all leads. Use the unlocked routes for more lead details. */
284
+ leadfyndrListLeads: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListLeads, baseClient.leadFyndr.leadfyndrListLeads).getApiResource,
285
+ /** Get all unlocked leads. Organisation can unlock leads. */
286
+ leadfyndrListUnlockedLeads: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListUnlockedLeads, baseClient.leadFyndr.leadfyndrListUnlockedLeads).getApiResource,
287
+ });
270
288
  const buildMailApi = (baseClient) => ({
271
289
  /** List DeliveryBoxes belonging to a Project. */
272
290
  listDeliveryBoxes: new ApiCallAsyncResourceFactory(descriptors.mailListDeliveryBoxes, baseClient.mail.listDeliveryBoxes).getApiResource,
@@ -279,6 +297,10 @@ const buildMailApi = (baseClient) => ({
279
297
  /** List mail settings of a Project. */
280
298
  listProjectMailSettings: new ApiCallAsyncResourceFactory(descriptors.mailListProjectMailSettings, baseClient.mail.listProjectMailSettings).getApiResource,
281
299
  });
300
+ const buildMiscApi = (baseClient) => ({
301
+ /** Get a list of currently active llm models. */
302
+ getLlmModelsExperimental: new ApiCallAsyncResourceFactory(descriptors.miscGetLlmModelsExperimental, baseClient.misc.getLlmModelsExperimental).getApiResource,
303
+ });
282
304
  const buildNotificationApi = (baseClient) => ({
283
305
  /** Getting the subscription status of the subscription. */
284
306
  newsletterGetInfo: new ApiCallAsyncResourceFactory(descriptors.newsletterGetInfo, baseClient.notification.newsletterGetInfo).getApiResource,
@@ -330,6 +352,8 @@ const buildUserApi = (baseClient) => ({
330
352
  supportCodeRequest: new ApiCallAsyncResourceFactory(descriptors.userSupportCodeRequest, baseClient.user.supportCodeRequest).getApiResource,
331
353
  });
332
354
  const buildProjectApi = (baseClient) => ({
355
+ /** Get a list of already created llm licences. */
356
+ getLlmLicencesExperimental: new ApiCallAsyncResourceFactory(descriptors.projectGetLlmLicencesExperimental, baseClient.project.getLlmLicencesExperimental).getApiResource,
333
357
  /** List Invites belonging to a Project. */
334
358
  listInvitesForProject: new ApiCallAsyncResourceFactory(descriptors.projectListInvitesForProject, baseClient.project.listInvitesForProject).getApiResource,
335
359
  /** Get a ProjectInvite. */
@@ -338,6 +362,8 @@ const buildProjectApi = (baseClient) => ({
338
362
  getProjectMembership: new ApiCallAsyncResourceFactory(descriptors.projectGetProjectMembership, baseClient.project.getProjectMembership).getApiResource,
339
363
  /** Get a Project. */
340
364
  getProject: new ApiCallAsyncResourceFactory(descriptors.projectGetProject, baseClient.project.getProject).getApiResource,
365
+ /** Get a licence of a project. */
366
+ getLlmLicenceExperimental: new ApiCallAsyncResourceFactory(descriptors.projectGetLlmLicenceExperimental, baseClient.project.getLlmLicenceExperimental).getApiResource,
341
367
  /** Get a ProjectInvite by token. */
342
368
  getProjectTokenInvite: new ApiCallAsyncResourceFactory(descriptors.projectGetProjectTokenInvite, baseClient.project.getProjectTokenInvite).getApiResource,
343
369
  /** Get the executing user's membership in a Project. */
@@ -358,10 +384,6 @@ const buildProjectApi = (baseClient) => ({
358
384
  storagespaceGetProjectStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetProjectStatistics, baseClient.project.storagespaceGetProjectStatistics).getApiResource,
359
385
  /** Get storage space Statistics belonging to a Server. */
360
386
  storagespaceGetServerStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetServerStatistics, baseClient.project.storagespaceGetServerStatistics).getApiResource,
361
- /** Get a list of already created llm licences. */
362
- getLlmLicencesExperimental: new ApiCallAsyncResourceFactory(descriptors.projectGetLlmLicencesExperimental, baseClient.project.getLlmLicencesExperimental).getApiResource,
363
- /** Get a licence of a project. */
364
- getLlmLicenceExperimental: new ApiCallAsyncResourceFactory(descriptors.projectGetLlmLicenceExperimental, baseClient.project.getLlmLicenceExperimental).getApiResource,
365
387
  });
366
388
  const buildProjectFileSystemApi = (baseClient) => ({
367
389
  /** List directories belonging to a Project. */
@@ -385,28 +407,6 @@ const buildSshsftpUserApi = (baseClient) => ({
385
407
  /** Get an SSHUser. */
386
408
  sshUserGetSshUser: new ApiCallAsyncResourceFactory(descriptors.sshUserGetSshUser, baseClient.sshsftpUser.sshUserGetSshUser).getApiResource,
387
409
  });
388
- const buildLeadFyndrApi = (baseClient) => ({
389
- /** Get cities in DACH. */
390
- leadfyndrGetCities: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetCities, baseClient.leadFyndr.leadfyndrGetCities).getApiResource,
391
- /** Get a simple lead. Use the unlocked route for more detail leads. */
392
- leadfyndrGetLead: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLead, baseClient.leadFyndr.leadfyndrGetLead).getApiResource,
393
- /** Get all leads. Use the unlocked routes for more lead details. */
394
- leadfyndrListLeads: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListLeads, baseClient.leadFyndr.leadfyndrListLeads).getApiResource,
395
- /** Get a detail of a unlocked lead. Organisation can unlock leads. */
396
- leadfyndrGetUnlockedLead: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetUnlockedLead, baseClient.leadFyndr.leadfyndrGetUnlockedLead).getApiResource,
397
- /** Get all unlocked leads. Organisation can unlock leads. */
398
- leadfyndrListUnlockedLeads: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListUnlockedLeads, baseClient.leadFyndr.leadfyndrListUnlockedLeads).getApiResource,
399
- /** Get lead tariff options. How many leads did you unlock this month? */
400
- leadfyndrGetLeadFyndrProfileTariffOptions: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfileTariffOptions, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfileTariffOptions).getApiResource,
401
- /** Get your LeadFyndr profile. */
402
- leadfyndrGetLeadFyndrProfile: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfile, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfile).getApiResource,
403
- /** Get your LeadFyndr request. */
404
- leadfyndrGetLeadFyndrProfileRequest: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfileRequest, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfileRequest).getApiResource,
405
- });
406
- const buildMiscApi = (baseClient) => ({
407
- /** Get a list of currently active llm models. */
408
- getLlmModelsExperimental: new ApiCallAsyncResourceFactory(descriptors.miscGetLlmModelsExperimental, baseClient.misc.getLlmModelsExperimental).getApiResource,
409
- });
410
410
  export class MittwaldAPIV2ClientReact {
411
411
  /** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
412
412
  app;
@@ -432,8 +432,12 @@ export class MittwaldAPIV2ClientReact {
432
432
  domain;
433
433
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
434
434
  file;
435
+ /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
436
+ leadFyndr;
435
437
  /** The mail API allows you to manage your mail accounts. */
436
438
  mail;
439
+ /** API endpoints that are not related to any specific API domain */
440
+ misc;
437
441
  /** The notification API allows you to manage your notifications. */
438
442
  notification;
439
443
  /** The page insights API allows you to get page insights information. */
@@ -446,10 +450,6 @@ export class MittwaldAPIV2ClientReact {
446
450
  projectFileSystem;
447
451
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
448
452
  sshsftpUser;
449
- /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
450
- leadFyndr;
451
- /** API endpoints that are not related to any specific API domain */
452
- misc;
453
453
  constructor(baseClient) {
454
454
  this.app = buildAppApi(baseClient);
455
455
  this.article = buildArticleApi(baseClient);
@@ -463,15 +463,15 @@ export class MittwaldAPIV2ClientReact {
463
463
  this.database = buildDatabaseApi(baseClient);
464
464
  this.domain = buildDomainApi(baseClient);
465
465
  this.file = buildFileApi(baseClient);
466
+ this.leadFyndr = buildLeadFyndrApi(baseClient);
466
467
  this.mail = buildMailApi(baseClient);
468
+ this.misc = buildMiscApi(baseClient);
467
469
  this.notification = buildNotificationApi(baseClient);
468
470
  this.pageInsights = buildPageInsightsApi(baseClient);
469
471
  this.user = buildUserApi(baseClient);
470
472
  this.project = buildProjectApi(baseClient);
471
473
  this.projectFileSystem = buildProjectFileSystemApi(baseClient);
472
474
  this.sshsftpUser = buildSshsftpUserApi(baseClient);
473
- this.leadFyndr = buildLeadFyndrApi(baseClient);
474
- this.misc = buildMiscApi(baseClient);
475
475
  }
476
476
  static fromBaseClient(baseClient) {
477
477
  return new MittwaldAPIV2ClientReact(baseClient);
@@ -729,6 +729,44 @@ export class MittwaldAPIV2Client extends ApiClientBase {
729
729
  /** Get a File with user-friendly url. */
730
730
  getFileWithName: this.requestFunctionFactory(descriptors.fileGetFileWithName),
731
731
  };
732
+ /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
733
+ leadFyndr = {
734
+ /** Get your LeadFyndr request. */
735
+ leadfyndrGetLeadFyndrProfileRequest: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfileRequest),
736
+ /** Create a new access request for LeadFyndr. */
737
+ leadfyndrCreateLeadFyndrAccessRequest: this.requestFunctionFactory(descriptors.leadfyndrCreateLeadFyndrAccessRequest),
738
+ /** Get cities in DACH. */
739
+ leadfyndrGetCities: this.requestFunctionFactory(descriptors.leadfyndrGetCities),
740
+ /** Get lead tariff options. How many leads did you unlock this month? */
741
+ leadfyndrGetLeadFyndrProfileTariffOptions: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfileTariffOptions),
742
+ /** Get your LeadFyndr profile. */
743
+ leadfyndrGetLeadFyndrProfile: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfile),
744
+ /** Get a simple lead. Use the unlocked route for more detail leads. */
745
+ leadfyndrGetLead: this.requestFunctionFactory(descriptors.leadfyndrGetLead),
746
+ /** Get a detail of a unlocked lead. Organisation can unlock leads. */
747
+ leadfyndrGetUnlockedLead: this.requestFunctionFactory(descriptors.leadfyndrGetUnlockedLead),
748
+ /** Unlock a lead for the given customerId. */
749
+ leadfyndrUnlockLead: this.requestFunctionFactory(descriptors.leadfyndrUnlockLead),
750
+ /** Get all leads. Use the unlocked routes for more lead details. */
751
+ leadfyndrListLeads: this.requestFunctionFactory(descriptors.leadfyndrListLeads),
752
+ /** Get all unlocked leads. Organisation can unlock leads. */
753
+ leadfyndrListUnlockedLeads: this.requestFunctionFactory(descriptors.leadfyndrListUnlockedLeads),
754
+ /** Reserve a unlocked lead for the given customerId. */
755
+ leadfyndrReserveUnlockedLead: this.requestFunctionFactory(descriptors.leadfyndrReserveUnlockedLead),
756
+ /** Removes a reservation on a unlocked lead for the given customerId. */
757
+ leadfyndrRemoveUnlockedLeadReservation: this.requestFunctionFactory(descriptors.leadfyndrRemoveUnlockedLeadReservation),
758
+ };
759
+ /** API endpoints that are not related to any specific API domain */
760
+ misc = {
761
+ /** Get a list of currently active llm models. */
762
+ getLlmModelsExperimental: this.requestFunctionFactory(descriptors.miscGetLlmModelsExperimental),
763
+ /** Obtain a service token. */
764
+ servicetokenAuthenticateService: this.requestFunctionFactory(descriptors.servicetokenAuthenticateService),
765
+ /** Check if an address exists. */
766
+ verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
767
+ /** Check if a company exists. */
768
+ verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
769
+ };
732
770
  /** The page insights API allows you to get page insights information. */
733
771
  pageInsights = {
734
772
  /** Get detailed performance data for a given domain and path. */
@@ -744,6 +782,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
744
782
  project = {
745
783
  /** Accept a ProjectInvite. */
746
784
  acceptProjectInvite: this.requestFunctionFactory(descriptors.projectAcceptProjectInvite),
785
+ /** Get a list of already created llm licences. */
786
+ getLlmLicencesExperimental: this.requestFunctionFactory(descriptors.projectGetLlmLicencesExperimental),
787
+ /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
788
+ createLlmBetaLicenceExperimental: this.requestFunctionFactory(descriptors.projectCreateLlmBetaLicenceExperimental),
747
789
  /** List Invites belonging to a Project. */
748
790
  listInvitesForProject: this.requestFunctionFactory(descriptors.projectListInvitesForProject),
749
791
  /** Create a ProjectInvite. */
@@ -774,6 +816,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
774
816
  requestServerAvatarUpload: this.requestFunctionFactory(descriptors.projectRequestServerAvatarUpload),
775
817
  /** Delete a Server's avatar. */
776
818
  deleteServerAvatar: this.requestFunctionFactory(descriptors.projectDeleteServerAvatar),
819
+ /** Get a licence of a project. */
820
+ getLlmLicenceExperimental: this.requestFunctionFactory(descriptors.projectGetLlmLicenceExperimental),
821
+ /** Update a llm Licence for a project. */
822
+ updateLlmLicenceExperimental: this.requestFunctionFactory(descriptors.projectUpdateLlmLicenceExperimental),
777
823
  /** Get a ProjectInvite by token. */
778
824
  getProjectTokenInvite: this.requestFunctionFactory(descriptors.projectGetProjectTokenInvite),
779
825
  /** Get the executing user's membership in a Project. */
@@ -804,14 +850,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
804
850
  storagespaceReplaceProjectNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceProjectNotificationThreshold),
805
851
  /** Update a Server's storage space notification threshold. */
806
852
  storagespaceReplaceServerNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceServerNotificationThreshold),
807
- /** Get a list of already created llm licences. */
808
- getLlmLicencesExperimental: this.requestFunctionFactory(descriptors.projectGetLlmLicencesExperimental),
809
- /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
810
- createLlmBetaLicenceExperimental: this.requestFunctionFactory(descriptors.projectCreateLlmBetaLicenceExperimental),
811
- /** Get a licence of a project. */
812
- getLlmLicenceExperimental: this.requestFunctionFactory(descriptors.projectGetLlmLicenceExperimental),
813
- /** Update a llm Licence for a project. */
814
- updateLlmLicenceExperimental: this.requestFunctionFactory(descriptors.projectUpdateLlmLicenceExperimental),
815
853
  };
816
854
  /** The filesystem API allows you to directly access the filesystem of your project. */
817
855
  projectFileSystem = {
@@ -833,17 +871,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
833
871
  /** Relocate an external Project to mittwald. */
834
872
  createRelocation: this.requestFunctionFactory(descriptors.relocationCreateRelocation),
835
873
  };
836
- /** API endpoints that are not related to any specific API domain */
837
- misc = {
838
- /** Obtain a service token. */
839
- servicetokenAuthenticateService: this.requestFunctionFactory(descriptors.servicetokenAuthenticateService),
840
- /** Check if an address exists. */
841
- verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
842
- /** Check if a company exists. */
843
- verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
844
- /** Get a list of currently active llm models. */
845
- getLlmModelsExperimental: this.requestFunctionFactory(descriptors.miscGetLlmModelsExperimental),
846
- };
847
874
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
848
875
  sshsftpUser = {
849
876
  /** Get all SFTPUsers for a Project. */
@@ -867,32 +894,5 @@ export class MittwaldAPIV2Client extends ApiClientBase {
867
894
  /** Update an SSHUser. */
868
895
  sshUserUpdateSshUser: this.requestFunctionFactory(descriptors.sshUserUpdateSshUser),
869
896
  };
870
- /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
871
- leadFyndr = {
872
- /** Get cities in DACH. */
873
- leadfyndrGetCities: this.requestFunctionFactory(descriptors.leadfyndrGetCities),
874
- /** Reserve a unlocked lead for the given customerId. */
875
- leadfyndrReserveUnlockedLead: this.requestFunctionFactory(descriptors.leadfyndrReserveUnlockedLead),
876
- /** Removes a reservation on a unlocked lead for the given customerId. */
877
- leadfyndrRemoveUnlockedLeadReservation: this.requestFunctionFactory(descriptors.leadfyndrRemoveUnlockedLeadReservation),
878
- /** Get a simple lead. Use the unlocked route for more detail leads. */
879
- leadfyndrGetLead: this.requestFunctionFactory(descriptors.leadfyndrGetLead),
880
- /** Get all leads. Use the unlocked routes for more lead details. */
881
- leadfyndrListLeads: this.requestFunctionFactory(descriptors.leadfyndrListLeads),
882
- /** Get a detail of a unlocked lead. Organisation can unlock leads. */
883
- leadfyndrGetUnlockedLead: this.requestFunctionFactory(descriptors.leadfyndrGetUnlockedLead),
884
- /** Unlock a lead for the given customerId. */
885
- leadfyndrUnlockLead: this.requestFunctionFactory(descriptors.leadfyndrUnlockLead),
886
- /** Get all unlocked leads. Organisation can unlock leads. */
887
- leadfyndrListUnlockedLeads: this.requestFunctionFactory(descriptors.leadfyndrListUnlockedLeads),
888
- /** Get lead tariff options. How many leads did you unlock this month? */
889
- leadfyndrGetLeadFyndrProfileTariffOptions: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfileTariffOptions),
890
- /** Get your LeadFyndr profile. */
891
- leadfyndrGetLeadFyndrProfile: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfile),
892
- /** Get your LeadFyndr request. */
893
- leadfyndrGetLeadFyndrProfileRequest: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfileRequest),
894
- /** Create a new access request for LeadFyndr. */
895
- leadfyndrCreateLeadFyndrAccessRequest: this.requestFunctionFactory(descriptors.leadfyndrCreateLeadFyndrAccessRequest),
896
- };
897
897
  }
898
898
  export default MittwaldAPIV2Client;
@@ -1486,6 +1486,78 @@ export const invoiceListCustomerInvoices = {
1486
1486
  method: "GET",
1487
1487
  operationId: "invoice-list-customer-invoices",
1488
1488
  };
1489
+ /** Get your LeadFyndr request. */
1490
+ export const leadfyndrGetLeadFyndrProfileRequest = {
1491
+ path: "/v2/customers/{customerId}/lead-fyndr-profile-request",
1492
+ method: "GET",
1493
+ operationId: "leadfyndr-get-lead-fyndr-profile-request",
1494
+ };
1495
+ /** Create a new access request for LeadFyndr. */
1496
+ export const leadfyndrCreateLeadFyndrAccessRequest = {
1497
+ path: "/v2/customers/{customerId}/lead-fyndr-profile-request",
1498
+ method: "POST",
1499
+ operationId: "leadfyndr-create-lead-fyndr-access-request",
1500
+ };
1501
+ /** Get cities in DACH. */
1502
+ export const leadfyndrGetCities = {
1503
+ path: "/v2/cities",
1504
+ method: "GET",
1505
+ operationId: "leadfyndr-get-cities",
1506
+ };
1507
+ /** Get lead tariff options. How many leads did you unlock this month? */
1508
+ export const leadfyndrGetLeadFyndrProfileTariffOptions = {
1509
+ path: "/v2/customers/{customerId}/lead-fyndr-profile/tariff",
1510
+ method: "GET",
1511
+ operationId: "leadfyndr-get-lead-fyndr-profile-tariff-options",
1512
+ };
1513
+ /** Get your LeadFyndr profile. */
1514
+ export const leadfyndrGetLeadFyndrProfile = {
1515
+ path: "/v2/customers/{customerId}/lead-fyndr-profile",
1516
+ method: "GET",
1517
+ operationId: "leadfyndr-get-lead-fyndr-profile",
1518
+ };
1519
+ /** Get a simple lead. Use the unlocked route for more detail leads. */
1520
+ export const leadfyndrGetLead = {
1521
+ path: "/v2/customers/{customerId}/leads/{leadId}",
1522
+ method: "GET",
1523
+ operationId: "leadfyndr-get-lead",
1524
+ };
1525
+ /** Get a detail of a unlocked lead. Organisation can unlock leads. */
1526
+ export const leadfyndrGetUnlockedLead = {
1527
+ path: "/v2/customers/{customerId}/unlocked-leads/{leadId}",
1528
+ method: "GET",
1529
+ operationId: "leadfyndr-get-unlocked-lead",
1530
+ };
1531
+ /** Unlock a lead for the given customerId. */
1532
+ export const leadfyndrUnlockLead = {
1533
+ path: "/v2/customers/{customerId}/unlocked-leads/{leadId}",
1534
+ method: "POST",
1535
+ operationId: "leadfyndr-unlock-lead",
1536
+ };
1537
+ /** Get all leads. Use the unlocked routes for more lead details. */
1538
+ export const leadfyndrListLeads = {
1539
+ path: "/v2/customers/{customerId}/leads",
1540
+ method: "GET",
1541
+ operationId: "leadfyndr-list-leads",
1542
+ };
1543
+ /** Get all unlocked leads. Organisation can unlock leads. */
1544
+ export const leadfyndrListUnlockedLeads = {
1545
+ path: "/v2/customers/{customerId}/unlocked-leads",
1546
+ method: "GET",
1547
+ operationId: "leadfyndr-list-unlocked-leads",
1548
+ };
1549
+ /** Reserve a unlocked lead for the given customerId. */
1550
+ export const leadfyndrReserveUnlockedLead = {
1551
+ path: "/v2/customers/{customerId}/unlocked-leads/{leadId}/reservation",
1552
+ method: "POST",
1553
+ operationId: "leadfyndr-reserve-unlocked-lead",
1554
+ };
1555
+ /** Removes a reservation on a unlocked lead for the given customerId. */
1556
+ export const leadfyndrRemoveUnlockedLeadReservation = {
1557
+ path: "/v2/customers/{customerId}/unlocked-leads/{leadId}/reservation",
1558
+ method: "DELETE",
1559
+ operationId: "leadfyndr-remove-unlocked-lead-reservation",
1560
+ };
1489
1561
  /** List DeliveryBoxes belonging to a Project. */
1490
1562
  export const mailListDeliveryBoxes = {
1491
1563
  path: "/v2/projects/{projectId}/delivery-boxes",
@@ -1582,6 +1654,12 @@ export const marketplaceCustomerUpdatePaymentMethod = {
1582
1654
  method: "PUT",
1583
1655
  operationId: "marketplace-customer-update-payment-method",
1584
1656
  };
1657
+ /** Get a list of currently active llm models. */
1658
+ export const miscGetLlmModelsExperimental = {
1659
+ path: "/v2-experimental/llm-models",
1660
+ method: "GET",
1661
+ operationId: "misc-get-llm-models-experimental",
1662
+ };
1585
1663
  /** Getting the subscription status of the subscription. */
1586
1664
  export const newsletterGetInfo = {
1587
1665
  path: "/v2/newsletter-subscriptions/self",
@@ -1702,6 +1780,18 @@ export const projectAcceptProjectInvite = {
1702
1780
  method: "POST",
1703
1781
  operationId: "project-accept-project-invite",
1704
1782
  };
1783
+ /** Get a list of already created llm licences. */
1784
+ export const projectGetLlmLicencesExperimental = {
1785
+ path: "/v2-experimental/projects/{projectId}/llm-licences",
1786
+ method: "GET",
1787
+ operationId: "project-get-llm-licences-experimental",
1788
+ };
1789
+ /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
1790
+ export const projectCreateLlmBetaLicenceExperimental = {
1791
+ path: "/v2-experimental/projects/{projectId}/llm-licences",
1792
+ method: "POST",
1793
+ operationId: "project-create-llm-beta-licence-experimental",
1794
+ };
1705
1795
  /** List Invites belonging to a Project. */
1706
1796
  export const projectListInvitesForProject = {
1707
1797
  path: "/v2/projects/{projectId}/invites",
@@ -1822,6 +1912,18 @@ export const projectFileSystemListFiles = {
1822
1912
  method: "GET",
1823
1913
  operationId: "project-file-system-list-files",
1824
1914
  };
1915
+ /** Get a licence of a project. */
1916
+ export const projectGetLlmLicenceExperimental = {
1917
+ path: "/v2-experimental/projects/{projectId}/llm-licences/{licenceId}",
1918
+ method: "GET",
1919
+ operationId: "project-get-llm-licence-experimental",
1920
+ };
1921
+ /** Update a llm Licence for a project. */
1922
+ export const projectUpdateLlmLicenceExperimental = {
1923
+ path: "/v2-experimental/projects/{projectId}/llm-licences/{licenceId}",
1924
+ method: "PUT",
1925
+ operationId: "project-update-llm-licence-experimental",
1926
+ };
1825
1927
  /** Get a ProjectInvite by token. */
1826
1928
  export const projectGetProjectTokenInvite = {
1827
1929
  path: "/v2/project-token-invite",
@@ -2368,105 +2470,3 @@ export const verificationVerifyCompany = {
2368
2470
  method: "POST",
2369
2471
  operationId: "verification-verify-company",
2370
2472
  };
2371
- /** Get cities in DACH. */
2372
- export const leadfyndrGetCities = {
2373
- path: "/v2/cities",
2374
- method: "GET",
2375
- operationId: "leadfyndr-get-cities",
2376
- };
2377
- /** Reserve a unlocked lead for the given customerId. */
2378
- export const leadfyndrReserveUnlockedLead = {
2379
- path: "/v2/customers/{customerId}/unlocked-leads/{leadId}/reservation",
2380
- method: "POST",
2381
- operationId: "leadfyndr-reserve-unlocked-lead",
2382
- };
2383
- /** Removes a reservation on a unlocked lead for the given customerId. */
2384
- export const leadfyndrRemoveUnlockedLeadReservation = {
2385
- path: "/v2/customers/{customerId}/unlocked-leads/{leadId}/reservation",
2386
- method: "DELETE",
2387
- operationId: "leadfyndr-remove-unlocked-lead-reservation",
2388
- };
2389
- /** Get a simple lead. Use the unlocked route for more detail leads. */
2390
- export const leadfyndrGetLead = {
2391
- path: "/v2/customers/{customerId}/leads/{leadId}",
2392
- method: "GET",
2393
- operationId: "leadfyndr-get-lead",
2394
- };
2395
- /** Get all leads. Use the unlocked routes for more lead details. */
2396
- export const leadfyndrListLeads = {
2397
- path: "/v2/customers/{customerId}/leads",
2398
- method: "GET",
2399
- operationId: "leadfyndr-list-leads",
2400
- };
2401
- /** Get a detail of a unlocked lead. Organisation can unlock leads. */
2402
- export const leadfyndrGetUnlockedLead = {
2403
- path: "/v2/customers/{customerId}/unlocked-leads/{leadId}",
2404
- method: "GET",
2405
- operationId: "leadfyndr-get-unlocked-lead",
2406
- };
2407
- /** Unlock a lead for the given customerId. */
2408
- export const leadfyndrUnlockLead = {
2409
- path: "/v2/customers/{customerId}/unlocked-leads/{leadId}",
2410
- method: "POST",
2411
- operationId: "leadfyndr-unlock-lead",
2412
- };
2413
- /** Get all unlocked leads. Organisation can unlock leads. */
2414
- export const leadfyndrListUnlockedLeads = {
2415
- path: "/v2/customers/{customerId}/unlocked-leads",
2416
- method: "GET",
2417
- operationId: "leadfyndr-list-unlocked-leads",
2418
- };
2419
- /** Get lead tariff options. How many leads did you unlock this month? */
2420
- export const leadfyndrGetLeadFyndrProfileTariffOptions = {
2421
- path: "/v2/customers/{customerId}/lead-fyndr-profile/tariff",
2422
- method: "GET",
2423
- operationId: "leadfyndr-get-lead-fyndr-profile-tariff-options",
2424
- };
2425
- /** Get your LeadFyndr profile. */
2426
- export const leadfyndrGetLeadFyndrProfile = {
2427
- path: "/v2/customers/{customerId}/lead-fyndr-profile",
2428
- method: "GET",
2429
- operationId: "leadfyndr-get-lead-fyndr-profile",
2430
- };
2431
- /** Get your LeadFyndr request. */
2432
- export const leadfyndrGetLeadFyndrProfileRequest = {
2433
- path: "/v2/customers/{customerId}/lead-fyndr-profile-request",
2434
- method: "GET",
2435
- operationId: "leadfyndr-get-lead-fyndr-profile-request",
2436
- };
2437
- /** Create a new access request for LeadFyndr. */
2438
- export const leadfyndrCreateLeadFyndrAccessRequest = {
2439
- path: "/v2/customers/{customerId}/lead-fyndr-profile-request",
2440
- method: "POST",
2441
- operationId: "leadfyndr-create-lead-fyndr-access-request",
2442
- };
2443
- /** Get a list of already created llm licences. */
2444
- export const projectGetLlmLicencesExperimental = {
2445
- path: "/v2-experimental/projects/{projectId}/llm-licences",
2446
- method: "GET",
2447
- operationId: "project-get-llm-licences-experimental",
2448
- };
2449
- /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
2450
- export const projectCreateLlmBetaLicenceExperimental = {
2451
- path: "/v2-experimental/projects/{projectId}/llm-licences",
2452
- method: "POST",
2453
- operationId: "project-create-llm-beta-licence-experimental",
2454
- };
2455
- /** Get a licence of a project. */
2456
- export const projectGetLlmLicenceExperimental = {
2457
- path: "/v2-experimental/projects/{projectId}/llm-licences/{licenceId}",
2458
- method: "GET",
2459
- operationId: "project-get-llm-licence-experimental",
2460
- };
2461
- /** Update a llm Licence for a project. */
2462
- export const projectUpdateLlmLicenceExperimental = {
2463
- path: "/v2-experimental/projects/{projectId}/llm-licences/{licenceId}",
2464
- method: "PUT",
2465
- operationId: "project-update-llm-licence-experimental",
2466
- };
2467
- /** Get a list of currently active llm models. */
2468
- export const miscGetLlmModelsExperimental = {
2469
- path: "/v2-experimental/llm-models",
2470
- method: "GET",
2471
- operationId: "misc-get-llm-models-experimental",
2472
- };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.175.0';
1
+ export const MittwaldAPIClientVersion = '4.176.0';