@mittwald/api-client 4.171.0 → 4.172.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.
@@ -358,6 +358,10 @@ const buildProjectApi = (baseClient) => ({
358
358
  storagespaceGetProjectStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetProjectStatistics, baseClient.project.storagespaceGetProjectStatistics).getApiResource,
359
359
  /** Get storage space Statistics belonging to a Server. */
360
360
  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,
361
365
  });
362
366
  const buildProjectFileSystemApi = (baseClient) => ({
363
367
  /** List directories belonging to a Project. */
@@ -804,6 +804,14 @@ export class MittwaldAPIV2Client extends ApiClientBase {
804
804
  storagespaceReplaceProjectNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceProjectNotificationThreshold),
805
805
  /** Update a Server's storage space notification threshold. */
806
806
  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),
807
815
  };
808
816
  /** The filesystem API allows you to directly access the filesystem of your project. */
809
817
  projectFileSystem = {
@@ -2440,3 +2440,33 @@ export const leadfyndrCreateLeadFyndrAccessRequest = {
2440
2440
  method: "POST",
2441
2441
  operationId: "leadfyndr-create-lead-fyndr-access-request",
2442
2442
  };
2443
+ /** Get a list of currently active llm models. */
2444
+ export const aihostingGetLlmModelsExperimental = {
2445
+ path: "/v2-experimental/llm/models",
2446
+ method: "GET",
2447
+ operationId: "aihosting-get-llm-models-experimental",
2448
+ };
2449
+ /** Get a list of already created llm licences. */
2450
+ export const projectGetLlmLicencesExperimental = {
2451
+ path: "/v2-experimental/projects/{projectId}/llm-licences",
2452
+ method: "GET",
2453
+ operationId: "project-get-llm-licences-experimental",
2454
+ };
2455
+ /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
2456
+ export const projectCreateLlmBetaLicenceExperimental = {
2457
+ path: "/v2-experimental/projects/{projectId}/llm-licences",
2458
+ method: "POST",
2459
+ operationId: "project-create-llm-beta-licence-experimental",
2460
+ };
2461
+ /** Get a licence of a project. */
2462
+ export const projectGetLlmLicenceExperimental = {
2463
+ path: "/v2-experimental/projects/{projectId}/llm-licences/{licenceId}",
2464
+ method: "GET",
2465
+ operationId: "project-get-llm-licence-experimental",
2466
+ };
2467
+ /** Update a llm Licence for a project. */
2468
+ export const projectUpdateLlmLicenceExperimental = {
2469
+ path: "/v2-experimental/projects/{projectId}/llm-licences/{licenceId}",
2470
+ method: "PUT",
2471
+ operationId: "project-update-llm-licence-experimental",
2472
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.170.0';
1
+ export const MittwaldAPIClientVersion = '4.171.0';
@@ -2700,6 +2700,30 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2700
2700
  notificationThresholdInBytes?: number | undefined;
2701
2701
  statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
2702
2702
  }>;
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
+ }>;
2703
2727
  };
2704
2728
  declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
2705
2729
  /** List directories belonging to a Project. */
@@ -23907,6 +23907,266 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23907
23907
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
23908
23908
  [x: string]: unknown;
23909
23909
  }, 500, "application/json">>>;
