@mittwald/api-client 4.172.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.
- package/dist/esm/generated/v2/client-react.js +7 -0
- package/dist/esm/generated/v2/client.js +2 -0
- package/dist/esm/generated/v2/descriptors.js +6 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +10 -0
- package/dist/types/generated/v2/client.d.ts +30 -0
- package/dist/types/generated/v2/descriptors.d.ts +2 -2
- package/dist/types/generated/v2/types.d.ts +66 -66
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -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
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.172.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 {
|
|
@@ -5039,6 +5039,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5039
5039
|
name: string;
|
|
5040
5040
|
value: string;
|
|
5041
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
|
+
}
|
|
5042
5052
|
interface LlmlocksmithContainerMeta {
|
|
5043
5053
|
containerId?: string;
|
|
5044
5054
|
ingressId?: string;
|
|
@@ -5050,16 +5060,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5050
5060
|
docLink: string;
|
|
5051
5061
|
name: string;
|
|
5052
5062
|
}
|
|
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
|
-
}
|
|
5063
5063
|
interface CommonsAddress {
|
|
5064
5064
|
street: string;
|
|
5065
5065
|
houseNumber: string;
|
|
@@ -25652,58 +25652,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
25652
25652
|
}
|
|
25653
25653
|
}
|
|
25654
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
25655
|
namespace V2CustomersProjectsProjectIdLlmLicences { }
|
|
25708
25656
|
namespace V2ExperimentalProjectsProjectIdLlmLicences {
|
|
25709
25657
|
namespace Get {
|
|
@@ -25952,5 +25900,57 @@ export declare namespace MittwaldAPIV2 {
|
|
|
25952
25900
|
}
|
|
25953
25901
|
}
|
|
25954
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
|
+
}
|
|
25955
25955
|
}
|
|
25956
25956
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
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.
|
|
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": "
|
|
83
|
+
"gitHead": "dcb4c2d4d7dd8779730addd3f35f9a86703abb6c"
|
|
84
84
|
}
|