@mittwald/api-client 4.147.1 → 4.149.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.
@@ -930,6 +930,50 @@ export declare namespace MittwaldAPIV2 {
930
930
  type RequestData = InferredRequestData<typeof descriptors.invoiceListCustomerInvoices>;
931
931
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.invoiceListCustomerInvoices, TStatus>;
932
932
  }
933
+ namespace LeadfyndrGetLeadFyndrProfileRequestExperimental {
934
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetLeadFyndrProfileRequestExperimental>;
935
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetLeadFyndrProfileRequestExperimental, TStatus>;
936
+ }
937
+ namespace LeadfyndrCreateLeadFyndrAccessRequestExperimental {
938
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrCreateLeadFyndrAccessRequestExperimental>;
939
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrCreateLeadFyndrAccessRequestExperimental, TStatus>;
940
+ }
941
+ namespace LeadfyndrGetLeadExperimental {
942
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetLeadExperimental>;
943
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetLeadExperimental, TStatus>;
944
+ }
945
+ namespace LeadfyndrGetLeadFyndrProfileExperimental {
946
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetLeadFyndrProfileExperimental>;
947
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetLeadFyndrProfileExperimental, TStatus>;
948
+ }
949
+ namespace LeadfyndrGetLeadFyndrProfileTariffOptionsExperimental {
950
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetLeadFyndrProfileTariffOptionsExperimental>;
951
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetLeadFyndrProfileTariffOptionsExperimental, TStatus>;
952
+ }
953
+ namespace LeadfyndrGetUnlockedLeadExperimental {
954
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetUnlockedLeadExperimental>;
955
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetUnlockedLeadExperimental, TStatus>;
956
+ }
957
+ namespace LeadfyndrUnlockLeadExperimental {
958
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrUnlockLeadExperimental>;
959
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrUnlockLeadExperimental, TStatus>;
960
+ }
961
+ namespace LeadfyndrListLeadsExperimental {
962
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrListLeadsExperimental>;
963
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrListLeadsExperimental, TStatus>;
964
+ }
965
+ namespace LeadfyndrListUnlockedLeadsExperimental {
966
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrListUnlockedLeadsExperimental>;
967
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrListUnlockedLeadsExperimental, TStatus>;
968
+ }
969
+ namespace LeadfyndrReserveUnlockedLeadExperimental {
970
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrReserveUnlockedLeadExperimental>;
971
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrReserveUnlockedLeadExperimental, TStatus>;
972
+ }
973
+ namespace LeadfyndrRemoveUnlockedLeadReservationExperimental {
974
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrRemoveUnlockedLeadReservationExperimental>;
975
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrRemoveUnlockedLeadReservationExperimental, TStatus>;
976
+ }
933
977
  namespace MailListDeliveryBoxes {
934
978
  type RequestData = InferredRequestData<typeof descriptors.mailListDeliveryBoxes>;
935
979
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListDeliveryBoxes, TStatus>;
@@ -1796,7 +1840,7 @@ export declare namespace MittwaldAPIV2 {
1796
1840
  interface ExtensionSubscriptionBasedContract {
1797
1841
  interactionDeadline?: string;
1798
1842
  interactionRequired: boolean;
1799
- status: "notStarted" | "active" | "terminationPending";
1843
+ status: "notStarted" | "pending" | "active" | "terminationPending";
1800
1844
  terminationTargetDate?: string;
1801
1845
  }
1802
1846
  interface ContainerCreateRegistry {
@@ -3479,6 +3523,141 @@ export declare namespace MittwaldAPIV2 {
3479
3523
  title?: string;
3480
3524
  useFormalTerm?: boolean;
3481
3525
  }
3526
+ interface LeadfyndrBasicCompany {
3527
+ city: string;
3528
+ employeeCount?: number;
3529
+ foundingYear?: number;
3530
+ salesVolume?: number;
3531
+ }
3532
+ interface LeadfyndrBasicMetrics {
3533
+ co2?: number;
3534
+ contentLoaded?: number;
3535
+ desktop: MittwaldAPIV2.Components.Schemas.LeadfyndrLighthouse;
3536
+ mobile: MittwaldAPIV2.Components.Schemas.LeadfyndrLighthouse;
3537
+ timeToFirstByteMs?: number;
3538
+ }
3539
+ interface LeadfyndrContact {
3540
+ address?: {
3541
+ address_prefix?: string;
3542
+ city?: string;
3543
+ country_code?: string;
3544
+ house_number?: string;
3545
+ street?: string;
3546
+ zip?: string;
3547
+ };
3548
+ }
3549
+ type LeadfyndrDetailCompany = MittwaldAPIV2.Components.Schemas.LeadfyndrBasicCompany & {
3550
+ coreProduct: string[];
3551
+ name?: string;
3552
+ targetGroup: string[];
3553
+ };
3554
+ interface LeadfyndrDetailMetrics {
3555
+ additionalMetrics?: {
3556
+ [k: string]: MittwaldAPIV2.Components.Schemas.LeadfyndrMetric;
3557
+ };
3558
+ basic: MittwaldAPIV2.Components.Schemas.LeadfyndrBasicMetrics;
3559
+ }
3560
+ interface LeadfyndrHoster {
3561
+ mailServer: string[];
3562
+ nameServer: string[];
3563
+ server: string[];
3564
+ }
3565
+ interface LeadfyndrLead {
3566
+ businessFields: string[];
3567
+ company: MittwaldAPIV2.Components.Schemas.LeadfyndrBasicCompany;
3568
+ description: string;
3569
+ globalUnlockedCount: number;
3570
+ hoster: {
3571
+ server: string[];
3572
+ };
3573
+ leadId: string;
3574
+ mainTechnology?: MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology;
3575
+ metrics: MittwaldAPIV2.Components.Schemas.LeadfyndrBasicMetrics;
3576
+ potential: number;
3577
+ scannedAt?: string;
3578
+ screenshot: string;
3579
+ technologies: MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology[];
3580
+ }
3581
+ interface LeadfyndrTariffOptions {
3582
+ reservation: {
3583
+ available: number;
3584
+ tariffLimit: number;
3585
+ used: number;
3586
+ };
3587
+ unlocked: {
3588
+ available: number;
3589
+ tariffLimit: number;
3590
+ used: number;
3591
+ };
3592
+ }
3593
+ interface LeadfyndrLighthouse {
3594
+ accessibility?: number;
3595
+ bestPractice?: number;
3596
+ cumulativeLayoutShift?: number;
3597
+ firstContentfulPaint?: number;
3598
+ largestContentfulPaint?: number;
3599
+ performance?: number;
3600
+ seo?: number;
3601
+ totalBlockingTime?: number;
3602
+ }
3603
+ interface LeadfyndrMetric {
3604
+ category: string;
3605
+ name: string;
3606
+ score?: number;
3607
+ unit?: string;
3608
+ value?: number;
3609
+ }
3610
+ interface LeadfyndrProfileRequest {
3611
+ createdOn: string;
3612
+ customerId: string;
3613
+ domain: string;
3614
+ profileId: string;
3615
+ requestedBy: MittwaldAPIV2.Components.Schemas.LeadfyndrUser;
3616
+ resultOn?: string;
3617
+ status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
3618
+ }
3619
+ interface LeadfyndrProfile {
3620
+ approvedOn: string;
3621
+ customerId: string;
3622
+ disabledOn?: string;
3623
+ domain: string;
3624
+ }
3625
+ interface LeadfyndrSocialMedia {
3626
+ network: string;
3627
+ url: string;
3628
+ }
3629
+ interface LeadfyndrTechnology {
3630
+ categories?: {
3631
+ name: string;
3632
+ parentCategories?: string[];
3633
+ priority: number;
3634
+ }[];
3635
+ categoryPriority: number;
3636
+ name: string;
3637
+ version?: string;
3638
+ }
3639
+ interface LeadfyndrUnlockedLead {
3640
+ businessFields: string[];
3641
+ company: MittwaldAPIV2.Components.Schemas.LeadfyndrDetailCompany;
3642
+ contact: MittwaldAPIV2.Components.Schemas.LeadfyndrContact;
3643
+ description: string;
3644
+ domain: string;
3645
+ globalUnlockedCount: number;
3646
+ hoster: MittwaldAPIV2.Components.Schemas.LeadfyndrHoster;
3647
+ leadId: string;
3648
+ mainTechnology?: MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology;
3649
+ metrics: MittwaldAPIV2.Components.Schemas.LeadfyndrDetailMetrics;
3650
+ potential: number;
3651
+ reservedAt?: string;
3652
+ scannedAt?: string;
3653
+ screenshot: string;
3654
+ socialMedia: MittwaldAPIV2.Components.Schemas.LeadfyndrSocialMedia[];
3655
+ technologies: MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology[];
3656
+ unlockedAt: string;
3657
+ }
3658
+ interface LeadfyndrUser {
3659
+ userId: string;
3660
+ }
3482
3661
  interface MailCreateMailAddress {
3483
3662
  address: string;
3484
3663
  isCatchAll: boolean;
@@ -16512,6 +16691,637 @@ export declare namespace MittwaldAPIV2 {
16512
16691
  }
16513
16692
  }
16514
16693
  }
16694
+ namespace V2CustomersCustomerIdLeadFyndrProfileRequest { }
16695
+ namespace V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest {
16696
+ namespace Get {
16697
+ namespace Parameters {
16698
+ type Path = {
16699
+ customerId: string;
16700
+ };
16701
+ type Header = {};
16702
+ type Query = {};
16703
+ }
16704
+ namespace Responses {
16705
+ namespace $200 {
16706
+ namespace Content {
16707
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadfyndrProfileRequest;
16708
+ }
16709
+ }
16710
+ namespace $400 {
16711
+ namespace Content {
16712
+ interface ApplicationJson {
16713
+ [k: string]: unknown;
16714
+ }
16715
+ }
16716
+ }
16717
+ namespace $403 {
16718
+ namespace Content {
16719
+ interface ApplicationJson {
16720
+ [k: string]: unknown;
16721
+ }
16722
+ }
16723
+ }
16724
+ namespace $404 {
16725
+ namespace Content {
16726
+ interface ApplicationJson {
16727
+ [k: string]: unknown;
16728
+ }
16729
+ }
16730
+ }
16731
+ namespace $429 {
16732
+ namespace Content {
16733
+ interface ApplicationJson {
16734
+ [k: string]: unknown;
16735
+ }
16736
+ }
16737
+ }
16738
+ namespace Default {
16739
+ namespace Content {
16740
+ interface ApplicationJson {
16741
+ [k: string]: unknown;
16742
+ }
16743
+ }
16744
+ }
16745
+ }
16746
+ }
16747
+ namespace Post {
16748
+ namespace Parameters {
16749
+ type Path = {
16750
+ customerId: string;
16751
+ };
16752
+ interface RequestBody {
16753
+ domain: string;
16754
+ }
16755
+ type Header = {};
16756
+ type Query = {};
16757
+ }
16758
+ namespace Responses {
16759
+ namespace $201 {
16760
+ namespace Content {
16761
+ interface ApplicationJson {
16762
+ profileId: string;
16763
+ }
16764
+ }
16765
+ }
16766
+ namespace $400 {
16767
+ namespace Content {
16768
+ interface ApplicationJson {
16769
+ [k: string]: unknown;
16770
+ }
16771
+ }
16772
+ }
16773
+ namespace $403 {
16774
+ namespace Content {
16775
+ interface ApplicationJson {
16776
+ [k: string]: unknown;
16777
+ }
16778
+ }
16779
+ }
16780
+ namespace $404 {
16781
+ namespace Content {
16782
+ interface ApplicationJson {
16783
+ [k: string]: unknown;
16784
+ }
16785
+ }
16786
+ }
16787
+ namespace $409 {
16788
+ namespace Content {
16789
+ interface ApplicationJson {
16790
+ [k: string]: unknown;
16791
+ }
16792
+ }
16793
+ }
16794
+ namespace $429 {
16795
+ namespace Content {
16796
+ interface ApplicationJson {
16797
+ [k: string]: unknown;
16798
+ }
16799
+ }
16800
+ }
16801
+ namespace Default {
16802
+ namespace Content {
16803
+ interface ApplicationJson {
16804
+ [k: string]: unknown;
16805
+ }
16806
+ }
16807
+ }
16808
+ }
16809
+ }
16810
+ }
16811
+ namespace V2CustomersCustomerIdLeadsLeadId { }
16812
+ namespace V2ExperimentalCustomersCustomerIdLeadsLeadId {
16813
+ namespace Get {
16814
+ namespace Parameters {
16815
+ type Path = {
16816
+ leadId: string;
16817
+ customerId: string;
16818
+ };
16819
+ type Header = {};
16820
+ type Query = {};
16821
+ }
16822
+ namespace Responses {
16823
+ namespace $200 {
16824
+ namespace Content {
16825
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadfyndrLead;
16826
+ }
16827
+ }
16828
+ namespace $400 {
16829
+ namespace Content {
16830
+ interface ApplicationJson {
16831
+ [k: string]: unknown;
16832
+ }
16833
+ }
16834
+ }
16835
+ namespace $403 {
16836
+ namespace Content {
16837
+ interface ApplicationJson {
16838
+ [k: string]: unknown;
16839
+ }
16840
+ }
16841
+ }
16842
+ namespace $404 {
16843
+ namespace Content {
16844
+ interface ApplicationJson {
16845
+ [k: string]: unknown;
16846
+ }
16847
+ }
16848
+ }
16849
+ namespace $429 {
16850
+ namespace Content {
16851
+ interface ApplicationJson {
16852
+ [k: string]: unknown;
16853
+ }
16854
+ }
16855
+ }
16856
+ namespace Default {
16857
+ namespace Content {
16858
+ interface ApplicationJson {
16859
+ [k: string]: unknown;
16860
+ }
16861
+ }
16862
+ }
16863
+ }
16864
+ }
16865
+ }
16866
+ namespace V2CustomersCustomerIdLeadFyndrProfile { }
16867
+ namespace V2ExperimentalCustomersCustomerIdLeadFyndrProfile {
16868
+ namespace Get {
16869
+ namespace Parameters {
16870
+ type Path = {
16871
+ customerId: string;
16872
+ };
16873
+ type Header = {};
16874
+ type Query = {};
16875
+ }
16876
+ namespace Responses {
16877
+ namespace $200 {
16878
+ namespace Content {
16879
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadfyndrProfile & {
16880
+ tariff: MittwaldAPIV2.Components.Schemas.LeadfyndrTariffOptions;
16881
+ };
16882
+ }
16883
+ }
16884
+ namespace $400 {
16885
+ namespace Content {
16886
+ interface ApplicationJson {
16887
+ [k: string]: unknown;
16888
+ }
16889
+ }
16890
+ }
16891
+ namespace $403 {
16892
+ namespace Content {
16893
+ interface ApplicationJson {
16894
+ [k: string]: unknown;
16895
+ }
16896
+ }
16897
+ }
16898
+ namespace $404 {
16899
+ namespace Content {
16900
+ interface ApplicationJson {
16901
+ [k: string]: unknown;
16902
+ }
16903
+ }
16904
+ }
16905
+ namespace $429 {
16906
+ namespace Content {
16907
+ interface ApplicationJson {
16908
+ [k: string]: unknown;
16909
+ }
16910
+ }
16911
+ }
16912
+ namespace Default {
16913
+ namespace Content {
16914
+ interface ApplicationJson {
16915
+ [k: string]: unknown;
16916
+ }
16917
+ }
16918
+ }
16919
+ }
16920
+ }
16921
+ }
16922
+ namespace V2CustomersCustomerIdLeadFyndrProfileTariff { }
16923
+ namespace V2ExperimentalCustomersCustomerIdLeadFyndrProfileTariff {
16924
+ namespace Get {
16925
+ namespace Parameters {
16926
+ type Path = {
16927
+ customerId: string;
16928
+ };
16929
+ type Header = {};
16930
+ type Query = {};
16931
+ }
16932
+ namespace Responses {
16933
+ namespace $200 {
16934
+ namespace Content {
16935
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadfyndrTariffOptions;
16936
+ }
16937
+ }
16938
+ namespace $400 {
16939
+ namespace Content {
16940
+ interface ApplicationJson {
16941
+ [k: string]: unknown;
16942
+ }
16943
+ }
16944
+ }
16945
+ namespace $403 {
16946
+ namespace Content {
16947
+ interface ApplicationJson {
16948
+ [k: string]: unknown;
16949
+ }
16950
+ }
16951
+ }
16952
+ namespace $404 {
16953
+ namespace Content {
16954
+ interface ApplicationJson {
16955
+ [k: string]: unknown;
16956
+ }
16957
+ }
16958
+ }
16959
+ namespace $429 {
16960
+ namespace Content {
16961
+ interface ApplicationJson {
16962
+ [k: string]: unknown;
16963
+ }
16964
+ }
16965
+ }
16966
+ namespace Default {
16967
+ namespace Content {
16968
+ interface ApplicationJson {
16969
+ [k: string]: unknown;
16970
+ }
16971
+ }
16972
+ }
16973
+ }
16974
+ }
16975
+ }
16976
+ namespace V2CustomersCustomerIdUnlockedLeadsLeadId { }
16977
+ namespace V2ExperimentalCustomersCustomerIdUnlockedLeadsLeadId {
16978
+ namespace Get {
16979
+ namespace Parameters {
16980
+ type Path = {
16981
+ leadId: string;
16982
+ customerId: string;
16983
+ };
16984
+ type Header = {};
16985
+ type Query = {};
16986
+ }
16987
+ namespace Responses {
16988
+ namespace $200 {
16989
+ namespace Content {
16990
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadfyndrUnlockedLead;
16991
+ }
16992
+ }
16993
+ namespace $400 {
16994
+ namespace Content {
16995
+ interface ApplicationJson {
16996
+ [k: string]: unknown;
16997
+ }
16998
+ }
16999
+ }
17000
+ namespace $403 {
17001
+ namespace Content {
17002
+ interface ApplicationJson {
17003
+ [k: string]: unknown;
17004
+ }
17005
+ }
17006
+ }
17007
+ namespace $404 {
17008
+ namespace Content {
17009
+ interface ApplicationJson {
17010
+ [k: string]: unknown;
17011
+ }
17012
+ }
17013
+ }
17014
+ namespace $429 {
17015
+ namespace Content {
17016
+ interface ApplicationJson {
17017
+ [k: string]: unknown;
17018
+ }
17019
+ }
17020
+ }
17021
+ namespace Default {
17022
+ namespace Content {
17023
+ interface ApplicationJson {
17024
+ [k: string]: unknown;
17025
+ }
17026
+ }
17027
+ }
17028
+ }
17029
+ }
17030
+ namespace Post {
17031
+ namespace Parameters {
17032
+ type Path = {
17033
+ leadId: string;
17034
+ customerId: string;
17035
+ };
17036
+ type Header = {};
17037
+ type Query = {};
17038
+ }
17039
+ namespace Responses {
17040
+ namespace $200 {
17041
+ namespace Content {
17042
+ interface ApplicationJson {
17043
+ leadId: string;
17044
+ }
17045
+ }
17046
+ }
17047
+ namespace $400 {
17048
+ namespace Content {
17049
+ interface ApplicationJson {
17050
+ [k: string]: unknown;
17051
+ }
17052
+ }
17053
+ }
17054
+ namespace $403 {
17055
+ namespace Content {
17056
+ interface ApplicationJson {
17057
+ [k: string]: unknown;
17058
+ }
17059
+ }
17060
+ }
17061
+ namespace $404 {
17062
+ namespace Content {
17063
+ interface ApplicationJson {
17064
+ [k: string]: unknown;
17065
+ }
17066
+ }
17067
+ }
17068
+ namespace $429 {
17069
+ namespace Content {
17070
+ interface ApplicationJson {
17071
+ [k: string]: unknown;
17072
+ }
17073
+ }
17074
+ }
17075
+ namespace Default {
17076
+ namespace Content {
17077
+ interface ApplicationJson {
17078
+ [k: string]: unknown;
17079
+ }
17080
+ }
17081
+ }
17082
+ }
17083
+ }
17084
+ }
17085
+ namespace V2CustomersCustomerIdLeads { }
17086
+ namespace V2ExperimentalCustomersCustomerIdLeads {
17087
+ namespace Get {
17088
+ namespace Parameters {
17089
+ type Path = {
17090
+ customerId: string;
17091
+ };
17092
+ type Header = {};
17093
+ type Query = {
17094
+ potentialRangeMin?: number;
17095
+ potentialRangeMax?: number;
17096
+ employeeCountMin?: number;
17097
+ employeeCountMax?: number;
17098
+ salesVolumeMin?: number;
17099
+ salesVolumeMax?: number;
17100
+ technologies?: string[];
17101
+ "basic:timeToFirstByteMs:min"?: number;
17102
+ "basic:timeToFirstByteMs:max"?: number;
17103
+ "basic:desktop:performance:min"?: number;
17104
+ "basic:desktop:performance:max"?: number;
17105
+ "basic:mobile:performance:min"?: number;
17106
+ "basic:mobile:performance:max"?: number;
17107
+ limit?: number;
17108
+ skip?: number;
17109
+ page?: number;
17110
+ sort?: ("potential" | "company.salesVolume" | "company.employeeCount" | "basic:desktop:performance" | "basic:mobile:performance" | "basic:desktop:seo" | "basic:mobile:seo")[];
17111
+ order?: ("asc" | "desc")[];
17112
+ };
17113
+ }
17114
+ namespace Responses {
17115
+ namespace $200 {
17116
+ namespace Content {
17117
+ interface ApplicationJson {
17118
+ leads: MittwaldAPIV2.Components.Schemas.LeadfyndrLead[];
17119
+ limit: number;
17120
+ skip: number;
17121
+ totalCount: number;
17122
+ }
17123
+ }
17124
+ }
17125
+ namespace $429 {
17126
+ namespace Content {
17127
+ interface ApplicationJson {
17128
+ [k: string]: unknown;
17129
+ }
17130
+ }
17131
+ }
17132
+ namespace Default {
17133
+ namespace Content {
17134
+ interface ApplicationJson {
17135
+ [k: string]: unknown;
17136
+ }
17137
+ }
17138
+ }
17139
+ }
17140
+ }
17141
+ }
17142
+ namespace V2CustomersCustomerIdUnlockedLeads { }
17143
+ namespace V2ExperimentalCustomersCustomerIdUnlockedLeads {
17144
+ namespace Get {
17145
+ namespace Parameters {
17146
+ type Path = {
17147
+ customerId: string;
17148
+ };
17149
+ type Header = {};
17150
+ type Query = {
17151
+ potentialRangeMin?: number;
17152
+ potentialRangeMax?: number;
17153
+ employeeCountMin?: number;
17154
+ employeeCountMax?: number;
17155
+ salesVolumeMin?: number;
17156
+ salesVolumeMax?: number;
17157
+ technologies?: string[];
17158
+ "basic:timeToFirstByteMs:min"?: number;
17159
+ "basic:timeToFirstByteMs:max"?: number;
17160
+ "basic:desktop:performance:min"?: number;
17161
+ "basic:desktop:performance:max"?: number;
17162
+ "basic:mobile:performance:min"?: number;
17163
+ "basic:mobile:performance:max"?: number;
17164
+ reserved?: boolean;
17165
+ limit?: number;
17166
+ skip?: number;
17167
+ page?: number;
17168
+ sort?: ("potential" | "company.salesVolume" | "company.employeeCount" | "basic:desktop:performance" | "basic:mobile:performance" | "basic:desktop:seo" | "basic:mobile:seo")[];
17169
+ order?: ("asc" | "desc")[];
17170
+ };
17171
+ }
17172
+ namespace Responses {
17173
+ namespace $200 {
17174
+ namespace Content {
17175
+ interface ApplicationJson {
17176
+ leads: MittwaldAPIV2.Components.Schemas.LeadfyndrUnlockedLead[];
17177
+ limit: number;
17178
+ skip: number;
17179
+ totalCount: number;
17180
+ }
17181
+ }
17182
+ }
17183
+ namespace $429 {
17184
+ namespace Content {
17185
+ interface ApplicationJson {
17186
+ [k: string]: unknown;
17187
+ }
17188
+ }
17189
+ }
17190
+ namespace Default {
17191
+ namespace Content {
17192
+ interface ApplicationJson {
17193
+ [k: string]: unknown;
17194
+ }
17195
+ }
17196
+ }
17197
+ }
17198
+ }
17199
+ }
17200
+ namespace V2CustomersCustomerIdUnlockedLeadsLeadIdReservation { }
17201
+ namespace V2ExperimentalCustomersCustomerIdUnlockedLeadsLeadIdReservation {
17202
+ namespace Post {
17203
+ namespace Parameters {
17204
+ type Path = {
17205
+ leadId: string;
17206
+ customerId: string;
17207
+ };
17208
+ type Header = {};
17209
+ type Query = {};
17210
+ }
17211
+ namespace Responses {
17212
+ namespace $200 {
17213
+ namespace Content {
17214
+ interface ApplicationJson {
17215
+ leadId: string;
17216
+ }
17217
+ }
17218
+ }
17219
+ namespace $400 {
17220
+ namespace Content {
17221
+ interface ApplicationJson {
17222
+ [k: string]: unknown;
17223
+ }
17224
+ }
17225
+ }
17226
+ namespace $403 {
17227
+ namespace Content {
17228
+ interface ApplicationJson {
17229
+ [k: string]: unknown;
17230
+ }
17231
+ }
17232
+ }
17233
+ namespace $404 {
17234
+ namespace Content {
17235
+ interface ApplicationJson {
17236
+ [k: string]: unknown;
17237
+ }
17238
+ }
17239
+ }
17240
+ namespace $409 {
17241
+ namespace Content {
17242
+ interface ApplicationJson {
17243
+ [k: string]: unknown;
17244
+ }
17245
+ }
17246
+ }
17247
+ namespace $429 {
17248
+ namespace Content {
17249
+ interface ApplicationJson {
17250
+ [k: string]: unknown;
17251
+ }
17252
+ }
17253
+ }
17254
+ namespace Default {
17255
+ namespace Content {
17256
+ interface ApplicationJson {
17257
+ [k: string]: unknown;
17258
+ }
17259
+ }
17260
+ }
17261
+ }
17262
+ }
17263
+ namespace Delete {
17264
+ namespace Parameters {
17265
+ type Path = {
17266
+ leadId: string;
17267
+ customerId: string;
17268
+ };
17269
+ type Header = {};
17270
+ type Query = {};
17271
+ }
17272
+ namespace Responses {
17273
+ namespace $200 {
17274
+ namespace Content {
17275
+ interface ApplicationJson {
17276
+ leadId: string;
17277
+ }
17278
+ }
17279
+ }
17280
+ namespace $400 {
17281
+ namespace Content {
17282
+ interface ApplicationJson {
17283
+ [k: string]: unknown;
17284
+ }
17285
+ }
17286
+ }
17287
+ namespace $403 {
17288
+ namespace Content {
17289
+ interface ApplicationJson {
17290
+ [k: string]: unknown;
17291
+ }
17292
+ }
17293
+ }
17294
+ namespace $404 {
17295
+ namespace Content {
17296
+ interface ApplicationJson {
17297
+ [k: string]: unknown;
17298
+ }
17299
+ }
17300
+ }
17301
+ namespace $409 {
17302
+ namespace Content {
17303
+ interface ApplicationJson {
17304
+ [k: string]: unknown;
17305
+ }
17306
+ }
17307
+ }
17308
+ namespace $429 {
17309
+ namespace Content {
17310
+ interface ApplicationJson {
17311
+ [k: string]: unknown;
17312
+ }
17313
+ }
17314
+ }
17315
+ namespace Default {
17316
+ namespace Content {
17317
+ interface ApplicationJson {
17318
+ [k: string]: unknown;
17319
+ }
17320
+ }
17321
+ }
17322
+ }
17323
+ }
17324
+ }
16515
17325
  namespace V2ProjectsProjectIdDeliveryboxes { }
16516
17326
  namespace V2ProjectsProjectIdDeliveryBoxes {
16517
17327
  namespace Get {