23910
+ /** Get a list of already created llm licences. */
23911
+ getLlmLicencesExperimental: (request: {
23912
+ projectId: string;
23913
+ headers?: {
23914
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23915
+ } | undefined;
23916
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23917
+ headers?: Partial<{
23918
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23919
+ }>;
23920
+ } & {
23921
+ pathParameters: {
23922
+ projectId: string;
23923
+ };
23924
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23925
+ [x: string]: unknown;
23926
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23927
+ [x: string]: unknown;
23928
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23929
+ [x: string]: unknown;
23930
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23931
+ [x: string]: unknown;
23932
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23933
+ headers?: Partial<{
23934
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23935
+ }>;
23936
+ } & {
23937
+ pathParameters: {
23938
+ projectId: string;
23939
+ };
23940
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23941
+ [x: string]: unknown;
23942
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23943
+ [x: string]: unknown;
23944
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23945
+ [x: string]: unknown;
23946
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23947
+ [x: string]: unknown;
23948
+ }, 429, "application/json">>>;
23949
+ /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
23950
+ createLlmBetaLicenceExperimental: (request: {
23951
+ data: {
23952
+ name: string;
23953
+ createWebuiContainer?: boolean | undefined;
23954
+ };
23955
+ projectId: string;
23956
+ headers?: {
23957
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23958
+ } | undefined;
23959
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23960
+ data: {
23961
+ createWebuiContainer?: boolean | undefined;
23962
+ name: string;
23963
+ };
23964
+ } & {
23965
+ pathParameters: {
23966
+ projectId: string;
23967
+ };
23968
+ } & {
23969
+ headers?: Partial<{
23970
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23971
+ }>;
23972
+ }, import("@mittwald/api-client-commons").Response<{
23973
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
23974
+ customerId?: string | undefined;
23975
+ licenceId: string;
23976
+ licenceKey: string;
23977
+ models: string[];
23978
+ name: string;
23979
+ projectId?: string | undefined;
23980
+ rateLimit: number;
23981
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
23982
+ [x: string]: unknown;
23983
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23984
+ [x: string]: unknown;
23985
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23986
+ [x: string]: unknown;
23987
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23988
+ [x: string]: unknown;
23989
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
23990
+ [x: string]: unknown;
23991
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
23992
+ [x: string]: unknown;
23993
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23994
+ data: {
23995
+ createWebuiContainer?: boolean | undefined;
23996
+ name: string;
23997
+ };
23998
+ } & {
23999
+ pathParameters: {
24000
+ projectId: string;
24001
+ };
24002
+ } & {
24003
+ headers?: Partial<{
24004
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24005
+ }>;
24006
+ }, import("@mittwald/api-client-commons").Response<{
24007
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24008
+ customerId?: string | undefined;
24009
+ licenceId: string;
24010
+ licenceKey: string;
24011
+ models: string[];
24012
+ name: string;
24013
+ projectId?: string | undefined;
24014
+ rateLimit: number;
24015
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
24016
+ [x: string]: unknown;
24017
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24018
+ [x: string]: unknown;
24019
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24020
+ [x: string]: unknown;
24021
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24022
+ [x: string]: unknown;
24023
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
24024
+ [x: string]: unknown;
24025
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
24026
+ [x: string]: unknown;
24027
+ }, 429, "application/json">>>;
24028
+ /** Get a licence of a project. */
24029
+ getLlmLicenceExperimental: (request: {
24030
+ projectId: string;
24031
+ licenceId: string;
24032
+ headers?: {
24033
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
24034
+ } | undefined;
24035
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
24036
+ headers?: Partial<{
24037
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24038
+ }>;
24039
+ } & {
24040
+ pathParameters: {
24041
+ projectId: string;
24042
+ licenceId: string;
24043
+ };
24044
+ }, import("@mittwald/api-client-commons").Response<{
24045
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24046
+ customerId?: string | undefined;
24047
+ licenceId: string;
24048
+ licenceKey: string;
24049
+ models: string[];
24050
+ name: string;
24051
+ projectId?: string | undefined;
24052
+ rateLimit: number;
24053
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24054
+ [x: string]: unknown;
24055
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24056
+ [x: string]: unknown;
24057
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24058
+ [x: string]: unknown;
24059
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24060
+ [x: string]: unknown;
24061
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
24062
+ headers?: Partial<{
24063
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24064
+ }>;
24065
+ } & {
24066
+ pathParameters: {
24067
+ projectId: string;
24068
+ licenceId: string;
24069
+ };
24070
+ }, import("@mittwald/api-client-commons").Response<{
24071
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24072
+ customerId?: string | undefined;
24073
+ licenceId: string;
24074
+ licenceKey: string;
24075
+ models: string[];
24076
+ name: string;
24077
+ projectId?: string | undefined;
24078
+ rateLimit: number;
24079
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24080
+ [x: string]: unknown;
24081
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24082
+ [x: string]: unknown;
24083
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24084
+ [x: string]: unknown;
24085
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24086
+ [x: string]: unknown;
24087
+ }, 429, "application/json">>>;
24088
+ /** Update a llm Licence for a project. */
24089
+ updateLlmLicenceExperimental: (request: {
24090
+ projectId: string;
24091
+ licenceId: string;
24092
+ data?: {
24093
+ createWebuiContainer?: boolean | undefined;
24094
+ name?: string | undefined;
24095
+ } | undefined;
24096
+ headers?: {
24097
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
24098
+ } | undefined;
24099
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
24100
+ data: {
24101
+ createWebuiContainer?: boolean | undefined;
24102
+ name?: string | undefined;
24103
+ };
24104
+ } & {
24105
+ pathParameters: {
24106
+ projectId: string;
24107
+ licenceId: string;
24108
+ };
24109
+ } & {
24110
+ headers?: Partial<{
24111
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24112
+ }>;
24113
+ }, import("@mittwald/api-client-commons").Response<{
24114
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24115
+ customerId?: string | undefined;
24116
+ licenceId: string;
24117
+ licenceKey: string;
24118
+ models: string[];
24119
+ name: string;
24120
+ projectId?: string | undefined;
24121
+ rateLimit: number;
24122
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24123
+ [x: string]: unknown;
24124
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24125
+ [x: string]: unknown;
24126
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24127
+ [x: string]: unknown;
24128
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24129
+ [x: string]: unknown;
24130
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
24131
+ [x: string]: unknown;
24132
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
24133
+ [x: string]: unknown;
24134
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
24135
+ data: {
24136
+ createWebuiContainer?: boolean | undefined;
24137
+ name?: string | undefined;
24138
+ };
24139
+ } & {
24140
+ pathParameters: {
24141
+ projectId: string;
24142
+ licenceId: string;
24143
+ };
24144
+ } & {
24145
+ headers?: Partial<{
24146
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24147
+ }>;
24148
+ }, import("@mittwald/api-client-commons").Response<{
24149
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24150
+ customerId?: string | undefined;
24151
+ licenceId: string;
24152
+ licenceKey: string;
24153
+ models: string[];
24154
+ name: string;
24155
+ projectId?: string | undefined;
24156
+ rateLimit: number;
24157
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24158
+ [x: string]: unknown;
24159
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24160
+ [x: string]: unknown;
24161
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24162
+ [x: string]: unknown;
24163
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24164
+ [x: string]: unknown;
24165
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
24166
+ [x: string]: unknown;
24167
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
24168
+ [x: string]: unknown;
24169
+ }, 429, "application/json">>>;
23910
24170
  };
23911
24171
  /** The filesystem API allows you to directly access the filesystem of your project. */
23912
24172
  readonly projectFileSystem: {
@@ -817,3 +817,13 @@ export declare const leadfyndrGetLeadFyndrProfile: OpenAPIOperation<RequestType<
817
817
  export declare const leadfyndrGetLeadFyndrProfileRequest: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
818
818
  /** Create a new access request for LeadFyndr. */
819
819
  export declare const leadfyndrCreateLeadFyndrAccessRequest: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
820
+ /** Get a list of currently active llm models. */
821
+ export declare const aihostingGetLlmModelsExperimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalLlmModels.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalLlmModels.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalLlmModels.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalLlmModels.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalLlmModels.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalLlmModels.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalLlmModels.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalLlmModels.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalLlmModels.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
822
+ /** Get a list of already created llm licences. */
823
+ export declare const projectGetLlmLicencesExperimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
824
+ /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
825
+ export declare const projectCreateLlmBetaLicenceExperimental: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicences.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
826
+ /** Get a licence of a project. */
827
+ export declare const projectGetLlmLicenceExperimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
828
+ /** Update a llm Licence for a project. */
829
+ export declare const projectUpdateLlmLicenceExperimental: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalProjectsProjectIdLlmLicencesLicenceId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1630,6 +1630,26 @@ export declare namespace MittwaldAPIV2 {
1630
1630
  type RequestData = InferredRequestData<typeof descriptors.leadfyndrCreateLeadFyndrAccessRequest>;
1631
1631
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrCreateLeadFyndrAccessRequest, TStatus>;
1632
1632
  }
1633
+ namespace AihostingGetLlmModelsExperimental {
1634
+ type RequestData = InferredRequestData<typeof descriptors.aihostingGetLlmModelsExperimental>;
1635
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aihostingGetLlmModelsExperimental, TStatus>;
1636
+ }
1637
+ namespace ProjectGetLlmLicencesExperimental {
1638
+ type RequestData = InferredRequestData<typeof descriptors.projectGetLlmLicencesExperimental>;
1639
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetLlmLicencesExperimental, TStatus>;
1640
+ }
1641
+ namespace ProjectCreateLlmBetaLicenceExperimental {
1642
+ type RequestData = InferredRequestData<typeof descriptors.projectCreateLlmBetaLicenceExperimental>;
1643
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectCreateLlmBetaLicenceExperimental, TStatus>;
1644
+ }
1645
+ namespace ProjectGetLlmLicenceExperimental {
1646
+ type RequestData = InferredRequestData<typeof descriptors.projectGetLlmLicenceExperimental>;
1647
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetLlmLicenceExperimental, TStatus>;
1648
+ }
1649
+ namespace ProjectUpdateLlmLicenceExperimental {
1650
+ type RequestData = InferredRequestData<typeof descriptors.projectUpdateLlmLicenceExperimental>;
1651
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectUpdateLlmLicenceExperimental, TStatus>;
1652
+ }
1633
1653
  }
1634
1654
  namespace Components {
1635
1655
  namespace Schemas {
@@ -5019,6 +5039,27 @@ export declare namespace MittwaldAPIV2 {
5019
5039
  name: string;
5020
5040
  value: string;
5021
5041
  }
5042
+ interface LlmlocksmithContainerMeta {
5043
+ containerId?: string;
5044
+ ingressId?: string;
5045
+ stackId?: string;
5046
+ status: "created" | "requested";
5047
+ }
5048
+ interface LlmlocksmithModel {
5049
+ displayName: string;
5050
+ docLink: string;
5051
+ name: string;
5052
+ }
5053
+ interface LlmlocksmithLicence {
5054
+ containerMeta?: MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta;
5055
+ customerId?: string;
5056
+ licenceId: string;
5057
+ licenceKey: string;
5058
+ models: string[];
5059
+ name: string;
5060
+ projectId?: string;
5061
+ rateLimit: number;
5062
+ }
5022
5063
  interface CommonsAddress {
5023
5064
  street: string;
5024
5065
  houseNumber: string;
@@ -25611,5 +25652,305 @@ export declare namespace MittwaldAPIV2 {
25611
25652
  }
25612
25653
  }
25613
25654
  }
25655
+ namespace V2LlmModels { }
25656
+ namespace V2ExperimentalLlmModels {
25657
+ namespace Get {
25658
+ namespace Parameters {
25659
+ type Path = {};
25660
+ type Header = {};
25661
+ type Query = {};
25662
+ }
25663
+ namespace Responses {
25664
+ namespace $200 {
25665
+ namespace Content {
25666
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[];
25667
+ }
25668
+ }
25669
+ namespace $400 {
25670
+ namespace Content {
25671
+ interface ApplicationJson {
25672
+ [k: string]: unknown;
25673
+ }
25674
+ }
25675
+ }
25676
+ namespace $403 {
25677
+ namespace Content {
25678
+ interface ApplicationJson {
25679
+ [k: string]: unknown;
25680
+ }
25681
+ }
25682
+ }
25683
+ namespace $404 {
25684
+ namespace Content {
25685
+ interface ApplicationJson {
25686
+ [k: string]: unknown;
25687
+ }
25688
+ }
25689
+ }
25690
+ namespace $429 {
25691
+ namespace Content {
25692
+ interface ApplicationJson {
25693
+ [k: string]: unknown;
25694
+ }
25695
+ }
25696
+ }
25697
+ namespace Default {
25698
+ namespace Content {
25699
+ interface ApplicationJson {
25700
+ [k: string]: unknown;
25701
+ }
25702
+ }
25703
+ }
25704
+ }
25705
+ }
25706
+ }
25707
+ namespace V2CustomersProjectsProjectIdLlmLicences { }
25708
+ namespace V2ExperimentalProjectsProjectIdLlmLicences {
25709
+ namespace Get {
25710
+ namespace Parameters {
25711
+ type Path = {
25712
+ projectId: string;
25713
+ };
25714
+ type Header = {};
25715
+ type Query = {};
25716
+ }
25717
+ namespace Responses {
25718
+ namespace $200 {
25719
+ namespace Content {
25720
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[];
25721
+ }
25722
+ }
25723
+ namespace $400 {
25724
+ namespace Content {
25725
+ interface ApplicationJson {
25726
+ [k: string]: unknown;
25727
+ }
25728
+ }
25729
+ }
25730
+ namespace $403 {
25731
+ namespace Content {
25732
+ interface ApplicationJson {
25733
+ [k: string]: unknown;
25734
+ }
25735
+ }
25736
+ }
25737
+ namespace $404 {
25738
+ namespace Content {
25739
+ interface ApplicationJson {
25740
+ [k: string]: unknown;
25741
+ }
25742
+ }
25743
+ }
25744
+ namespace $429 {
25745
+ namespace Content {
25746
+ interface ApplicationJson {
25747
+ [k: string]: unknown;
25748
+ }
25749
+ }
25750
+ }
25751
+ namespace Default {
25752
+ namespace Content {
25753
+ interface ApplicationJson {
25754
+ [k: string]: unknown;
25755
+ }
25756
+ }
25757
+ }
25758
+ }
25759
+ }
25760
+ namespace Post {
25761
+ namespace Parameters {
25762
+ type Path = {
25763
+ projectId: string;
25764
+ };
25765
+ interface RequestBody {
25766
+ createWebuiContainer?: boolean;
25767
+ name: string;
25768
+ }
25769
+ type Header = {};
25770
+ type Query = {};
25771
+ }
25772
+ namespace Responses {
25773
+ namespace $201 {
25774
+ namespace Content {
25775
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
25776
+ }
25777
+ }
25778
+ namespace $400 {
25779
+ namespace Content {
25780
+ interface ApplicationJson {
25781
+ [k: string]: unknown;
25782
+ }
25783
+ }
25784
+ }
25785
+ namespace $403 {
25786
+ namespace Content {
25787
+ interface ApplicationJson {
25788
+ [k: string]: unknown;
25789
+ }
25790
+ }
25791
+ }
25792
+ namespace $404 {
25793
+ namespace Content {
25794
+ interface ApplicationJson {
25795
+ [k: string]: unknown;
25796
+ }
25797
+ }
25798
+ }
25799
+ namespace $409 {
25800
+ namespace Content {
25801
+ interface ApplicationJson {
25802
+ [k: string]: unknown;
25803
+ }
25804
+ }
25805
+ }
25806
+ namespace $412 {
25807
+ namespace Content {
25808
+ interface ApplicationJson {
25809
+ [k: string]: unknown;
25810
+ }
25811
+ }
25812
+ }
25813
+ namespace $429 {
25814
+ namespace Content {
25815
+ interface ApplicationJson {
25816
+ [k: string]: unknown;
25817
+ }
25818
+ }
25819
+ }
25820
+ namespace Default {
25821
+ namespace Content {
25822
+ interface ApplicationJson {
25823
+ [k: string]: unknown;
25824
+ }
25825
+ }
25826
+ }
25827
+ }
25828
+ }
25829
+ }
25830
+ namespace V2ProjectsProjectIdLlmLicencesLicenceId { }
25831
+ namespace V2ExperimentalProjectsProjectIdLlmLicencesLicenceId {
25832
+ namespace Get {
25833
+ namespace Parameters {
25834
+ type Path = {
25835
+ projectId: string;
25836
+ licenceId: string;
25837
+ };
25838
+ type Header = {};
25839
+ type Query = {};
25840
+ }
25841
+ namespace Responses {
25842
+ namespace $200 {
25843
+ namespace Content {
25844
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
25845
+ }
25846
+ }
25847
+ namespace $400 {
25848
+ namespace Content {
25849
+ interface ApplicationJson {
25850
+ [k: string]: unknown;
25851
+ }
25852
+ }
25853
+ }
25854
+ namespace $403 {
25855
+ namespace Content {
25856
+ interface ApplicationJson {
25857
+ [k: string]: unknown;
25858
+ }
25859
+ }
25860
+ }
25861
+ namespace $404 {
25862
+ namespace Content {
25863
+ interface ApplicationJson {
25864
+ [k: string]: unknown;
25865
+ }
25866
+ }
25867
+ }
25868
+ namespace $429 {
25869
+ namespace Content {
25870
+ interface ApplicationJson {
25871
+ [k: string]: unknown;
25872
+ }
25873
+ }
25874
+ }
25875
+ namespace Default {
25876
+ namespace Content {
25877
+ interface ApplicationJson {
25878
+ [k: string]: unknown;
25879
+ }
25880
+ }
25881
+ }
25882
+ }
25883
+ }
25884
+ namespace Put {
25885
+ namespace Parameters {
25886
+ type Path = {
25887
+ projectId: string;
25888
+ licenceId: string;
25889
+ };
25890
+ interface RequestBody {
25891
+ createWebuiContainer?: boolean;
25892
+ name?: string;
25893
+ }
25894
+ type Header = {};
25895
+ type Query = {};
25896
+ }
25897
+ namespace Responses {
25898
+ namespace $200 {
25899
+ namespace Content {
25900
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
25901
+ }
25902
+ }
25903
+ namespace $400 {
25904
+ namespace Content {
25905
+ interface ApplicationJson {
25906
+ [k: string]: unknown;
25907
+ }
25908
+ }
25909
+ }
25910
+ namespace $403 {
25911
+ namespace Content {
25912
+ interface ApplicationJson {
25913
+ [k: string]: unknown;
25914
+ }
25915
+ }
25916
+ }
25917
+ namespace $404 {
25918
+ namespace Content {
25919
+ interface ApplicationJson {
25920
+ [k: string]: unknown;
25921
+ }
25922
+ }
25923
+ }
25924
+ namespace $409 {
25925
+ namespace Content {
25926
+ interface ApplicationJson {
25927
+ [k: string]: unknown;
25928
+ }
25929
+ }
25930
+ }
25931
+ namespace $412 {
25932
+ namespace Content {
25933
+ interface ApplicationJson {
25934
+ [k: string]: unknown;
25935
+ }
25936
+ }
25937
+ }
25938
+ namespace $429 {
25939
+ namespace Content {
25940
+ interface ApplicationJson {
25941
+ [k: string]: unknown;
25942
+ }
25943
+ }
25944
+ }
25945
+ namespace Default {
25946
+ namespace Content {
25947
+ interface ApplicationJson {
25948
+ [k: string]: unknown;
25949
+ }
25950
+ }
25951
+ }
25952
+ }
25953
+ }
25954
+ }
25614
25955
  }
25615
25956
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.170.0';
1
+ export declare const MittwaldAPIClientVersion = '4.171.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.171.0",
3
+ "version": "4.172.0",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "e12d723e056f06515b7ea860c896a1cff463d8cb"
83
+ "gitHead": "b69f8dfdfd0f88c87d07e46ffa081c84146783c6"
84
84
  }