@mittwald/api-client 4.172.0 → 4.174.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.
@@ -403,6 +403,10 @@ const buildLeadFyndrApi = (baseClient) => ({
403
403
  /** Get your LeadFyndr request. */
404
404
  leadfyndrGetLeadFyndrProfileRequest: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfileRequest, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfileRequest).getApiResource,
405
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
+ });
406
410
  export class MittwaldAPIV2ClientReact {
407
411
  /** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
408
412
  app;
@@ -444,6 +448,8 @@ export class MittwaldAPIV2ClientReact {
444
448
  sshsftpUser;
445
449
  /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
446
450
  leadFyndr;
451
+ /** API endpoints that are not related to any specific API domain */
452
+ misc;
447
453
  constructor(baseClient) {
448
454
  this.app = buildAppApi(baseClient);
449
455
  this.article = buildArticleApi(baseClient);
@@ -465,6 +471,7 @@ export class MittwaldAPIV2ClientReact {
465
471
  this.projectFileSystem = buildProjectFileSystemApi(baseClient);
466
472
  this.sshsftpUser = buildSshsftpUserApi(baseClient);
467
473
  this.leadFyndr = buildLeadFyndrApi(baseClient);
474
+ this.misc = buildMiscApi(baseClient);
468
475
  }
469
476
  static fromBaseClient(baseClient) {
470
477
  return new MittwaldAPIV2ClientReact(baseClient);
@@ -841,6 +841,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
841
841
  verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
842
842
  /** Check if a company exists. */
843
843
  verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
844
+ /** Get a list of currently active llm models. */
845
+ getLlmModelsExperimental: this.requestFunctionFactory(descriptors.miscGetLlmModelsExperimental),
844
846
  };
845
847
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
846
848
  sshsftpUser = {
@@ -2440,12 +2440,6 @@ 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
2443
  /** Get a list of already created llm licences. */
2450
2444
  export const projectGetLlmLicencesExperimental = {
2451
2445
  path: "/v2-experimental/projects/{projectId}/llm-licences",
@@ -2470,3 +2464,9 @@ export const projectUpdateLlmLicenceExperimental = {
2470
2464
  method: "PUT",
2471
2465
  operationId: "project-update-llm-licence-experimental",
2472
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.171.0';
1
+ export const MittwaldAPIClientVersion = '4.173.0';
@@ -3070,6 +3070,14 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
3070
3070
  status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
3071
3071
  }>;
3072
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
+ };
3073
3081
  export declare class MittwaldAPIV2ClientReact {
3074
3082
  /** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
3075
3083
  readonly app: ReturnType<typeof buildAppApi>;
@@ -3111,6 +3119,8 @@ export declare class MittwaldAPIV2ClientReact {
3111
3119
  readonly sshsftpUser: ReturnType<typeof buildSshsftpUserApi>;
3112
3120
  /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
3113
3121
  readonly leadFyndr: ReturnType<typeof buildLeadFyndrApi>;
3122
+ /** API endpoints that are not related to any specific API domain */
3123
+ readonly misc: ReturnType<typeof buildMiscApi>;
3114
3124
  private constructor();
3115
3125
  static fromBaseClient(baseClient: MittwaldAPIV2Client): MittwaldAPIV2ClientReact;
3116
3126
  }
@@ -24922,6 +24922,36 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24922
24922
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
24923
24923
  [x: string]: unknown;
24924
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">>>;
24925
24955
  };
24926
24956
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
24927
24957
  readonly sshsftpUser: {
@@ -817,8 +817,6 @@ 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
820
  /** Get a list of already created llm licences. */
823
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">>;
824
822
  /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
@@ -827,3 +825,5 @@ export declare const projectCreateLlmBetaLicenceExperimental: OpenAPIOperation<R
827
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">>;
828
826
  /** Update a llm Licence for a project. */
829
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,10 +1630,6 @@ 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
1633
  namespace ProjectGetLlmLicencesExperimental {
1638
1634
  type RequestData = InferredRequestData<typeof descriptors.projectGetLlmLicencesExperimental>;
1639
1635
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetLlmLicencesExperimental, TStatus>;
@@ -1650,6 +1646,10 @@ export declare namespace MittwaldAPIV2 {
1650
1646
  type RequestData = InferredRequestData<typeof descriptors.projectUpdateLlmLicenceExperimental>;
1651
1647
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectUpdateLlmLicenceExperimental, TStatus>;
1652
1648
  }
1649
+ namespace MiscGetLlmModelsExperimental {
1650
+ type RequestData = InferredRequestData<typeof descriptors.miscGetLlmModelsExperimental>;
1651
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.miscGetLlmModelsExperimental, TStatus>;
1652
+ }
1653
1653
  }
1654
1654
  namespace Components {
1655
1655
  namespace Schemas {
@@ -5049,6 +5049,7 @@ export declare namespace MittwaldAPIV2 {
5049
5049
  displayName: string;
5050
5050
  docLink: string;
5051
5051
  name: string;
5052
+ termsOfServiceLink: string;
5052
5053
  }
5053
5054
  interface LlmlocksmithLicence {
5054
5055
  containerMeta?: MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta;
@@ -25652,58 +25653,6 @@ export declare namespace MittwaldAPIV2 {
25652
25653
  }
25653
25654
  }
25654
25655
  }
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
25656
  namespace V2CustomersProjectsProjectIdLlmLicences { }
25708
25657
  namespace V2ExperimentalProjectsProjectIdLlmLicences {
25709
25658
  namespace Get {
@@ -25952,5 +25901,57 @@ export declare namespace MittwaldAPIV2 {
25952
25901
  }
25953
25902
  }
25954
25903
  }
25904
+ namespace V2LlmModels { }
25905
+ namespace V2ExperimentalLlmModels {
25906
+ namespace Get {
25907
+ namespace Parameters {
25908
+ type Path = {};
25909
+ type Header = {};
25910
+ type Query = {};
25911
+ }
25912
+ namespace Responses {
25913
+ namespace $200 {
25914
+ namespace Content {
25915
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[];
25916
+ }
25917
+ }
25918
+ namespace $400 {
25919
+ namespace Content {
25920
+ interface ApplicationJson {
25921
+ [k: string]: unknown;
25922
+ }
25923
+ }
25924
+ }
25925
+ namespace $403 {
25926
+ namespace Content {
25927
+ interface ApplicationJson {
25928
+ [k: string]: unknown;
25929
+ }
25930
+ }
25931
+ }
25932
+ namespace $404 {
25933
+ namespace Content {
25934
+ interface ApplicationJson {
25935
+ [k: string]: unknown;
25936
+ }
25937
+ }
25938
+ }
25939
+ namespace $429 {
25940
+ namespace Content {
25941
+ interface ApplicationJson {
25942
+ [k: string]: unknown;
25943
+ }
25944
+ }
25945
+ }
25946
+ namespace Default {
25947
+ namespace Content {
25948
+ interface ApplicationJson {
25949
+ [k: string]: unknown;
25950
+ }
25951
+ }
25952
+ }
25953
+ }
25954
+ }
25955
+ }
25955
25956
  }
25956
25957
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.171.0';
1
+ export declare const MittwaldAPIClientVersion = '4.173.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.172.0",
3
+ "version": "4.174.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": "b69f8dfdfd0f88c87d07e46ffa081c84146783c6"
83
+ "gitHead": "5fd6264376ab24e40ca74743d052ef5d868cbddf"
84
84
  }