@mittwald/api-client 4.171.0 → 4.173.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. */
@@ -399,6 +403,10 @@ const buildLeadFyndrApi = (baseClient) => ({
399
403
  /** Get your LeadFyndr request. */
400
404
  leadfyndrGetLeadFyndrProfileRequest: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfileRequest, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfileRequest).getApiResource,
401
405
  });
406
+ const buildMiscApi = (baseClient) => ({
407
+ /** Get a list of currently active llm models. */
408
+ getLlmModelsExperimental: new ApiCallAsyncResourceFactory(descriptors.miscGetLlmModelsExperimental, baseClient.misc.getLlmModelsExperimental).getApiResource,
409
+ });
402
410
  export class MittwaldAPIV2ClientReact {
403
411
  /** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
404
412
  app;
@@ -440,6 +448,8 @@ export class MittwaldAPIV2ClientReact {
440
448
  sshsftpUser;
441
449
  /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
442
450
  leadFyndr;
451
+ /** API endpoints that are not related to any specific API domain */
452
+ misc;
443
453
  constructor(baseClient) {
444
454
  this.app = buildAppApi(baseClient);
445
455
  this.article = buildArticleApi(baseClient);
@@ -461,6 +471,7 @@ export class MittwaldAPIV2ClientReact {
461
471
  this.projectFileSystem = buildProjectFileSystemApi(baseClient);
462
472
  this.sshsftpUser = buildSshsftpUserApi(baseClient);
463
473
  this.leadFyndr = buildLeadFyndrApi(baseClient);
474
+ this.misc = buildMiscApi(baseClient);
464
475
  }
465
476
  static fromBaseClient(baseClient) {
466
477
  return new MittwaldAPIV2ClientReact(baseClient);
@@ -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 = {
@@ -833,6 +841,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
833
841
  verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
834
842
  /** Check if a company exists. */
835
843
  verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
844
+ /** Get a list of currently active llm models. */
845
+ getLlmModelsExperimental: this.requestFunctionFactory(descriptors.miscGetLlmModelsExperimental),
836
846
  };
837
847
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
838
848
  sshsftpUser = {
@@ -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 already created llm licences. */
2444
+ export const projectGetLlmLicencesExperimental = {
2445
+ path: "/v2-experimental/projects/{projectId}/llm-licences",
2446
+ method: "GET",
2447
+ operationId: "project-get-llm-licences-experimental",
2448
+ };
2449
+ /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
2450
+ export const projectCreateLlmBetaLicenceExperimental = {
2451
+ path: "/v2-experimental/projects/{projectId}/llm-licences",
2452
+ method: "POST",
2453
+ operationId: "project-create-llm-beta-licence-experimental",
2454
+ };
2455
+ /** Get a licence of a project. */
2456
+ export const projectGetLlmLicenceExperimental = {
2457
+ path: "/v2-experimental/projects/{projectId}/llm-licences/{licenceId}",
2458
+ method: "GET",
2459
+ operationId: "project-get-llm-licence-experimental",
2460
+ };
2461
+ /** Update a llm Licence for a project. */
2462
+ export const projectUpdateLlmLicenceExperimental = {
2463
+ path: "/v2-experimental/projects/{projectId}/llm-licences/{licenceId}",
2464
+ method: "PUT",
2465
+ operationId: "project-update-llm-licence-experimental",
2466
+ };
2467
+ /** Get a list of currently active llm models. */
2468
+ export const miscGetLlmModelsExperimental = {
2469
+ path: "/v2-experimental/llm-models",
2470
+ method: "GET",
2471
+ operationId: "misc-get-llm-models-experimental",
2472
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.170.0';
1
+ export const MittwaldAPIClientVersion = '4.172.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. */
@@ -3046,6 +3070,14 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
3046
3070
  status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
3047
3071
  }>;
3048
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
+ };
3049
3081
  export declare class MittwaldAPIV2ClientReact {
3050
3082
  /** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
3051
3083
  readonly app: ReturnType<typeof buildAppApi>;
@@ -3087,6 +3119,8 @@ export declare class MittwaldAPIV2ClientReact {
3087
3119
  readonly sshsftpUser: ReturnType<typeof buildSshsftpUserApi>;
3088
3120
  /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
3089
3121
  readonly leadFyndr: ReturnType<typeof buildLeadFyndrApi>;
3122
+ /** API endpoints that are not related to any specific API domain */
3123
+ readonly misc: ReturnType<typeof buildMiscApi>;
3090
3124
  private constructor();
3091
3125
  static fromBaseClient(baseClient: MittwaldAPIV2Client): MittwaldAPIV2ClientReact;
3092
3126
  }
@@ -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: {
@@ -24662,6 +24922,36 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24662
24922
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
24663
24923
  [x: string]: unknown;
24664
24924
  }, 429, "application/json">>>;
24925
+ /** Get a list of currently active llm models. */
24926
+ getLlmModelsExperimental: (request?: {
24927
+ headers?: {
24928
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
24929
+ } | undefined;
24930
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
24931
+ headers?: Partial<{
24932
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24933
+ }>;
24934
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24935
+ [x: string]: unknown;
24936
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24937
+ [x: string]: unknown;
24938
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24939
+ [x: string]: unknown;
24940
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24941
+ [x: string]: unknown;
24942
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
24943
+ headers?: Partial<{
24944
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24945
+ }>;
24946
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24947
+ [x: string]: unknown;
24948
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24949
+ [x: string]: unknown;
24950
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24951
+ [x: string]: unknown;
24952
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24953
+ [x: string]: unknown;
24954
+ }, 429, "application/json">>>;
24665
24955
  };
24666
24956
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
24667
24957
  readonly sshsftpUser: {
@@ -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 already created llm licences. */
821
+ 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">>;
822
+ /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
823
+ 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">>;
824
+ /** Get a licence of a project. */
825
+ 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">>;
826
+ /** Update a llm Licence for a project. */
827
+ 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">>;
828
+ /** Get a list of currently active llm models. */
829
+ export declare const miscGetLlmModelsExperimental: 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">>;
@@ -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 ProjectGetLlmLicencesExperimental {
1634
+ type RequestData = InferredRequestData<typeof descriptors.projectGetLlmLicencesExperimental>;
1635
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetLlmLicencesExperimental, TStatus>;
1636
+ }
1637
+ namespace ProjectCreateLlmBetaLicenceExperimental {
1638
+ type RequestData = InferredRequestData<typeof descriptors.projectCreateLlmBetaLicenceExperimental>;
1639
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectCreateLlmBetaLicenceExperimental, TStatus>;
1640
+ }
1641
+ namespace ProjectGetLlmLicenceExperimental {
1642
+ type RequestData = InferredRequestData<typeof descriptors.projectGetLlmLicenceExperimental>;
1643
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetLlmLicenceExperimental, TStatus>;
1644
+ }
1645
+ namespace ProjectUpdateLlmLicenceExperimental {
1646
+ type RequestData = InferredRequestData<typeof descriptors.projectUpdateLlmLicenceExperimental>;
1647
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectUpdateLlmLicenceExperimental, TStatus>;
1648
+ }
1649
+ namespace MiscGetLlmModelsExperimental {
1650
+ type RequestData = InferredRequestData<typeof descriptors.miscGetLlmModelsExperimental>;
1651
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.miscGetLlmModelsExperimental, 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 LlmlocksmithLicence {
5043
+ containerMeta?: MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta;
5044
+ customerId?: string;
5045
+ licenceId: string;
5046
+ licenceKey: string;
5047
+ models: string[];
5048
+ name: string;
5049
+ projectId?: string;
5050
+ rateLimit: number;
5051
+ }
5052
+ interface LlmlocksmithContainerMeta {
5053
+ containerId?: string;
5054
+ ingressId?: string;
5055
+ stackId?: string;
5056
+ status: "created" | "requested";
5057
+ }
5058
+ interface LlmlocksmithModel {
5059
+ displayName: string;
5060
+ docLink: string;
5061
+ name: string;
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 V2CustomersProjectsProjectIdLlmLicences { }
25656
+ namespace V2ExperimentalProjectsProjectIdLlmLicences {
25657
+ namespace Get {
25658
+ namespace Parameters {
25659
+ type Path = {
25660
+ projectId: string;
25661
+ };
25662
+ type Header = {};
25663
+ type Query = {};
25664
+ }
25665
+ namespace Responses {
25666
+ namespace $200 {
25667
+ namespace Content {
25668
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[];
25669
+ }
25670
+ }
25671
+ namespace $400 {
25672
+ namespace Content {
25673
+ interface ApplicationJson {
25674
+ [k: string]: unknown;
25675
+ }
25676
+ }
25677
+ }
25678
+ namespace $403 {
25679
+ namespace Content {
25680
+ interface ApplicationJson {
25681
+ [k: string]: unknown;
25682
+ }
25683
+ }
25684
+ }
25685
+ namespace $404 {
25686
+ namespace Content {
25687
+ interface ApplicationJson {
25688
+ [k: string]: unknown;
25689
+ }
25690
+ }
25691
+ }
25692
+ namespace $429 {
25693
+ namespace Content {
25694
+ interface ApplicationJson {
25695
+ [k: string]: unknown;
25696
+ }
25697
+ }
25698
+ }
25699
+ namespace Default {
25700
+ namespace Content {
25701
+ interface ApplicationJson {
25702
+ [k: string]: unknown;
25703
+ }
25704
+ }
25705
+ }
25706
+ }
25707
+ }
25708
+ namespace Post {
25709
+ namespace Parameters {
25710
+ type Path = {
25711
+ projectId: string;
25712
+ };
25713
+ interface RequestBody {
25714
+ createWebuiContainer?: boolean;
25715
+ name: string;
25716
+ }
25717
+ type Header = {};
25718
+ type Query = {};
25719
+ }
25720
+ namespace Responses {
25721
+ namespace $201 {
25722
+ namespace Content {
25723
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
25724
+ }
25725
+ }
25726
+ namespace $400 {
25727
+ namespace Content {
25728
+ interface ApplicationJson {
25729
+ [k: string]: unknown;
25730
+ }
25731
+ }
25732
+ }
25733
+ namespace $403 {
25734
+ namespace Content {
25735
+ interface ApplicationJson {
25736
+ [k: string]: unknown;
25737
+ }
25738
+ }
25739
+ }
25740
+ namespace $404 {
25741
+ namespace Content {
25742
+ interface ApplicationJson {
25743
+ [k: string]: unknown;
25744
+ }
25745
+ }
25746
+ }
25747
+ namespace $409 {
25748
+ namespace Content {
25749
+ interface ApplicationJson {
25750
+ [k: string]: unknown;
25751
+ }
25752
+ }
25753
+ }
25754
+ namespace $412 {
25755
+ namespace Content {
25756
+ interface ApplicationJson {
25757
+ [k: string]: unknown;
25758
+ }
25759
+ }
25760
+ }
25761
+ namespace $429 {
25762
+ namespace Content {
25763
+ interface ApplicationJson {
25764
+ [k: string]: unknown;
25765
+ }
25766
+ }
25767
+ }
25768
+ namespace Default {
25769
+ namespace Content {
25770
+ interface ApplicationJson {
25771
+ [k: string]: unknown;
25772
+ }
25773
+ }
25774
+ }
25775
+ }
25776
+ }
25777
+ }
25778
+ namespace V2ProjectsProjectIdLlmLicencesLicenceId { }
25779
+ namespace V2ExperimentalProjectsProjectIdLlmLicencesLicenceId {
25780
+ namespace Get {
25781
+ namespace Parameters {
25782
+ type Path = {
25783
+ projectId: string;
25784
+ licenceId: string;
25785
+ };
25786
+ type Header = {};
25787
+ type Query = {};
25788
+ }
25789
+ namespace Responses {
25790
+ namespace $200 {
25791
+ namespace Content {
25792
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
25793
+ }
25794
+ }
25795
+ namespace $400 {
25796
+ namespace Content {
25797
+ interface ApplicationJson {
25798
+ [k: string]: unknown;
25799
+ }
25800
+ }
25801
+ }
25802
+ namespace $403 {
25803
+ namespace Content {
25804
+ interface ApplicationJson {
25805
+ [k: string]: unknown;
25806
+ }
25807
+ }
25808
+ }
25809
+ namespace $404 {
25810
+ namespace Content {
25811
+ interface ApplicationJson {
25812
+ [k: string]: unknown;
25813
+ }
25814
+ }
25815
+ }
25816
+ namespace $429 {
25817
+ namespace Content {
25818
+ interface ApplicationJson {
25819
+ [k: string]: unknown;
25820
+ }
25821
+ }
25822
+ }
25823
+ namespace Default {
25824
+ namespace Content {
25825
+ interface ApplicationJson {
25826
+ [k: string]: unknown;
25827
+ }
25828
+ }
25829
+ }
25830
+ }
25831
+ }
25832
+ namespace Put {
25833
+ namespace Parameters {
25834
+ type Path = {
25835
+ projectId: string;
25836
+ licenceId: string;
25837
+ };
25838
+ interface RequestBody {
25839
+ createWebuiContainer?: boolean;
25840
+ name?: string;
25841
+ }
25842
+ type Header = {};
25843
+ type Query = {};
25844
+ }
25845
+ namespace Responses {
25846
+ namespace $200 {
25847
+ namespace Content {
25848
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
25849
+ }
25850
+ }
25851
+ namespace $400 {
25852
+ namespace Content {
25853
+ interface ApplicationJson {
25854
+ [k: string]: unknown;
25855
+ }
25856
+ }
25857
+ }
25858
+ namespace $403 {
25859
+ namespace Content {
25860
+ interface ApplicationJson {
25861
+ [k: string]: unknown;
25862
+ }
25863
+ }
25864
+ }
25865
+ namespace $404 {
25866
+ namespace Content {
25867
+ interface ApplicationJson {
25868
+ [k: string]: unknown;
25869
+ }
25870
+ }
25871
+ }
25872
+ namespace $409 {
25873
+ namespace Content {
25874
+ interface ApplicationJson {
25875
+ [k: string]: unknown;
25876
+ }
25877
+ }
25878
+ }
25879
+ namespace $412 {
25880
+ namespace Content {
25881
+ interface ApplicationJson {
25882
+ [k: string]: unknown;
25883
+ }
25884
+ }
25885
+ }
25886
+ namespace $429 {
25887
+ namespace Content {
25888
+ interface ApplicationJson {
25889
+ [k: string]: unknown;
25890
+ }
25891
+ }
25892
+ }
25893
+ namespace Default {
25894
+ namespace Content {
25895
+ interface ApplicationJson {
25896
+ [k: string]: unknown;
25897
+ }
25898
+ }
25899
+ }
25900
+ }
25901
+ }
25902
+ }
25903
+ namespace V2LlmModels { }
25904
+ namespace V2ExperimentalLlmModels {
25905
+ namespace Get {
25906
+ namespace Parameters {
25907
+ type Path = {};
25908
+ type Header = {};
25909
+ type Query = {};
25910
+ }
25911
+ namespace Responses {
25912
+ namespace $200 {
25913
+ namespace Content {
25914
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[];
25915
+ }
25916
+ }
25917
+ namespace $400 {
25918
+ namespace Content {
25919
+ interface ApplicationJson {
25920
+ [k: string]: unknown;
25921
+ }
25922
+ }
25923
+ }
25924
+ namespace $403 {
25925
+ namespace Content {
25926
+ interface ApplicationJson {
25927
+ [k: string]: unknown;
25928
+ }
25929
+ }
25930
+ }
25931
+ namespace $404 {
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.172.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.173.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": "dcb4c2d4d7dd8779730addd3f35f9a86703abb6c"
84
84
  }