@mittwald/api-client 0.0.0-development-7e09328-20250710 → 0.0.0-development-bc8cbfe-20250710
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 +11 -0
- package/dist/esm/generated/v2/client.js +19 -9
- package/dist/esm/generated/v2/descriptors.js +30 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +34 -0
- package/dist/types/generated/v2/client.d.ts +418 -128
- package/dist/types/generated/v2/descriptors.d.ts +10 -0
- package/dist/types/generated/v2/types.d.ts +317 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -305,6 +305,10 @@ const buildMailApi = (baseClient) => ({
|
|
|
305
305
|
/** List Migrations belonging to a Project in customer center or mStudio. */
|
|
306
306
|
migrationListMigrations: new ApiCallAsyncResourceFactory(descriptors.mailMigrationListMigrations, baseClient.mail.migrationListMigrations).getApiResource,
|
|
307
307
|
});
|
|
308
|
+
const buildMiscApi = (baseClient) => ({
|
|
309
|
+
/** Get a list of currently active llm models. */
|
|
310
|
+
getLlmModelsExperimental: new ApiCallAsyncResourceFactory(descriptors.miscGetLlmModelsExperimental, baseClient.misc.getLlmModelsExperimental).getApiResource,
|
|
311
|
+
});
|
|
308
312
|
const buildNotificationApi = (baseClient) => ({
|
|
309
313
|
/** Getting the subscription status of the subscription. */
|
|
310
314
|
newsletterGetInfo: new ApiCallAsyncResourceFactory(descriptors.newsletterGetInfo, baseClient.notification.newsletterGetInfo).getApiResource,
|
|
@@ -356,6 +360,8 @@ const buildUserApi = (baseClient) => ({
|
|
|
356
360
|
supportCodeRequest: new ApiCallAsyncResourceFactory(descriptors.userSupportCodeRequest, baseClient.user.supportCodeRequest).getApiResource,
|
|
357
361
|
});
|
|
358
362
|
const buildProjectApi = (baseClient) => ({
|
|
363
|
+
/** Get a list of already created llm licences. */
|
|
364
|
+
getLlmLicencesExperimental: new ApiCallAsyncResourceFactory(descriptors.projectGetLlmLicencesExperimental, baseClient.project.getLlmLicencesExperimental).getApiResource,
|
|
359
365
|
/** List Invites belonging to a Project. */
|
|
360
366
|
listInvitesForProject: new ApiCallAsyncResourceFactory(descriptors.projectListInvitesForProject, baseClient.project.listInvitesForProject).getApiResource,
|
|
361
367
|
/** Get a ProjectInvite. */
|
|
@@ -364,6 +370,8 @@ const buildProjectApi = (baseClient) => ({
|
|
|
364
370
|
getProjectMembership: new ApiCallAsyncResourceFactory(descriptors.projectGetProjectMembership, baseClient.project.getProjectMembership).getApiResource,
|
|
365
371
|
/** Get a Project. */
|
|
366
372
|
getProject: new ApiCallAsyncResourceFactory(descriptors.projectGetProject, baseClient.project.getProject).getApiResource,
|
|
373
|
+
/** Get a licence of a project. */
|
|
374
|
+
getLlmLicenceExperimental: new ApiCallAsyncResourceFactory(descriptors.projectGetLlmLicenceExperimental, baseClient.project.getLlmLicenceExperimental).getApiResource,
|
|
367
375
|
/** Get a ProjectInvite by token. */
|
|
368
376
|
getProjectTokenInvite: new ApiCallAsyncResourceFactory(descriptors.projectGetProjectTokenInvite, baseClient.project.getProjectTokenInvite).getApiResource,
|
|
369
377
|
/** Get the executing user's membership in a Project. */
|
|
@@ -436,6 +444,8 @@ export class MittwaldAPIV2ClientReact {
|
|
|
436
444
|
leadFyndr;
|
|
437
445
|
/** The mail API allows you to manage your mail accounts. */
|
|
438
446
|
mail;
|
|
447
|
+
/** API endpoints that are not related to any specific API domain */
|
|
448
|
+
misc;
|
|
439
449
|
/** The notification API allows you to manage your notifications. */
|
|
440
450
|
notification;
|
|
441
451
|
/** The page insights API allows you to get page insights information. */
|
|
@@ -463,6 +473,7 @@ export class MittwaldAPIV2ClientReact {
|
|
|
463
473
|
this.file = buildFileApi(baseClient);
|
|
464
474
|
this.leadFyndr = buildLeadFyndrApi(baseClient);
|
|
465
475
|
this.mail = buildMailApi(baseClient);
|
|
476
|
+
this.misc = buildMiscApi(baseClient);
|
|
466
477
|
this.notification = buildNotificationApi(baseClient);
|
|
467
478
|
this.pageInsights = buildPageInsightsApi(baseClient);
|
|
468
479
|
this.user = buildUserApi(baseClient);
|
|
@@ -770,6 +770,17 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
770
770
|
/** Removes a reservation on a unlocked lead for the given customerId. */
|
|
771
771
|
leadfyndrRemoveUnlockedLeadReservation: this.requestFunctionFactory(descriptors.leadfyndrRemoveUnlockedLeadReservation),
|
|
772
772
|
};
|
|
773
|
+
/** API endpoints that are not related to any specific API domain */
|
|
774
|
+
misc = {
|
|
775
|
+
/** Get a list of currently active llm models. */
|
|
776
|
+
getLlmModelsExperimental: this.requestFunctionFactory(descriptors.miscGetLlmModelsExperimental),
|
|
777
|
+
/** Check if an email is from mittwald. */
|
|
778
|
+
verificationDetectPhishingEmail: this.requestFunctionFactory(descriptors.verificationDetectPhishingEmail),
|
|
779
|
+
/** Check if an address exists. */
|
|
780
|
+
verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
|
|
781
|
+
/** Check if a company exists. */
|
|
782
|
+
verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
|
|
783
|
+
};
|
|
773
784
|
/** The page insights API allows you to get page insights information. */
|
|
774
785
|
pageInsights = {
|
|
775
786
|
/** Get detailed performance data for a given domain and path. */
|
|
@@ -785,6 +796,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
785
796
|
project = {
|
|
786
797
|
/** Accept a ProjectInvite. */
|
|
787
798
|
acceptProjectInvite: this.requestFunctionFactory(descriptors.projectAcceptProjectInvite),
|
|
799
|
+
/** Get a list of already created llm licences. */
|
|
800
|
+
getLlmLicencesExperimental: this.requestFunctionFactory(descriptors.projectGetLlmLicencesExperimental),
|
|
801
|
+
/** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
|
|
802
|
+
createLlmBetaLicenceExperimental: this.requestFunctionFactory(descriptors.projectCreateLlmBetaLicenceExperimental),
|
|
788
803
|
/** List Invites belonging to a Project. */
|
|
789
804
|
listInvitesForProject: this.requestFunctionFactory(descriptors.projectListInvitesForProject),
|
|
790
805
|
/** Create a ProjectInvite. */
|
|
@@ -815,6 +830,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
815
830
|
requestServerAvatarUpload: this.requestFunctionFactory(descriptors.projectRequestServerAvatarUpload),
|
|
816
831
|
/** Delete a Server's avatar. */
|
|
817
832
|
deleteServerAvatar: this.requestFunctionFactory(descriptors.projectDeleteServerAvatar),
|
|
833
|
+
/** Get a licence of a project. */
|
|
834
|
+
getLlmLicenceExperimental: this.requestFunctionFactory(descriptors.projectGetLlmLicenceExperimental),
|
|
835
|
+
/** Update a llm Licence for a project. */
|
|
836
|
+
updateLlmLicenceExperimental: this.requestFunctionFactory(descriptors.projectUpdateLlmLicenceExperimental),
|
|
818
837
|
/** Get a ProjectInvite by token. */
|
|
819
838
|
getProjectTokenInvite: this.requestFunctionFactory(descriptors.projectGetProjectTokenInvite),
|
|
820
839
|
/** Get the executing user's membership in a Project. */
|
|
@@ -889,14 +908,5 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
889
908
|
/** Update an SSHUser. */
|
|
890
909
|
sshUserUpdateSshUser: this.requestFunctionFactory(descriptors.sshUserUpdateSshUser),
|
|
891
910
|
};
|
|
892
|
-
/** API endpoints that are not related to any specific API domain */
|
|
893
|
-
misc = {
|
|
894
|
-
/** Check if an email is from mittwald. */
|
|
895
|
-
verificationDetectPhishingEmail: this.requestFunctionFactory(descriptors.verificationDetectPhishingEmail),
|
|
896
|
-
/** Check if an address exists. */
|
|
897
|
-
verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
|
|
898
|
-
/** Check if a company exists. */
|
|
899
|
-
verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
|
|
900
|
-
};
|
|
901
911
|
}
|
|
902
912
|
export default MittwaldAPIV2Client;
|
|
@@ -1690,6 +1690,12 @@ export const marketplaceCustomerUpdatePaymentMethod = {
|
|
|
1690
1690
|
method: "PUT",
|
|
1691
1691
|
operationId: "marketplace-customer-update-payment-method",
|
|
1692
1692
|
};
|
|
1693
|
+
/** Get a list of currently active llm models. */
|
|
1694
|
+
export const miscGetLlmModelsExperimental = {
|
|
1695
|
+
path: "/v2/llm-models",
|
|
1696
|
+
method: "GET",
|
|
1697
|
+
operationId: "misc-get-llm-models-experimental",
|
|
1698
|
+
};
|
|
1693
1699
|
/** Getting the subscription status of the subscription. */
|
|
1694
1700
|
export const newsletterGetInfo = {
|
|
1695
1701
|
path: "/v2/newsletter-subscriptions/self",
|
|
@@ -1810,6 +1816,18 @@ export const projectAcceptProjectInvite = {
|
|
|
1810
1816
|
method: "POST",
|
|
1811
1817
|
operationId: "project-accept-project-invite",
|
|
1812
1818
|
};
|
|
1819
|
+
/** Get a list of already created llm licences. */
|
|
1820
|
+
export const projectGetLlmLicencesExperimental = {
|
|
1821
|
+
path: "/v2/projects/{projectId}/llm-licences",
|
|
1822
|
+
method: "GET",
|
|
1823
|
+
operationId: "project-get-llm-licences-experimental",
|
|
1824
|
+
};
|
|
1825
|
+
/** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
|
|
1826
|
+
export const projectCreateLlmBetaLicenceExperimental = {
|
|
1827
|
+
path: "/v2/projects/{projectId}/llm-licences",
|
|
1828
|
+
method: "POST",
|
|
1829
|
+
operationId: "project-create-llm-beta-licence-experimental",
|
|
1830
|
+
};
|
|
1813
1831
|
/** List Invites belonging to a Project. */
|
|
1814
1832
|
export const projectListInvitesForProject = {
|
|
1815
1833
|
path: "/v2/projects/{projectId}/invites",
|
|
@@ -1930,6 +1948,18 @@ export const projectFileSystemListFiles = {
|
|
|
1930
1948
|
method: "GET",
|
|
1931
1949
|
operationId: "project-file-system-list-files",
|
|
1932
1950
|
};
|
|
1951
|
+
/** Get a licence of a project. */
|
|
1952
|
+
export const projectGetLlmLicenceExperimental = {
|
|
1953
|
+
path: "/v2/projects/{projectId}/llm-licences/{licenceId}",
|
|
1954
|
+
method: "GET",
|
|
1955
|
+
operationId: "project-get-llm-licence-experimental",
|
|
1956
|
+
};
|
|
1957
|
+
/** Update a llm Licence for a project. */
|
|
1958
|
+
export const projectUpdateLlmLicenceExperimental = {
|
|
1959
|
+
path: "/v2/projects/{projectId}/llm-licences/{licenceId}",
|
|
1960
|
+
method: "PUT",
|
|
1961
|
+
operationId: "project-update-llm-licence-experimental",
|
|
1962
|
+
};
|
|
1933
1963
|
/** Get a ProjectInvite by token. */
|
|
1934
1964
|
export const projectGetProjectTokenInvite = {
|
|
1935
1965
|
path: "/v2/project-token-invite",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '
|
|
1
|
+
export const MittwaldAPIClientVersion = '0.0.0-development-7e09328-20250710';
|
|
@@ -2348,6 +2348,14 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2348
2348
|
} | undefined;
|
|
2349
2349
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailmigrationMigration[]>;
|
|
2350
2350
|
};
|
|
2351
|
+
declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
|
|
2352
|
+
/** Get a list of currently active llm models. */
|
|
2353
|
+
getLlmModelsExperimental: (conf?: {
|
|
2354
|
+
headers?: {
|
|
2355
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2356
|
+
} | undefined;
|
|
2357
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[]>;
|
|
2358
|
+
};
|
|
2351
2359
|
declare const buildNotificationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
2352
2360
|
/** Getting the subscription status of the subscription. */
|
|
2353
2361
|
newsletterGetInfo: (conf?: {
|
|
@@ -2667,6 +2675,13 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2667
2675
|
}>;
|
|
2668
2676
|
};
|
|
2669
2677
|
declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
2678
|
+
/** Get a list of already created llm licences. */
|
|
2679
|
+
getLlmLicencesExperimental: (conf: {
|
|
2680
|
+
projectId: string;
|
|
2681
|
+
headers?: {
|
|
2682
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2683
|
+
} | undefined;
|
|
2684
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[]>;
|
|
2670
2685
|
/** List Invites belonging to a Project. */
|
|
2671
2686
|
listInvitesForProject: (conf: {
|
|
2672
2687
|
projectId: string;
|
|
@@ -2757,6 +2772,23 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2757
2772
|
webStorageUsageInBytes: number;
|
|
2758
2773
|
webStorageUsageInBytesSetAt: string;
|
|
2759
2774
|
}>;
|
|
2775
|
+
/** Get a licence of a project. */
|
|
2776
|
+
getLlmLicenceExperimental: (conf: {
|
|
2777
|
+
projectId: string;
|
|
2778
|
+
licenceId: string;
|
|
2779
|
+
headers?: {
|
|
2780
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2781
|
+
} | undefined;
|
|
2782
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2783
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
|
|
2784
|
+
customerId?: string | undefined;
|
|
2785
|
+
licenceId: string;
|
|
2786
|
+
licenceKey: string;
|
|
2787
|
+
models: string[];
|
|
2788
|
+
name: string;
|
|
2789
|
+
projectId?: string | undefined;
|
|
2790
|
+
rateLimit: number;
|
|
2791
|
+
}>;
|
|
2760
2792
|
/** Get a ProjectInvite by token. */
|
|
2761
2793
|
getProjectTokenInvite: (conf: {
|
|
2762
2794
|
headers: {
|
|
@@ -3142,6 +3174,8 @@ export declare class MittwaldAPIV2ClientReact {
|
|
|
3142
3174
|
readonly leadFyndr: ReturnType<typeof buildLeadFyndrApi>;
|
|
3143
3175
|
/** The mail API allows you to manage your mail accounts. */
|
|
3144
3176
|
readonly mail: ReturnType<typeof buildMailApi>;
|
|
3177
|
+
/** API endpoints that are not related to any specific API domain */
|
|
3178
|
+
readonly misc: ReturnType<typeof buildMiscApi>;
|
|
3145
3179
|
/** The notification API allows you to manage your notifications. */
|
|
3146
3180
|
readonly notification: ReturnType<typeof buildNotificationApi>;
|
|
3147
3181
|
/** The page insights API allows you to get page insights information. */
|
|
@@ -22905,6 +22905,164 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22905
22905
|
[x: string]: unknown;
|
|
22906
22906
|
}, 429, "application/json">>>;
|
|
22907
22907
|
};
|
|
22908
|
+
/** API endpoints that are not related to any specific API domain */
|
|
22909
|
+
readonly misc: {
|
|
22910
|
+
/** Get a list of currently active llm models. */
|
|
22911
|
+
getLlmModelsExperimental: (request?: {
|
|
22912
|
+
headers?: {
|
|
22913
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22914
|
+
} | undefined;
|
|
22915
|
+
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22916
|
+
headers?: Partial<{
|
|
22917
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22918
|
+
}>;
|
|
22919
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22920
|
+
[x: string]: unknown;
|
|
22921
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22922
|
+
[x: string]: unknown;
|
|
22923
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22924
|
+
[x: string]: unknown;
|
|
22925
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22926
|
+
[x: string]: unknown;
|
|
22927
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22928
|
+
headers?: Partial<{
|
|
22929
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22930
|
+
}>;
|
|
22931
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22932
|
+
[x: string]: unknown;
|
|
22933
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22934
|
+
[x: string]: unknown;
|
|
22935
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22936
|
+
[x: string]: unknown;
|
|
22937
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22938
|
+
[x: string]: unknown;
|
|
22939
|
+
}, 429, "application/json">>>;
|
|
22940
|
+
/** Check if an email is from mittwald. */
|
|
22941
|
+
verificationDetectPhishingEmail: (request?: {
|
|
22942
|
+
data?: {
|
|
22943
|
+
[x: string]: unknown;
|
|
22944
|
+
} | undefined;
|
|
22945
|
+
headers?: {
|
|
22946
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22947
|
+
} | undefined;
|
|
22948
|
+
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22949
|
+
data: {
|
|
22950
|
+
[x: string]: unknown;
|
|
22951
|
+
};
|
|
22952
|
+
} & {
|
|
22953
|
+
headers?: Partial<{
|
|
22954
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22955
|
+
}>;
|
|
22956
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
22957
|
+
result: import("./types.js").MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
|
|
22958
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22959
|
+
[x: string]: unknown;
|
|
22960
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22961
|
+
[x: string]: unknown;
|
|
22962
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22963
|
+
data: {
|
|
22964
|
+
[x: string]: unknown;
|
|
22965
|
+
};
|
|
22966
|
+
} & {
|
|
22967
|
+
headers?: Partial<{
|
|
22968
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22969
|
+
}>;
|
|
22970
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
22971
|
+
result: import("./types.js").MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
|
|
22972
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22973
|
+
[x: string]: unknown;
|
|
22974
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22975
|
+
[x: string]: unknown;
|
|
22976
|
+
}, 429, "application/json">>>;
|
|
22977
|
+
/** Check if an address exists. */
|
|
22978
|
+
verificationVerifyAddress: (request: {
|
|
22979
|
+
data: {
|
|
22980
|
+
city: string;
|
|
22981
|
+
country: string;
|
|
22982
|
+
street: string;
|
|
22983
|
+
zip: string;
|
|
22984
|
+
};
|
|
22985
|
+
headers?: {
|
|
22986
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22987
|
+
} | undefined;
|
|
22988
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22989
|
+
data: {
|
|
22990
|
+
city: string;
|
|
22991
|
+
country: string;
|
|
22992
|
+
street: string;
|
|
22993
|
+
zip: string;
|
|
22994
|
+
};
|
|
22995
|
+
} & {
|
|
22996
|
+
headers?: Partial<{
|
|
22997
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22998
|
+
}>;
|
|
22999
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
23000
|
+
exists: boolean;
|
|
23001
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23002
|
+
[x: string]: unknown;
|
|
23003
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23004
|
+
data: {
|
|
23005
|
+
city: string;
|
|
23006
|
+
country: string;
|
|
23007
|
+
street: string;
|
|
23008
|
+
zip: string;
|
|
23009
|
+
};
|
|
23010
|
+
} & {
|
|
23011
|
+
headers?: Partial<{
|
|
23012
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23013
|
+
}>;
|
|
23014
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
23015
|
+
exists: boolean;
|
|
23016
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23017
|
+
[x: string]: unknown;
|
|
23018
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>>;
|
|
23019
|
+
/** Check if a company exists. */
|
|
23020
|
+
verificationVerifyCompany: (request: {
|
|
23021
|
+
data: {
|
|
23022
|
+
name: string;
|
|
23023
|
+
};
|
|
23024
|
+
headers?: {
|
|
23025
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
23026
|
+
"x-access-token"?: string | undefined;
|
|
23027
|
+
} | undefined;
|
|
23028
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23029
|
+
data: {
|
|
23030
|
+
name: string;
|
|
23031
|
+
};
|
|
23032
|
+
} & {
|
|
23033
|
+
headers?: Partial<{
|
|
23034
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23035
|
+
}>;
|
|
23036
|
+
} & {
|
|
23037
|
+
headers: {
|
|
23038
|
+
"x-access-token"?: string | undefined;
|
|
23039
|
+
} & Partial<{
|
|
23040
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23041
|
+
}>;
|
|
23042
|
+
}, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
23043
|
+
exists: boolean;
|
|
23044
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
23045
|
+
[x: string]: unknown;
|
|
23046
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23047
|
+
data: {
|
|
23048
|
+
name: string;
|
|
23049
|
+
};
|
|
23050
|
+
} & {
|
|
23051
|
+
headers?: Partial<{
|
|
23052
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23053
|
+
}>;
|
|
23054
|
+
} & {
|
|
23055
|
+
headers: {
|
|
23056
|
+
"x-access-token"?: string | undefined;
|
|
23057
|
+
} & Partial<{
|
|
23058
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23059
|
+
}>;
|
|
23060
|
+
}, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
23061
|
+
exists: boolean;
|
|
23062
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
23063
|
+
[x: string]: unknown;
|
|
23064
|
+
}, 429, "application/json">>>;
|
|
23065
|
+
};
|
|
22908
23066
|
/** The page insights API allows you to get page insights information. */
|
|
22909
23067
|
readonly pageInsights: {
|
|
22910
23068
|
/** Get detailed performance data for a given domain and path. */
|
|
@@ -23268,6 +23426,124 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23268
23426
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23269
23427
|
[x: string]: unknown;
|
|
23270
23428
|
}, 429, "application/json">>>;
|
|
23429
|
+
/** Get a list of already created llm licences. */
|
|
23430
|
+
getLlmLicencesExperimental: (request: {
|
|
23431
|
+
projectId: string;
|
|
23432
|
+
headers?: {
|
|
23433
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
23434
|
+
} | undefined;
|
|
23435
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23436
|
+
headers?: Partial<{
|
|
23437
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23438
|
+
}>;
|
|
23439
|
+
} & {
|
|
23440
|
+
pathParameters: {
|
|
23441
|
+
projectId: string;
|
|
23442
|
+
};
|
|
23443
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23444
|
+
[x: string]: unknown;
|
|
23445
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23446
|
+
[x: string]: unknown;
|
|
23447
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23448
|
+
[x: string]: unknown;
|
|
23449
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23450
|
+
[x: string]: unknown;
|
|
23451
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23452
|
+
headers?: Partial<{
|
|
23453
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23454
|
+
}>;
|
|
23455
|
+
} & {
|
|
23456
|
+
pathParameters: {
|
|
23457
|
+
projectId: string;
|
|
23458
|
+
};
|
|
23459
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23460
|
+
[x: string]: unknown;
|
|
23461
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23462
|
+
[x: string]: unknown;
|
|
23463
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23464
|
+
[x: string]: unknown;
|
|
23465
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23466
|
+
[x: string]: unknown;
|
|
23467
|
+
}, 429, "application/json">>>;
|
|
23468
|
+
/** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
|
|
23469
|
+
createLlmBetaLicenceExperimental: (request: {
|
|
23470
|
+
data: {
|
|
23471
|
+
name: string;
|
|
23472
|
+
createWebuiContainer?: boolean | undefined;
|
|
23473
|
+
};
|
|
23474
|
+
projectId: string;
|
|
23475
|
+
headers?: {
|
|
23476
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
23477
|
+
} | undefined;
|
|
23478
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23479
|
+
data: {
|
|
23480
|
+
createWebuiContainer?: boolean | undefined;
|
|
23481
|
+
name: string;
|
|
23482
|
+
};
|
|
23483
|
+
} & {
|
|
23484
|
+
pathParameters: {
|
|
23485
|
+
projectId: string;
|
|
23486
|
+
};
|
|
23487
|
+
} & {
|
|
23488
|
+
headers?: Partial<{
|
|
23489
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23490
|
+
}>;
|
|
23491
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
23492
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
|
|
23493
|
+
customerId?: string | undefined;
|
|
23494
|
+
licenceId: string;
|
|
23495
|
+
licenceKey: string;
|
|
23496
|
+
models: string[];
|
|
23497
|
+
name: string;
|
|
23498
|
+
projectId?: string | undefined;
|
|
23499
|
+
rateLimit: number;
|
|
23500
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23501
|
+
[x: string]: unknown;
|
|
23502
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23503
|
+
[x: string]: unknown;
|
|
23504
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23505
|
+
[x: string]: unknown;
|
|
23506
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23507
|
+
[x: string]: unknown;
|
|
23508
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23509
|
+
[x: string]: unknown;
|
|
23510
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23511
|
+
[x: string]: unknown;
|
|
23512
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
23513
|
+
data: {
|
|
23514
|
+
createWebuiContainer?: boolean | undefined;
|
|
23515
|
+
name: string;
|
|
23516
|
+
};
|
|
23517
|
+
} & {
|
|
23518
|
+
pathParameters: {
|
|
23519
|
+
projectId: string;
|
|
23520
|
+
};
|
|
23521
|
+
} & {
|
|
23522
|
+
headers?: Partial<{
|
|
23523
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
23524
|
+
}>;
|
|
23525
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
23526
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
|
|
23527
|
+
customerId?: string | undefined;
|
|
23528
|
+
licenceId: string;
|
|
23529
|
+
licenceKey: string;
|
|
23530
|
+
models: string[];
|
|
23531
|
+
name: string;
|
|
23532
|
+
projectId?: string | undefined;
|
|
23533
|
+
rateLimit: number;
|
|
23534
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23535
|
+
[x: string]: unknown;
|
|
23536
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23537
|
+
[x: string]: unknown;
|
|
23538
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23539
|
+
[x: string]: unknown;
|
|
23540
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23541
|
+
[x: string]: unknown;
|
|
23542
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23543
|
+
[x: string]: unknown;
|
|
23544
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23545
|
+
[x: string]: unknown;
|
|
23546
|
+
}, 429, "application/json">>>;
|
|
23271
23547
|
/** List Invites belonging to a Project. */
|
|
23272
23548
|
listInvitesForProject: (request: {
|
|
23273
23549
|
projectId: string;
|
|
@@ -24158,6 +24434,148 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24158
24434
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24159
24435
|
[x: string]: unknown;
|
|
24160
24436
|
}, 429, "application/json">>>;
|
|
24437
|
+
/** Get a licence of a project. */
|
|
24438
|
+
getLlmLicenceExperimental: (request: {
|
|
24439
|
+
projectId: string;
|
|
24440
|
+
licenceId: string;
|
|
24441
|
+
headers?: {
|
|
24442
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
24443
|
+
} | undefined;
|
|
24444
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24445
|
+
headers?: Partial<{
|
|
24446
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24447
|
+
}>;
|
|
24448
|
+
} & {
|
|
24449
|
+
pathParameters: {
|
|
24450
|
+
projectId: string;
|
|
24451
|
+
licenceId: string;
|
|
24452
|
+
};
|
|
24453
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
24454
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
|
|
24455
|
+
customerId?: string | undefined;
|
|
24456
|
+
licenceId: string;
|
|
24457
|
+
licenceKey: string;
|
|
24458
|
+
models: string[];
|
|
24459
|
+
name: string;
|
|
24460
|
+
projectId?: string | undefined;
|
|
24461
|
+
rateLimit: number;
|
|
24462
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24463
|
+
[x: string]: unknown;
|
|
24464
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24465
|
+
[x: string]: unknown;
|
|
24466
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24467
|
+
[x: string]: unknown;
|
|
24468
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24469
|
+
[x: string]: unknown;
|
|
24470
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24471
|
+
headers?: Partial<{
|
|
24472
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24473
|
+
}>;
|
|
24474
|
+
} & {
|
|
24475
|
+
pathParameters: {
|
|
24476
|
+
projectId: string;
|
|
24477
|
+
licenceId: string;
|
|
24478
|
+
};
|
|
24479
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
24480
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
|
|
24481
|
+
customerId?: string | undefined;
|
|
24482
|
+
licenceId: string;
|
|
24483
|
+
licenceKey: string;
|
|
24484
|
+
models: string[];
|
|
24485
|
+
name: string;
|
|
24486
|
+
projectId?: string | undefined;
|
|
24487
|
+
rateLimit: number;
|
|
24488
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24489
|
+
[x: string]: unknown;
|
|
24490
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24491
|
+
[x: string]: unknown;
|
|
24492
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24493
|
+
[x: string]: unknown;
|
|
24494
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24495
|
+
[x: string]: unknown;
|
|
24496
|
+
}, 429, "application/json">>>;
|
|
24497
|
+
/** Update a llm Licence for a project. */
|
|
24498
|
+
updateLlmLicenceExperimental: (request: {
|
|
24499
|
+
projectId: string;
|
|
24500
|
+
licenceId: string;
|
|
24501
|
+
data?: {
|
|
24502
|
+
createWebuiContainer?: boolean | undefined;
|
|
24503
|
+
name?: string | undefined;
|
|
24504
|
+
} | undefined;
|
|
24505
|
+
headers?: {
|
|
24506
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
24507
|
+
} | undefined;
|
|
24508
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24509
|
+
data: {
|
|
24510
|
+
createWebuiContainer?: boolean | undefined;
|
|
24511
|
+
name?: string | undefined;
|
|
24512
|
+
};
|
|
24513
|
+
} & {
|
|
24514
|
+
pathParameters: {
|
|
24515
|
+
projectId: string;
|
|
24516
|
+
licenceId: string;
|
|
24517
|
+
};
|
|
24518
|
+
} & {
|
|
24519
|
+
headers?: Partial<{
|
|
24520
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24521
|
+
}>;
|
|
24522
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
24523
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
|
|
24524
|
+
customerId?: string | undefined;
|
|
24525
|
+
licenceId: string;
|
|
24526
|
+
licenceKey: string;
|
|
24527
|
+
models: string[];
|
|
24528
|
+
name: string;
|
|
24529
|
+
projectId?: string | undefined;
|
|
24530
|
+
rateLimit: number;
|
|
24531
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24532
|
+
[x: string]: unknown;
|
|
24533
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24534
|
+
[x: string]: unknown;
|
|
24535
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24536
|
+
[x: string]: unknown;
|
|
24537
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24538
|
+
[x: string]: unknown;
|
|
24539
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24540
|
+
[x: string]: unknown;
|
|
24541
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24542
|
+
[x: string]: unknown;
|
|
24543
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24544
|
+
data: {
|
|
24545
|
+
createWebuiContainer?: boolean | undefined;
|
|
24546
|
+
name?: string | undefined;
|
|
24547
|
+
};
|
|
24548
|
+
} & {
|
|
24549
|
+
pathParameters: {
|
|
24550
|
+
projectId: string;
|
|
24551
|
+
licenceId: string;
|
|
24552
|
+
};
|
|
24553
|
+
} & {
|
|
24554
|
+
headers?: Partial<{
|
|
24555
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24556
|
+
}>;
|
|
24557
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
24558
|
+
containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
|
|
24559
|
+
customerId?: string | undefined;
|
|
24560
|
+
licenceId: string;
|
|
24561
|
+
licenceKey: string;
|
|
24562
|
+
models: string[];
|
|
24563
|
+
name: string;
|
|
24564
|
+
projectId?: string | undefined;
|
|
24565
|
+
rateLimit: number;
|
|
24566
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24567
|
+
[x: string]: unknown;
|
|
24568
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24569
|
+
[x: string]: unknown;
|
|
24570
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24571
|
+
[x: string]: unknown;
|
|
24572
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24573
|
+
[x: string]: unknown;
|
|
24574
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24575
|
+
[x: string]: unknown;
|
|
24576
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24577
|
+
[x: string]: unknown;
|
|
24578
|
+
}, 429, "application/json">>>;
|
|
24161
24579
|
/** Get a ProjectInvite by token. */
|
|
24162
24580
|
getProjectTokenInvite: (request: {
|
|
24163
24581
|
headers: {
|
|
@@ -26486,133 +26904,5 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
26486
26904
|
[x: string]: unknown;
|
|
26487
26905
|
}, 429, "application/json">>>;
|
|
26488
26906
|
};
|
|
26489
|
-
/** API endpoints that are not related to any specific API domain */
|
|
26490
|
-
readonly misc: {
|
|
26491
|
-
/** Check if an email is from mittwald. */
|
|
26492
|
-
verificationDetectPhishingEmail: (request?: {
|
|
26493
|
-
data?: {
|
|
26494
|
-
[x: string]: unknown;
|
|
26495
|
-
} | undefined;
|
|
26496
|
-
headers?: {
|
|
26497
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
26498
|
-
} | undefined;
|
|
26499
|
-
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26500
|
-
data: {
|
|
26501
|
-
[x: string]: unknown;
|
|
26502
|
-
};
|
|
26503
|
-
} & {
|
|
26504
|
-
headers?: Partial<{
|
|
26505
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26506
|
-
}>;
|
|
26507
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
26508
|
-
result: import("./types.js").MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
|
|
26509
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26510
|
-
[x: string]: unknown;
|
|
26511
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26512
|
-
[x: string]: unknown;
|
|
26513
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26514
|
-
data: {
|
|
26515
|
-
[x: string]: unknown;
|
|
26516
|
-
};
|
|
26517
|
-
} & {
|
|
26518
|
-
headers?: Partial<{
|
|
26519
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26520
|
-
}>;
|
|
26521
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
26522
|
-
result: import("./types.js").MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
|
|
26523
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26524
|
-
[x: string]: unknown;
|
|
26525
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26526
|
-
[x: string]: unknown;
|
|
26527
|
-
}, 429, "application/json">>>;
|
|
26528
|
-
/** Check if an address exists. */
|
|
26529
|
-
verificationVerifyAddress: (request: {
|
|
26530
|
-
data: {
|
|
26531
|
-
city: string;
|
|
26532
|
-
country: string;
|
|
26533
|
-
street: string;
|
|
26534
|
-
zip: string;
|
|
26535
|
-
};
|
|
26536
|
-
headers?: {
|
|
26537
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
26538
|
-
} | undefined;
|
|
26539
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26540
|
-
data: {
|
|
26541
|
-
city: string;
|
|
26542
|
-
country: string;
|
|
26543
|
-
street: string;
|
|
26544
|
-
zip: string;
|
|
26545
|
-
};
|
|
26546
|
-
} & {
|
|
26547
|
-
headers?: Partial<{
|
|
26548
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26549
|
-
}>;
|
|
26550
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
26551
|
-
exists: boolean;
|
|
26552
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26553
|
-
[x: string]: unknown;
|
|
26554
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26555
|
-
data: {
|
|
26556
|
-
city: string;
|
|
26557
|
-
country: string;
|
|
26558
|
-
street: string;
|
|
26559
|
-
zip: string;
|
|
26560
|
-
};
|
|
26561
|
-
} & {
|
|
26562
|
-
headers?: Partial<{
|
|
26563
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26564
|
-
}>;
|
|
26565
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
26566
|
-
exists: boolean;
|
|
26567
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26568
|
-
[x: string]: unknown;
|
|
26569
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>>;
|
|
26570
|
-
/** Check if a company exists. */
|
|
26571
|
-
verificationVerifyCompany: (request: {
|
|
26572
|
-
data: {
|
|
26573
|
-
name: string;
|
|
26574
|
-
};
|
|
26575
|
-
headers?: {
|
|
26576
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
26577
|
-
"x-access-token"?: string | undefined;
|
|
26578
|
-
} | undefined;
|
|
26579
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26580
|
-
data: {
|
|
26581
|
-
name: string;
|
|
26582
|
-
};
|
|
26583
|
-
} & {
|
|
26584
|
-
headers?: Partial<{
|
|
26585
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26586
|
-
}>;
|
|
26587
|
-
} & {
|
|
26588
|
-
headers: {
|
|
26589
|
-
"x-access-token"?: string | undefined;
|
|
26590
|
-
} & Partial<{
|
|
26591
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26592
|
-
}>;
|
|
26593
|
-
}, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26594
|
-
exists: boolean;
|
|
26595
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26596
|
-
[x: string]: unknown;
|
|
26597
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26598
|
-
data: {
|
|
26599
|
-
name: string;
|
|
26600
|
-
};
|
|
26601
|
-
} & {
|
|
26602
|
-
headers?: Partial<{
|
|
26603
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26604
|
-
}>;
|
|
26605
|
-
} & {
|
|
26606
|
-
headers: {
|
|
26607
|
-
"x-access-token"?: string | undefined;
|
|
26608
|
-
} & Partial<{
|
|
26609
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26610
|
-
}>;
|
|
26611
|
-
}, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26612
|
-
exists: boolean;
|
|
26613
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26614
|
-
[x: string]: unknown;
|
|
26615
|
-
}, 429, "application/json">>>;
|
|
26616
|
-
};
|
|
26617
26907
|
}
|
|
26618
26908
|
export default MittwaldAPIV2Client;
|
|
@@ -567,6 +567,8 @@ export declare const mailUpdateProjectMailSetting: OpenAPIOperation<RequestType<
|
|
|
567
567
|
export declare const marketplaceCustomerGetPaymentMethod: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
568
568
|
/** Get the link to update the marketplace payment method */
|
|
569
569
|
export declare const marketplaceCustomerUpdatePaymentMethod: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdPaymentMethod.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
570
|
+
/** Get a list of currently active llm models. */
|
|
571
|
+
export declare const miscGetLlmModelsExperimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2LlmModels.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LlmModels.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2LlmModels.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2LlmModels.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LlmModels.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LlmModels.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LlmModels.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LlmModels.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LlmModels.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
570
572
|
/** Getting the subscription status of the subscription. */
|
|
571
573
|
export declare const newsletterGetInfo: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
572
574
|
/** Unsubscribe a user from the mStudio newsletter. */
|
|
@@ -607,6 +609,10 @@ export declare const pageinsightsScheduleStrace: OpenAPIOperation<RequestType<Si
|
|
|
607
609
|
export declare const passwordValidationGetPasswordPolicy: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
608
610
|
/** Accept a ProjectInvite. */
|
|
609
611
|
export declare const projectAcceptProjectInvite: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsAccept.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsAccept.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsAccept.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsAccept.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsAccept.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsAccept.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsAccept.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsAccept.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsAccept.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesProjectInviteIdActionsAccept.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
612
|
+
/** Get a list of already created llm licences. */
|
|
613
|
+
export declare const projectGetLlmLicencesExperimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
614
|
+
/** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
|
|
615
|
+
export declare const projectCreateLlmBetaLicenceExperimental: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicences.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
610
616
|
/** List Invites belonging to a Project. */
|
|
611
617
|
export declare const projectListInvitesForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdInvites.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdInvites.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdInvites.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdInvites.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdInvites.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdInvites.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdInvites.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
612
618
|
/** Create a ProjectInvite. */
|
|
@@ -647,6 +653,10 @@ export declare const projectFileSystemGetFileContent: OpenAPIOperation<RequestTy
|
|
|
647
653
|
export declare const projectFileSystemGetJwt: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json">>;
|
|
648
654
|
/** Get a Project file's information. */
|
|
649
655
|
export declare const projectFileSystemListFiles: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
656
|
+
/** Get a licence of a project. */
|
|
657
|
+
export declare const projectGetLlmLicenceExperimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
658
|
+
/** Update a llm Licence for a project. */
|
|
659
|
+
export declare const projectUpdateLlmLicenceExperimental: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLlmLicencesLicenceId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
650
660
|
/** Get a ProjectInvite by token. */
|
|
651
661
|
export declare const projectGetProjectTokenInvite: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectTokenInvite.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectTokenInvite.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectTokenInvite.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectTokenInvite.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectTokenInvite.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectTokenInvite.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectTokenInvite.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
652
662
|
/** Get the executing user's membership in a Project. */
|
|
@@ -1130,6 +1130,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1130
1130
|
type RequestData = InferredRequestData<typeof descriptors.marketplaceCustomerUpdatePaymentMethod>;
|
|
1131
1131
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.marketplaceCustomerUpdatePaymentMethod, TStatus>;
|
|
1132
1132
|
}
|
|
1133
|
+
namespace MiscGetLlmModelsExperimental {
|
|
1134
|
+
type RequestData = InferredRequestData<typeof descriptors.miscGetLlmModelsExperimental>;
|
|
1135
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.miscGetLlmModelsExperimental, TStatus>;
|
|
1136
|
+
}
|
|
1133
1137
|
namespace NewsletterGetInfo {
|
|
1134
1138
|
type RequestData = InferredRequestData<typeof descriptors.newsletterGetInfo>;
|
|
1135
1139
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.newsletterGetInfo, TStatus>;
|
|
@@ -1210,6 +1214,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1210
1214
|
type RequestData = InferredRequestData<typeof descriptors.projectAcceptProjectInvite>;
|
|
1211
1215
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectAcceptProjectInvite, TStatus>;
|
|
1212
1216
|
}
|
|
1217
|
+
namespace ProjectGetLlmLicencesExperimental {
|
|
1218
|
+
type RequestData = InferredRequestData<typeof descriptors.projectGetLlmLicencesExperimental>;
|
|
1219
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetLlmLicencesExperimental, TStatus>;
|
|
1220
|
+
}
|
|
1221
|
+
namespace ProjectCreateLlmBetaLicenceExperimental {
|
|
1222
|
+
type RequestData = InferredRequestData<typeof descriptors.projectCreateLlmBetaLicenceExperimental>;
|
|
1223
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectCreateLlmBetaLicenceExperimental, TStatus>;
|
|
1224
|
+
}
|
|
1213
1225
|
namespace ProjectListInvitesForProject {
|
|
1214
1226
|
type RequestData = InferredRequestData<typeof descriptors.projectListInvitesForProject>;
|
|
1215
1227
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListInvitesForProject, TStatus>;
|
|
@@ -1290,6 +1302,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1290
1302
|
type RequestData = InferredRequestData<typeof descriptors.projectFileSystemListFiles>;
|
|
1291
1303
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectFileSystemListFiles, TStatus>;
|
|
1292
1304
|
}
|
|
1305
|
+
namespace ProjectGetLlmLicenceExperimental {
|
|
1306
|
+
type RequestData = InferredRequestData<typeof descriptors.projectGetLlmLicenceExperimental>;
|
|
1307
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetLlmLicenceExperimental, TStatus>;
|
|
1308
|
+
}
|
|
1309
|
+
namespace ProjectUpdateLlmLicenceExperimental {
|
|
1310
|
+
type RequestData = InferredRequestData<typeof descriptors.projectUpdateLlmLicenceExperimental>;
|
|
1311
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectUpdateLlmLicenceExperimental, TStatus>;
|
|
1312
|
+
}
|
|
1293
1313
|
namespace ProjectGetProjectTokenInvite {
|
|
1294
1314
|
type RequestData = InferredRequestData<typeof descriptors.projectGetProjectTokenInvite>;
|
|
1295
1315
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetProjectTokenInvite, TStatus>;
|
|
@@ -19765,6 +19785,57 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19765
19785
|
}
|
|
19766
19786
|
}
|
|
19767
19787
|
}
|
|
19788
|
+
namespace V2LlmModels {
|
|
19789
|
+
namespace Get {
|
|
19790
|
+
namespace Parameters {
|
|
19791
|
+
type Path = {};
|
|
19792
|
+
type Header = {};
|
|
19793
|
+
type Query = {};
|
|
19794
|
+
}
|
|
19795
|
+
namespace Responses {
|
|
19796
|
+
namespace $200 {
|
|
19797
|
+
namespace Content {
|
|
19798
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[];
|
|
19799
|
+
}
|
|
19800
|
+
}
|
|
19801
|
+
namespace $400 {
|
|
19802
|
+
namespace Content {
|
|
19803
|
+
interface ApplicationJson {
|
|
19804
|
+
[k: string]: unknown;
|
|
19805
|
+
}
|
|
19806
|
+
}
|
|
19807
|
+
}
|
|
19808
|
+
namespace $403 {
|
|
19809
|
+
namespace Content {
|
|
19810
|
+
interface ApplicationJson {
|
|
19811
|
+
[k: string]: unknown;
|
|
19812
|
+
}
|
|
19813
|
+
}
|
|
19814
|
+
}
|
|
19815
|
+
namespace $404 {
|
|
19816
|
+
namespace Content {
|
|
19817
|
+
interface ApplicationJson {
|
|
19818
|
+
[k: string]: unknown;
|
|
19819
|
+
}
|
|
19820
|
+
}
|
|
19821
|
+
}
|
|
19822
|
+
namespace $429 {
|
|
19823
|
+
namespace Content {
|
|
19824
|
+
interface ApplicationJson {
|
|
19825
|
+
[k: string]: unknown;
|
|
19826
|
+
}
|
|
19827
|
+
}
|
|
19828
|
+
}
|
|
19829
|
+
namespace Default {
|
|
19830
|
+
namespace Content {
|
|
19831
|
+
interface ApplicationJson {
|
|
19832
|
+
[k: string]: unknown;
|
|
19833
|
+
}
|
|
19834
|
+
}
|
|
19835
|
+
}
|
|
19836
|
+
}
|
|
19837
|
+
}
|
|
19838
|
+
}
|
|
19768
19839
|
namespace V2NewsletterSubscriptionsSelf {
|
|
19769
19840
|
namespace Get {
|
|
19770
19841
|
namespace Parameters {
|
|
@@ -20641,6 +20712,128 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20641
20712
|
}
|
|
20642
20713
|
}
|
|
20643
20714
|
}
|
|
20715
|
+
namespace V2ProjectsProjectIdLlmLicences {
|
|
20716
|
+
namespace Get {
|
|
20717
|
+
namespace Parameters {
|
|
20718
|
+
type Path = {
|
|
20719
|
+
projectId: string;
|
|
20720
|
+
};
|
|
20721
|
+
type Header = {};
|
|
20722
|
+
type Query = {};
|
|
20723
|
+
}
|
|
20724
|
+
namespace Responses {
|
|
20725
|
+
namespace $200 {
|
|
20726
|
+
namespace Content {
|
|
20727
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[];
|
|
20728
|
+
}
|
|
20729
|
+
}
|
|
20730
|
+
namespace $400 {
|
|
20731
|
+
namespace Content {
|
|
20732
|
+
interface ApplicationJson {
|
|
20733
|
+
[k: string]: unknown;
|
|
20734
|
+
}
|
|
20735
|
+
}
|
|
20736
|
+
}
|
|
20737
|
+
namespace $403 {
|
|
20738
|
+
namespace Content {
|
|
20739
|
+
interface ApplicationJson {
|
|
20740
|
+
[k: string]: unknown;
|
|
20741
|
+
}
|
|
20742
|
+
}
|
|
20743
|
+
}
|
|
20744
|
+
namespace $404 {
|
|
20745
|
+
namespace Content {
|
|
20746
|
+
interface ApplicationJson {
|
|
20747
|
+
[k: string]: unknown;
|
|
20748
|
+
}
|
|
20749
|
+
}
|
|
20750
|
+
}
|
|
20751
|
+
namespace $429 {
|
|
20752
|
+
namespace Content {
|
|
20753
|
+
interface ApplicationJson {
|
|
20754
|
+
[k: string]: unknown;
|
|
20755
|
+
}
|
|
20756
|
+
}
|
|
20757
|
+
}
|
|
20758
|
+
namespace Default {
|
|
20759
|
+
namespace Content {
|
|
20760
|
+
interface ApplicationJson {
|
|
20761
|
+
[k: string]: unknown;
|
|
20762
|
+
}
|
|
20763
|
+
}
|
|
20764
|
+
}
|
|
20765
|
+
}
|
|
20766
|
+
}
|
|
20767
|
+
namespace Post {
|
|
20768
|
+
namespace Parameters {
|
|
20769
|
+
type Path = {
|
|
20770
|
+
projectId: string;
|
|
20771
|
+
};
|
|
20772
|
+
interface RequestBody {
|
|
20773
|
+
createWebuiContainer?: boolean;
|
|
20774
|
+
name: string;
|
|
20775
|
+
}
|
|
20776
|
+
type Header = {};
|
|
20777
|
+
type Query = {};
|
|
20778
|
+
}
|
|
20779
|
+
namespace Responses {
|
|
20780
|
+
namespace $201 {
|
|
20781
|
+
namespace Content {
|
|
20782
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
|
|
20783
|
+
}
|
|
20784
|
+
}
|
|
20785
|
+
namespace $400 {
|
|
20786
|
+
namespace Content {
|
|
20787
|
+
interface ApplicationJson {
|
|
20788
|
+
[k: string]: unknown;
|
|
20789
|
+
}
|
|
20790
|
+
}
|
|
20791
|
+
}
|
|
20792
|
+
namespace $403 {
|
|
20793
|
+
namespace Content {
|
|
20794
|
+
interface ApplicationJson {
|
|
20795
|
+
[k: string]: unknown;
|
|
20796
|
+
}
|
|
20797
|
+
}
|
|
20798
|
+
}
|
|
20799
|
+
namespace $404 {
|
|
20800
|
+
namespace Content {
|
|
20801
|
+
interface ApplicationJson {
|
|
20802
|
+
[k: string]: unknown;
|
|
20803
|
+
}
|
|
20804
|
+
}
|
|
20805
|
+
}
|
|
20806
|
+
namespace $409 {
|
|
20807
|
+
namespace Content {
|
|
20808
|
+
interface ApplicationJson {
|
|
20809
|
+
[k: string]: unknown;
|
|
20810
|
+
}
|
|
20811
|
+
}
|
|
20812
|
+
}
|
|
20813
|
+
namespace $412 {
|
|
20814
|
+
namespace Content {
|
|
20815
|
+
interface ApplicationJson {
|
|
20816
|
+
[k: string]: unknown;
|
|
20817
|
+
}
|
|
20818
|
+
}
|
|
20819
|
+
}
|
|
20820
|
+
namespace $429 {
|
|
20821
|
+
namespace Content {
|
|
20822
|
+
interface ApplicationJson {
|
|
20823
|
+
[k: string]: unknown;
|
|
20824
|
+
}
|
|
20825
|
+
}
|
|
20826
|
+
}
|
|
20827
|
+
namespace Default {
|
|
20828
|
+
namespace Content {
|
|
20829
|
+
interface ApplicationJson {
|
|
20830
|
+
[k: string]: unknown;
|
|
20831
|
+
}
|
|
20832
|
+
}
|
|
20833
|
+
}
|
|
20834
|
+
}
|
|
20835
|
+
}
|
|
20836
|
+
}
|
|
20644
20837
|
namespace V2ProjectsProjectIdInvites {
|
|
20645
20838
|
namespace Get {
|
|
20646
20839
|
namespace Parameters {
|
|
@@ -21600,6 +21793,130 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21600
21793
|
}
|
|
21601
21794
|
}
|
|
21602
21795
|
}
|
|
21796
|
+
namespace V2ProjectsProjectIdLlmLicencesLicenceId {
|
|
21797
|
+
namespace Get {
|
|
21798
|
+
namespace Parameters {
|
|
21799
|
+
type Path = {
|
|
21800
|
+
projectId: string;
|
|
21801
|
+
licenceId: string;
|
|
21802
|
+
};
|
|
21803
|
+
type Header = {};
|
|
21804
|
+
type Query = {};
|
|
21805
|
+
}
|
|
21806
|
+
namespace Responses {
|
|
21807
|
+
namespace $200 {
|
|
21808
|
+
namespace Content {
|
|
21809
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
|
|
21810
|
+
}
|
|
21811
|
+
}
|
|
21812
|
+
namespace $400 {
|
|
21813
|
+
namespace Content {
|
|
21814
|
+
interface ApplicationJson {
|
|
21815
|
+
[k: string]: unknown;
|
|
21816
|
+
}
|
|
21817
|
+
}
|
|
21818
|
+
}
|
|
21819
|
+
namespace $403 {
|
|
21820
|
+
namespace Content {
|
|
21821
|
+
interface ApplicationJson {
|
|
21822
|
+
[k: string]: unknown;
|
|
21823
|
+
}
|
|
21824
|
+
}
|
|
21825
|
+
}
|
|
21826
|
+
namespace $404 {
|
|
21827
|
+
namespace Content {
|
|
21828
|
+
interface ApplicationJson {
|
|
21829
|
+
[k: string]: unknown;
|
|
21830
|
+
}
|
|
21831
|
+
}
|
|
21832
|
+
}
|
|
21833
|
+
namespace $429 {
|
|
21834
|
+
namespace Content {
|
|
21835
|
+
interface ApplicationJson {
|
|
21836
|
+
[k: string]: unknown;
|
|
21837
|
+
}
|
|
21838
|
+
}
|
|
21839
|
+
}
|
|
21840
|
+
namespace Default {
|
|
21841
|
+
namespace Content {
|
|
21842
|
+
interface ApplicationJson {
|
|
21843
|
+
[k: string]: unknown;
|
|
21844
|
+
}
|
|
21845
|
+
}
|
|
21846
|
+
}
|
|
21847
|
+
}
|
|
21848
|
+
}
|
|
21849
|
+
namespace Put {
|
|
21850
|
+
namespace Parameters {
|
|
21851
|
+
type Path = {
|
|
21852
|
+
projectId: string;
|
|
21853
|
+
licenceId: string;
|
|
21854
|
+
};
|
|
21855
|
+
interface RequestBody {
|
|
21856
|
+
createWebuiContainer?: boolean;
|
|
21857
|
+
name?: string;
|
|
21858
|
+
}
|
|
21859
|
+
type Header = {};
|
|
21860
|
+
type Query = {};
|
|
21861
|
+
}
|
|
21862
|
+
namespace Responses {
|
|
21863
|
+
namespace $200 {
|
|
21864
|
+
namespace Content {
|
|
21865
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
|
|
21866
|
+
}
|
|
21867
|
+
}
|
|
21868
|
+
namespace $400 {
|
|
21869
|
+
namespace Content {
|
|
21870
|
+
interface ApplicationJson {
|
|
21871
|
+
[k: string]: unknown;
|
|
21872
|
+
}
|
|
21873
|
+
}
|
|
21874
|
+
}
|
|
21875
|
+
namespace $403 {
|
|
21876
|
+
namespace Content {
|
|
21877
|
+
interface ApplicationJson {
|
|
21878
|
+
[k: string]: unknown;
|
|
21879
|
+
}
|
|
21880
|
+
}
|
|
21881
|
+
}
|
|
21882
|
+
namespace $404 {
|
|
21883
|
+
namespace Content {
|
|
21884
|
+
interface ApplicationJson {
|
|
21885
|
+
[k: string]: unknown;
|
|
21886
|
+
}
|
|
21887
|
+
}
|
|
21888
|
+
}
|
|
21889
|
+
namespace $409 {
|
|
21890
|
+
namespace Content {
|
|
21891
|
+
interface ApplicationJson {
|
|
21892
|
+
[k: string]: unknown;
|
|
21893
|
+
}
|
|
21894
|
+
}
|
|
21895
|
+
}
|
|
21896
|
+
namespace $412 {
|
|
21897
|
+
namespace Content {
|
|
21898
|
+
interface ApplicationJson {
|
|
21899
|
+
[k: string]: unknown;
|
|
21900
|
+
}
|
|
21901
|
+
}
|
|
21902
|
+
}
|
|
21903
|
+
namespace $429 {
|
|
21904
|
+
namespace Content {
|
|
21905
|
+
interface ApplicationJson {
|
|
21906
|
+
[k: string]: unknown;
|
|
21907
|
+
}
|
|
21908
|
+
}
|
|
21909
|
+
}
|
|
21910
|
+
namespace Default {
|
|
21911
|
+
namespace Content {
|
|
21912
|
+
interface ApplicationJson {
|
|
21913
|
+
[k: string]: unknown;
|
|
21914
|
+
}
|
|
21915
|
+
}
|
|
21916
|
+
}
|
|
21917
|
+
}
|
|
21918
|
+
}
|
|
21919
|
+
}
|
|
21603
21920
|
namespace V2ProjectTokenInvite {
|
|
21604
21921
|
namespace Get {
|
|
21605
21922
|
namespace Parameters {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '0.0.0-development-7e09328-20250710';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "0.0.0-development-
|
|
3
|
+
"version": "0.0.0-development-bc8cbfe-20250710",
|
|
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",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^0.0.0-development-
|
|
49
|
+
"@mittwald/api-client-commons": "^0.0.0-development-bc8cbfe-20250710",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^0.0.0-development-
|
|
53
|
+
"@mittwald/api-code-generator": "^0.0.0-development-bc8cbfe-20250710",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.0",
|
|
55
55
|
"@types/node": "^22.10.1",
|
|
56
56
|
"@types/react": "^18.3.14",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "09d87ad7310772bb5e4e7026559c5aa2701c3247"
|
|
84
84
|
}
|