@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.
@@ -1989,6 +1989,191 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1989
1989
  } | undefined;
1990
1990
  }) => import("@mittwald/react-use-promise").AsyncResource<string>;
1991
1991
  };
1992
+ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
1993
+ /** Get your LeadFyndr request. */
1994
+ leadfyndrGetLeadFyndrProfileRequest: (conf: {
1995
+ customerId: string;
1996
+ headers?: {
1997
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1998
+ } | undefined;
1999
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2000
+ createdOn: string;
2001
+ customerId: string;
2002
+ domain: string;
2003
+ profileId: string;
2004
+ requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrUser;
2005
+ resultOn?: string | undefined;
2006
+ status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
2007
+ }>;
2008
+ /** Get cities in DACH. */
2009
+ leadfyndrGetCities: (conf: {
2010
+ queryParameters: {
2011
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2012
+ input: string;
2013
+ };
2014
+ headers?: {
2015
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2016
+ } | undefined;
2017
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrCity[]>;
2018
+ /** Get lead tariff options. How many leads did you unlock this month? */
2019
+ leadfyndrGetLeadFyndrProfileTariffOptions: (conf: {
2020
+ customerId: string;
2021
+ headers?: {
2022
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2023
+ } | undefined;
2024
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2025
+ nextUnlockRenewalDate?: string | undefined;
2026
+ reservation: {
2027
+ available: number;
2028
+ tariffLimit: number;
2029
+ used: number;
2030
+ };
2031
+ unlocked: {
2032
+ available: number;
2033
+ tariffLimit: number;
2034
+ used: number;
2035
+ };
2036
+ }>;
2037
+ /** Get your LeadFyndr profile. */
2038
+ leadfyndrGetLeadFyndrProfile: (conf: {
2039
+ customerId: string;
2040
+ headers?: {
2041
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2042
+ } | undefined;
2043
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2044
+ approvedOn: string;
2045
+ customerId: string;
2046
+ disabledOn?: string | undefined;
2047
+ domain: string;
2048
+ tariff: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTariffOptions;
2049
+ }>;
2050
+ /** Get a simple lead. Use the unlocked route for more detail leads. */
2051
+ leadfyndrGetLead: (conf: {
2052
+ leadId: string;
2053
+ customerId: string;
2054
+ headers?: {
2055
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2056
+ } | undefined;
2057
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2058
+ businessFields: string[];
2059
+ company: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrBasicCompany;
2060
+ description: string;
2061
+ hoster: {
2062
+ server: string[];
2063
+ };
2064
+ languages: string[];
2065
+ leadId: string;
2066
+ mainTechnology?: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology | undefined;
2067
+ metrics: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrBasicMetrics;
2068
+ potential: number;
2069
+ scannedAt?: string | undefined;
2070
+ screenshot: string;
2071
+ technologies: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology[];
2072
+ }>;
2073
+ /** Get a detail of a unlocked lead. Organisation can unlock leads. */
2074
+ leadfyndrGetUnlockedLead: (conf: {
2075
+ leadId: string;
2076
+ customerId: string;
2077
+ headers?: {
2078
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2079
+ } | undefined;
2080
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2081
+ actualUrl: string;
2082
+ businessFields: string[];
2083
+ company: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrDetailCompany;
2084
+ contact: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrContact;
2085
+ description: string;
2086
+ domain: string;
2087
+ hoster: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrHoster;
2088
+ languages: string[];
2089
+ leadId: string;
2090
+ mainTechnology?: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology | undefined;
2091
+ metrics: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrDetailMetrics;
2092
+ potential: number;
2093
+ reservationAllowed?: boolean | undefined;
2094
+ reservedAt?: string | undefined;
2095
+ scannedAt?: string | undefined;
2096
+ screenshot: string;
2097
+ socialMedia: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrSocialMedia[];
2098
+ technologies: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrTechnology[];
2099
+ unlockedAt: string;
2100
+ }>;
2101
+ /** Get all leads. Use the unlocked routes for more lead details. */
2102
+ leadfyndrListLeads: (conf: {
2103
+ customerId: string;
2104
+ headers?: {
2105
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2106
+ } | undefined;
2107
+ queryParameters?: {
2108
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2109
+ potentialRangeMin?: number | undefined;
2110
+ potentialRangeMax?: number | undefined;
2111
+ employeeCountMin?: number | undefined;
2112
+ employeeCountMax?: number | undefined;
2113
+ salesVolumeMin?: number | undefined;
2114
+ salesVolumeMax?: number | undefined;
2115
+ technologies?: string[] | undefined;
2116
+ businessFields?: string[] | undefined;
2117
+ locationCity?: string | undefined;
2118
+ locationPostCode?: string | undefined;
2119
+ locationRadiusInKm?: number | undefined;
2120
+ "basic:timeToFirstByteMs:min"?: number | undefined;
2121
+ "basic:timeToFirstByteMs:max"?: number | undefined;
2122
+ "basic:desktop:performance:min"?: number | undefined;
2123
+ "basic:desktop:performance:max"?: number | undefined;
2124
+ "basic:mobile:performance:min"?: number | undefined;
2125
+ "basic:mobile:performance:max"?: number | undefined;
2126
+ limit?: number | undefined;
2127
+ skip?: number | undefined;
2128
+ page?: number | undefined;
2129
+ sort?: "potential" | "relevance" | undefined;
2130
+ order?: "asc" | "desc" | undefined;
2131
+ } | undefined;
2132
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2133
+ leads: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrLead[];
2134
+ limit: number;
2135
+ skip: number;
2136
+ totalCount: number;
2137
+ }>;
2138
+ /** Get all unlocked leads. Organisation can unlock leads. */
2139
+ leadfyndrListUnlockedLeads: (conf: {
2140
+ customerId: string;
2141
+ headers?: {
2142
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2143
+ } | undefined;
2144
+ queryParameters?: {
2145
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2146
+ potentialRangeMin?: number | undefined;
2147
+ potentialRangeMax?: number | undefined;
2148
+ employeeCountMin?: number | undefined;
2149
+ employeeCountMax?: number | undefined;
2150
+ salesVolumeMin?: number | undefined;
2151
+ salesVolumeMax?: number | undefined;
2152
+ technologies?: string[] | undefined;
2153
+ businessFields?: string[] | undefined;
2154
+ locationCity?: string | undefined;
2155
+ locationPostCode?: string | undefined;
2156
+ locationRadiusInKm?: number | undefined;
2157
+ "basic:timeToFirstByteMs:min"?: number | undefined;
2158
+ "basic:timeToFirstByteMs:max"?: number | undefined;
2159
+ "basic:desktop:performance:min"?: number | undefined;
2160
+ "basic:desktop:performance:max"?: number | undefined;
2161
+ "basic:mobile:performance:min"?: number | undefined;
2162
+ "basic:mobile:performance:max"?: number | undefined;
2163
+ reserved?: boolean | undefined;
2164
+ limit?: number | undefined;
2165
+ skip?: number | undefined;
2166
+ page?: number | undefined;
2167
+ sort?: "potential" | "relevance" | undefined;
2168
+ order?: "asc" | "desc" | undefined;
2169
+ } | undefined;
2170
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2171
+ leads: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrUnlockedLead[];
2172
+ limit: number;
2173
+ skip: number;
2174
+ totalCount: number;
2175
+ }>;
2176
+ };
1992
2177
  declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
1993
2178
  /** List DeliveryBoxes belonging to a Project. */
1994
2179
  listDeliveryBoxes: (conf: {
@@ -2096,6 +2281,14 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2096
2281
  whitelist: string[];
2097
2282
  }>;
2098
2283
  };
2284
+ declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
2285
+ /** Get a list of currently active llm models. */
2286
+ getLlmModelsExperimental: (conf?: {
2287
+ headers?: {
2288
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2289
+ } | undefined;
2290
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[]>;
2291
+ };
2099
2292
  declare const buildNotificationApi: (baseClient: MittwaldAPIV2Client) => {
2100
2293
  /** Getting the subscription status of the subscription. */
2101
2294
  newsletterGetInfo: (conf?: {
@@ -2415,6 +2608,13 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
2415
2608
  }>;
2416
2609
  };
2417
2610
  declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2611
+ /** Get a list of already created llm licences. */
2612
+ getLlmLicencesExperimental: (conf: {
2613
+ projectId: string;
2614
+ headers?: {
2615
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2616
+ } | undefined;
2617
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[]>;
2418
2618
  /** List Invites belonging to a Project. */
2419
2619
  listInvitesForProject: (conf: {
2420
2620
  projectId: string;
@@ -2505,6 +2705,23 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2505
2705
  webStorageUsageInBytes: number;
2506
2706
  webStorageUsageInBytesSetAt: string;
2507
2707
  }>;
2708
+ /** Get a licence of a project. */
2709
+ getLlmLicenceExperimental: (conf: {
2710
+ projectId: string;
2711
+ licenceId: string;
2712
+ headers?: {
2713
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2714
+ } | undefined;
2715
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2716
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
2717
+ customerId?: string | undefined;
2718
+ licenceId: string;
2719
+ licenceKey: string;
2720
+ models: string[];
2721
+ name: string;
2722
+ projectId?: string | undefined;
2723
+ rateLimit: number;
2724
+ }>;
2508
2725
  /** Get a ProjectInvite by token. */
2509
2726
  getProjectTokenInvite: (conf: {
2510
2727
  headers: {
@@ -2700,30 +2917,6 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2700
2917
  notificationThresholdInBytes?: number | undefined;
2701
2918
  statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
2702
2919
  }>;
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
2920
  };
2728
2921
  declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
2729
2922
  /** List directories belonging to a Project. */
@@ -2885,199 +3078,6 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV2Client) => {
2885
3078
  userName: string;
2886
3079
  }>;
2887
3080
  };
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
3081
  export declare class MittwaldAPIV2ClientReact {
3082
3082
  /** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
3083
3083
  readonly app: ReturnType<typeof buildAppApi>;
@@ -3103,8 +3103,12 @@ export declare class MittwaldAPIV2ClientReact {
3103
3103
  readonly domain: ReturnType<typeof buildDomainApi>;
3104
3104
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
3105
3105
  readonly file: ReturnType<typeof buildFileApi>;
3106
+ /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
3107
+ readonly leadFyndr: ReturnType<typeof buildLeadFyndrApi>;
3106
3108
  /** The mail API allows you to manage your mail accounts. */
3107
3109
  readonly mail: ReturnType<typeof buildMailApi>;
3110
+ /** API endpoints that are not related to any specific API domain */
3111
+ readonly misc: ReturnType<typeof buildMiscApi>;
3108
3112
  /** The notification API allows you to manage your notifications. */
3109
3113
  readonly notification: ReturnType<typeof buildNotificationApi>;
3110
3114
  /** The page insights API allows you to get page insights information. */
@@ -3117,10 +3121,6 @@ export declare class MittwaldAPIV2ClientReact {
3117
3121
  readonly projectFileSystem: ReturnType<typeof buildProjectFileSystemApi>;
3118
3122
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
3119
3123
  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
3124
  private constructor();
3125
3125
  static fromBaseClient(baseClient: MittwaldAPIV2Client): MittwaldAPIV2ClientReact;
3126
3126
  }