@mittwald/api-client 4.176.0 → 4.178.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.
@@ -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;
@@ -1989,6 +1980,191 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1989
1980
  } | undefined;
1990
1981
  }) => import("@mittwald/react-use-promise").AsyncResource<string>;
1991
1982
  };
1983
+ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
1984
+ /** Get your LeadFyndr request. */
1985
+ leadfyndrGetLeadFyndrProfileRequest: (conf: {
1986
+ customerId: string;
1987
+ headers?: {
1988
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1989
+ } | undefined;
1990
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1991
+ createdOn: string;
1992
+ customerId: string;
1993
+ domain: string;
1994
+ profileId: string;
1995
+ requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrUser;
1996
+ resultOn?: string | undefined;
1997
+ status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
1998
+ }>;
1999
+ /** Get cities in DACH. */
2000
+ leadfyndrGetCities: (conf: {
2001
+ queryParameters: {
2002
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2003
+ input: string;
2004
+ };
2005
+ headers?: {
2006
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2007
+ } | undefined;
2008
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrCity[]>;
2009
+ /** Get lead tariff options. How many leads did you unlock this month? */
2010
+ leadfyndrGetLeadFyndrProfileTariffOptions: (conf: {
2011
+ customerId: string;
2012
+ headers?: {
2013
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2014
+ } | undefined;
2015
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2016
+ nextUnlockRenewalDate?: string | undefined;
2017
+ reservation: {
2018
+ available: number;
2019
+ tariffLimit: number;
2020
+ used: number;
2021
+ };
2022
+ unlocked: {
2023
+ available: number;
2024
+ tariffLimit: number;
2025
+ used: number;
2026
+ };
2027
+ }>;
2028
+ /** Get your LeadFyndr profile. */
2029
+ leadfyndrGetLeadFyndrProfile: (conf: {
2030
+ customerId: string;
2031
+ headers?: {
2032
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2033
+ } | undefined;
2034
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2035
+ approvedOn: string;
2036
+ customerId: string;
2037
+ disabledOn?: string | undefined;
2038
+ domain: string;
2039
+ tariff: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTariffOptions;
2040
+ }>;
2041
+ /** Get a simple lead. Use the unlocked route for more detail leads. */
2042
+ leadfyndrGetLead: (conf: {
2043
+ leadId: string;
2044
+ customerId: string;
2045
+ headers?: {
2046
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2047
+ } | undefined;
2048
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2049
+ businessFields: string[];
2050
+ company: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrBasicCompany;
2051
+ description: string;
2052
+ hoster: {
2053
+ server: string[];
2054
+ };
2055
+ languages: string[];
2056
+ leadId: string;
2057
+ mainTechnology?: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology | undefined;
2058
+ metrics: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrBasicMetrics;
2059
+ potential: number;
2060
+ scannedAt?: string | undefined;
2061
+ screenshot: string;
2062
+ technologies: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology[];
2063
+ }>;
2064
+ /** Get a detail of a unlocked lead. Organisation can unlock leads. */
2065
+ leadfyndrGetUnlockedLead: (conf: {
2066
+ leadId: string;
2067
+ customerId: string;
2068
+ headers?: {
2069
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2070
+ } | undefined;
2071
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2072
+ actualUrl: string;
2073
+ businessFields: string[];
2074
+ company: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrDetailCompany;
2075
+ contact: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrContact;
2076
+ description: string;
2077
+ domain: string;
2078
+ hoster: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrHoster;
2079
+ languages: string[];
2080
+ leadId: string;
2081
+ mainTechnology?: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology | undefined;
2082
+ metrics: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrDetailMetrics;
2083
+ potential: number;
2084
+ reservationAllowed?: boolean | undefined;
2085
+ reservedAt?: string | undefined;
2086
+ scannedAt?: string | undefined;
2087
+ screenshot: string;
2088
+ socialMedia: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrSocialMedia[];
2089
+ technologies: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology[];
2090
+ unlockedAt: string;
2091
+ }>;
2092
+ /** Get all leads. Use the unlocked routes for more lead details. */
2093
+ leadfyndrListLeads: (conf: {
2094
+ customerId: string;
2095
+ headers?: {
2096
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2097
+ } | undefined;
2098
+ queryParameters?: {
2099
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2100
+ potentialRangeMin?: number | undefined;
2101
+ potentialRangeMax?: number | undefined;
2102
+ employeeCountMin?: number | undefined;
2103
+ employeeCountMax?: number | undefined;
2104
+ salesVolumeMin?: number | undefined;
2105
+ salesVolumeMax?: number | undefined;
2106
+ technologies?: string[] | undefined;
2107
+ businessFields?: string[] | undefined;
2108
+ locationCity?: string | undefined;
2109
+ locationPostCode?: string | undefined;
2110
+ locationRadiusInKm?: number | undefined;
2111
+ "basic:timeToFirstByteMs:min"?: number | undefined;
2112
+ "basic:timeToFirstByteMs:max"?: number | undefined;
2113
+ "basic:desktop:performance:min"?: number | undefined;
2114
+ "basic:desktop:performance:max"?: number | undefined;
2115
+ "basic:mobile:performance:min"?: number | undefined;
2116
+ "basic:mobile:performance:max"?: number | undefined;
2117
+ limit?: number | undefined;
2118
+ skip?: number | undefined;
2119
+ page?: number | undefined;
2120
+ sort?: "potential" | "relevance" | undefined;
2121
+ order?: "asc" | "desc" | undefined;
2122
+ } | undefined;
2123
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2124
+ leads: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrLead[];
2125
+ limit: number;
2126
+ skip: number;
2127
+ totalCount: number;
2128
+ }>;
2129
+ /** Get all unlocked leads. Organisation can unlock leads. */
2130
+ leadfyndrListUnlockedLeads: (conf: {
2131
+ customerId: string;
2132
+ headers?: {
2133
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2134
+ } | undefined;
2135
+ queryParameters?: {
2136
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2137
+ potentialRangeMin?: number | undefined;
2138
+ potentialRangeMax?: number | undefined;
2139
+ employeeCountMin?: number | undefined;
2140
+ employeeCountMax?: number | undefined;
2141
+ salesVolumeMin?: number | undefined;
2142
+ salesVolumeMax?: number | undefined;
2143
+ technologies?: string[] | undefined;
2144
+ businessFields?: string[] | undefined;
2145
+ locationCity?: string | undefined;
2146
+ locationPostCode?: string | undefined;
2147
+ locationRadiusInKm?: number | undefined;
2148
+ "basic:timeToFirstByteMs:min"?: number | undefined;
2149
+ "basic:timeToFirstByteMs:max"?: number | undefined;
2150
+ "basic:desktop:performance:min"?: number | undefined;
2151
+ "basic:desktop:performance:max"?: number | undefined;
2152
+ "basic:mobile:performance:min"?: number | undefined;
2153
+ "basic:mobile:performance:max"?: number | undefined;
2154
+ reserved?: boolean | undefined;
2155
+ limit?: number | undefined;
2156
+ skip?: number | undefined;
2157
+ page?: number | undefined;
2158
+ sort?: "potential" | "relevance" | undefined;
2159
+ order?: "asc" | "desc" | undefined;
2160
+ } | undefined;
2161
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2162
+ leads: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrUnlockedLead[];
2163
+ limit: number;
2164
+ skip: number;
2165
+ totalCount: number;
2166
+ }>;
2167
+ };
1992
2168
  declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
1993
2169
  /** List DeliveryBoxes belonging to a Project. */
1994
2170
  listDeliveryBoxes: (conf: {
@@ -2096,6 +2272,14 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2096
2272
  whitelist: string[];
2097
2273
  }>;
2098
2274
  };
2275
+ declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
2276
+ /** Get a list of currently active llm models. */
2277
+ getLlmModelsExperimental: (conf?: {
2278
+ headers?: {
2279
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2280
+ } | undefined;
2281
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[]>;
2282
+ };
2099
2283
  declare const buildNotificationApi: (baseClient: MittwaldAPIV2Client) => {
2100
2284
  /** Getting the subscription status of the subscription. */
2101
2285
  newsletterGetInfo: (conf?: {
@@ -2415,6 +2599,13 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
2415
2599
  }>;
2416
2600
  };
2417
2601
  declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2602
+ /** Get a list of already created llm licences. */
2603
+ getLlmLicencesExperimental: (conf: {
2604
+ projectId: string;
2605
+ headers?: {
2606
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2607
+ } | undefined;
2608
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[]>;
2418
2609
  /** List Invites belonging to a Project. */
2419
2610
  listInvitesForProject: (conf: {
2420
2611
  projectId: string;
@@ -2505,6 +2696,23 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2505
2696
  webStorageUsageInBytes: number;
2506
2697
  webStorageUsageInBytesSetAt: string;
2507
2698
  }>;
2699
+ /** Get a licence of a project. */
2700
+ getLlmLicenceExperimental: (conf: {
2701
+ projectId: string;
2702
+ licenceId: string;
2703
+ headers?: {
2704
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2705
+ } | undefined;
2706
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2707
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
2708
+ customerId?: string | undefined;
2709
+ licenceId: string;
2710
+ licenceKey: string;
2711
+ models: string[];
2712
+ name: string;
2713
+ projectId?: string | undefined;
2714
+ rateLimit: number;
2715
+ }>;
2508
2716
  /** Get a ProjectInvite by token. */
2509
2717
  getProjectTokenInvite: (conf: {
2510
2718
  headers: {
@@ -2700,30 +2908,6 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2700
2908
  notificationThresholdInBytes?: number | undefined;
2701
2909
  statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
2702
2910
  }>;
2703
- /** Get a list of already created llm licences. */
2704
- getLlmLicencesExperimental: (conf: {
2705
- projectId: string;
2706
- headers?: {
2707
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2708
- } | undefined;
2709
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[]>;
2710
- /** Get a licence of a project. */
2711
- getLlmLicenceExperimental: (conf: {
2712
- projectId: string;
2713
- licenceId: string;
2714
- headers?: {
2715
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2716
- } | undefined;
2717
- }) => import("@mittwald/react-use-promise").AsyncResource<{
2718
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
2719
- customerId?: string | undefined;
2720
- licenceId: string;
2721
- licenceKey: string;
2722
- models: string[];
2723
- name: string;
2724
- projectId?: string | undefined;
2725
- rateLimit: number;
2726
- }>;
2727
2911
  };
2728
2912
  declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
2729
2913
  /** List directories belonging to a Project. */
@@ -2885,199 +3069,6 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV2Client) => {
2885
3069
  userName: string;
2886
3070
  }>;
2887
3071
  };
2888
- declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2889
- /** Get cities in DACH. */
2890
- leadfyndrGetCities: (conf: {
2891
- queryParameters: {
2892
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2893
- input: string;
2894
- };
2895
- headers?: {
2896
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2897
- } | undefined;
2898
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrCity[]>;
2899
- /** Get a simple lead. Use the unlocked route for more detail leads. */
2900
- leadfyndrGetLead: (conf: {
2901
- leadId: string;
2902
- customerId: string;
2903
- headers?: {
2904
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2905
- } | undefined;
2906
- }) => import("@mittwald/react-use-promise").AsyncResource<{
2907
- businessFields: string[];
2908
- company: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrBasicCompany;
2909
- description: string;
2910
- hoster: {
2911
- server: string[];
2912
- };
2913
- languages: string[];
2914
- leadId: string;
2915
- mainTechnology?: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology | undefined;
2916
- metrics: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrBasicMetrics;
2917
- potential: number;
2918
- scannedAt?: string | undefined;
2919
- screenshot: string;
2920
- technologies: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology[];
2921
- }>;
2922
- /** Get all leads. Use the unlocked routes for more lead details. */
2923
- leadfyndrListLeads: (conf: {
2924
- customerId: string;
2925
- headers?: {
2926
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2927
- } | undefined;
2928
- queryParameters?: {
2929
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2930
- potentialRangeMin?: number | undefined;
2931
- potentialRangeMax?: number | undefined;
2932
- employeeCountMin?: number | undefined;
2933
- employeeCountMax?: number | undefined;
2934
- salesVolumeMin?: number | undefined;
2935
- salesVolumeMax?: number | undefined;
2936
- technologies?: string[] | undefined;
2937
- businessFields?: string[] | undefined;
2938
- locationCity?: string | undefined;
2939
- locationPostCode?: string | undefined;
2940
- locationRadiusInKm?: number | undefined;
2941
- "basic:timeToFirstByteMs:min"?: number | undefined;
2942
- "basic:timeToFirstByteMs:max"?: number | undefined;
2943
- "basic:desktop:performance:min"?: number | undefined;
2944
- "basic:desktop:performance:max"?: number | undefined;
2945
- "basic:mobile:performance:min"?: number | undefined;
2946
- "basic:mobile:performance:max"?: number | undefined;
2947
- limit?: number | undefined;
2948
- skip?: number | undefined;
2949
- page?: number | undefined;
2950
- sort?: "potential" | "relevance" | undefined;
2951
- order?: "asc" | "desc" | undefined;
2952
- } | undefined;
2953
- }) => import("@mittwald/react-use-promise").AsyncResource<{
2954
- leads: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrLead[];
2955
- limit: number;
2956
- skip: number;
2957
- totalCount: number;
2958
- }>;
2959
- /** Get a detail of a unlocked lead. Organisation can unlock leads. */
2960
- leadfyndrGetUnlockedLead: (conf: {
2961
- leadId: string;
2962
- customerId: string;
2963
- headers?: {
2964
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2965
- } | undefined;
2966
- }) => import("@mittwald/react-use-promise").AsyncResource<{
2967
- actualUrl: string;
2968
- businessFields: string[];
2969
- company: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrDetailCompany;
2970
- contact: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrContact;
2971
- description: string;
2972
- domain: string;
2973
- hoster: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrHoster;
2974
- languages: string[];
2975
- leadId: string;
2976
- mainTechnology?: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology | undefined;
2977
- metrics: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrDetailMetrics;
2978
- potential: number;
2979
- reservationAllowed?: boolean | undefined;
2980
- reservedAt?: string | undefined;
2981
- scannedAt?: string | undefined;
2982
- screenshot: string;
2983
- socialMedia: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrSocialMedia[];
2984
- technologies: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology[];
2985
- unlockedAt: string;
2986
- }>;
2987
- /** Get all unlocked leads. Organisation can unlock leads. */
2988
- leadfyndrListUnlockedLeads: (conf: {
2989
- customerId: string;
2990
- headers?: {
2991
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2992
- } | undefined;
2993
- queryParameters?: {
2994
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2995
- potentialRangeMin?: number | undefined;
2996
- potentialRangeMax?: number | undefined;
2997
- employeeCountMin?: number | undefined;
2998
- employeeCountMax?: number | undefined;
2999
- salesVolumeMin?: number | undefined;
3000
- salesVolumeMax?: number | undefined;
3001
- technologies?: string[] | undefined;
3002
- businessFields?: string[] | undefined;
3003
- locationCity?: string | undefined;
3004
- locationPostCode?: string | undefined;
3005
- locationRadiusInKm?: number | undefined;
3006
- "basic:timeToFirstByteMs:min"?: number | undefined;
3007
- "basic:timeToFirstByteMs:max"?: number | undefined;
3008
- "basic:desktop:performance:min"?: number | undefined;
3009
- "basic:desktop:performance:max"?: number | undefined;
3010
- "basic:mobile:performance:min"?: number | undefined;
3011
- "basic:mobile:performance:max"?: number | undefined;
3012
- reserved?: boolean | undefined;
3013
- limit?: number | undefined;
3014
- skip?: number | undefined;
3015
- page?: number | undefined;
3016
- sort?: "potential" | "relevance" | undefined;
3017
- order?: "asc" | "desc" | undefined;
3018
- } | undefined;
3019
- }) => import("@mittwald/react-use-promise").AsyncResource<{
3020
- leads: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrUnlockedLead[];
3021
- limit: number;
3022
- skip: number;
3023
- totalCount: number;
3024
- }>;
3025
- /** Get lead tariff options. How many leads did you unlock this month? */
3026
- leadfyndrGetLeadFyndrProfileTariffOptions: (conf: {
3027
- customerId: string;
3028
- headers?: {
3029
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3030
- } | undefined;
3031
- }) => import("@mittwald/react-use-promise").AsyncResource<{
3032
- nextUnlockRenewalDate?: string | undefined;
3033
- reservation: {
3034
- available: number;
3035
- tariffLimit: number;
3036
- used: number;
3037
- };
3038
- unlocked: {
3039
- available: number;
3040
- tariffLimit: number;
3041
- used: number;
3042
- };
3043
- }>;
3044
- /** Get your LeadFyndr profile. */
3045
- leadfyndrGetLeadFyndrProfile: (conf: {
3046
- customerId: string;
3047
- headers?: {
3048
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3049
- } | undefined;
3050
- }) => import("@mittwald/react-use-promise").AsyncResource<{
3051
- approvedOn: string;
3052
- customerId: string;
3053
- disabledOn?: string | undefined;
3054
- domain: string;
3055
- tariff: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTariffOptions;
3056
- }>;
3057
- /** Get your LeadFyndr request. */
3058
- leadfyndrGetLeadFyndrProfileRequest: (conf: {
3059
- customerId: string;
3060
- headers?: {
3061
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3062
- } | undefined;
3063
- }) => import("@mittwald/react-use-promise").AsyncResource<{
3064
- createdOn: string;
3065
- customerId: string;
3066
- domain: string;
3067
- profileId: string;
3068
- requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrUser;
3069
- resultOn?: string | undefined;
3070
- status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
3071
- }>;
3072
- };
3073
- declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
3074
- /** Get a list of currently active llm models. */
3075
- getLlmModelsExperimental: (conf?: {
3076
- headers?: {
3077
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3078
- } | undefined;
3079
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[]>;
3080
- };
3081
3072
  export declare class MittwaldAPIV2ClientReact {
3082
3073
  /** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
3083
3074
  readonly app: ReturnType<typeof buildAppApi>;
@@ -3103,8 +3094,12 @@ export declare class MittwaldAPIV2ClientReact {
3103
3094
  readonly domain: ReturnType<typeof buildDomainApi>;
3104
3095
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
3105
3096
  readonly file: ReturnType<typeof buildFileApi>;
3097
+ /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
3098
+ readonly leadFyndr: ReturnType<typeof buildLeadFyndrApi>;
3106
3099
  /** The mail API allows you to manage your mail accounts. */
3107
3100
  readonly mail: ReturnType<typeof buildMailApi>;
3101
+ /** API endpoints that are not related to any specific API domain */
3102
+ readonly misc: ReturnType<typeof buildMiscApi>;
3108
3103
  /** The notification API allows you to manage your notifications. */
3109
3104
  readonly notification: ReturnType<typeof buildNotificationApi>;
3110
3105
  /** The page insights API allows you to get page insights information. */
@@ -3117,10 +3112,6 @@ export declare class MittwaldAPIV2ClientReact {
3117
3112
  readonly projectFileSystem: ReturnType<typeof buildProjectFileSystemApi>;
3118
3113
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
3119
3114
  readonly sshsftpUser: ReturnType<typeof buildSshsftpUserApi>;
3120
- /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
3121
- readonly leadFyndr: ReturnType<typeof buildLeadFyndrApi>;
3122
- /** API endpoints that are not related to any specific API domain */
3123
- readonly misc: ReturnType<typeof buildMiscApi>;
3124
3115
  private constructor();
3125
3116
  static fromBaseClient(baseClient: MittwaldAPIV2Client): MittwaldAPIV2ClientReact;
3126
3117
  }