@mittwald/api-client 4.185.0 → 4.187.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.js +2 -2
- package/dist/esm/generated/v2/descriptors.js +11 -11
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +1 -0
- package/dist/types/generated/v2/client.d.ts +48 -37
- package/dist/types/generated/v2/descriptors.d.ts +7 -7
- package/dist/types/generated/v2/types.d.ts +45 -43
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -764,12 +764,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
764
764
|
getLlmModelsExperimental: this.requestFunctionFactory(descriptors.miscGetLlmModelsExperimental),
|
|
765
765
|
/** Obtain a service token. */
|
|
766
766
|
servicetokenAuthenticateService: this.requestFunctionFactory(descriptors.servicetokenAuthenticateService),
|
|
767
|
+
/** Check if an email is from mittwald. */
|
|
768
|
+
verificationDetectPhishingEmail: this.requestFunctionFactory(descriptors.verificationDetectPhishingEmail),
|
|
767
769
|
/** Check if an address exists. */
|
|
768
770
|
verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
|
|
769
771
|
/** Check if a company exists. */
|
|
770
772
|
verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
|
|
771
|
-
/** Check if an email is from mittwald. */
|
|
772
|
-
verificationDetectPhishingEmail: this.requestFunctionFactory(descriptors.verificationDetectPhishingEmail),
|
|
773
773
|
};
|
|
774
774
|
/** The page insights API allows you to get page insights information. */
|
|
775
775
|
pageInsights = {
|
|
@@ -1662,7 +1662,7 @@ export const marketplaceCustomerUpdatePaymentMethod = {
|
|
|
1662
1662
|
};
|
|
1663
1663
|
/** Get a list of currently active llm models. */
|
|
1664
1664
|
export const miscGetLlmModelsExperimental = {
|
|
1665
|
-
path: "/
|
|
1665
|
+
path: "/v2/llm-models",
|
|
1666
1666
|
method: "GET",
|
|
1667
1667
|
operationId: "misc-get-llm-models-experimental",
|
|
1668
1668
|
};
|
|
@@ -1788,13 +1788,13 @@ export const projectAcceptProjectInvite = {
|
|
|
1788
1788
|
};
|
|
1789
1789
|
/** Get a list of already created llm licences. */
|
|
1790
1790
|
export const projectGetLlmLicencesExperimental = {
|
|
1791
|
-
path: "/
|
|
1791
|
+
path: "/v2/projects/{projectId}/llm-licences",
|
|
1792
1792
|
method: "GET",
|
|
1793
1793
|
operationId: "project-get-llm-licences-experimental",
|
|
1794
1794
|
};
|
|
1795
1795
|
/** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
|
|
1796
1796
|
export const projectCreateLlmBetaLicenceExperimental = {
|
|
1797
|
-
path: "/
|
|
1797
|
+
path: "/v2/projects/{projectId}/llm-licences",
|
|
1798
1798
|
method: "POST",
|
|
1799
1799
|
operationId: "project-create-llm-beta-licence-experimental",
|
|
1800
1800
|
};
|
|
@@ -1920,13 +1920,13 @@ export const projectFileSystemListFiles = {
|
|
|
1920
1920
|
};
|
|
1921
1921
|
/** Get a licence of a project. */
|
|
1922
1922
|
export const projectGetLlmLicenceExperimental = {
|
|
1923
|
-
path: "/
|
|
1923
|
+
path: "/v2/projects/{projectId}/llm-licences/{licenceId}",
|
|
1924
1924
|
method: "GET",
|
|
1925
1925
|
operationId: "project-get-llm-licence-experimental",
|
|
1926
1926
|
};
|
|
1927
1927
|
/** Update a llm Licence for a project. */
|
|
1928
1928
|
export const projectUpdateLlmLicenceExperimental = {
|
|
1929
|
-
path: "/
|
|
1929
|
+
path: "/v2/projects/{projectId}/llm-licences/{licenceId}",
|
|
1930
1930
|
method: "PUT",
|
|
1931
1931
|
operationId: "project-update-llm-licence-experimental",
|
|
1932
1932
|
};
|
|
@@ -2464,6 +2464,12 @@ export const userVerifyRegistration = {
|
|
|
2464
2464
|
method: "POST",
|
|
2465
2465
|
operationId: "user-verify-registration",
|
|
2466
2466
|
};
|
|
2467
|
+
/** Check if an email is from mittwald. */
|
|
2468
|
+
export const verificationDetectPhishingEmail = {
|
|
2469
|
+
path: "/v2/actions/detect-phishing-email",
|
|
2470
|
+
method: "POST",
|
|
2471
|
+
operationId: "verification-detect-phishing-email",
|
|
2472
|
+
};
|
|
2467
2473
|
/** Check if an address exists. */
|
|
2468
2474
|
export const verificationVerifyAddress = {
|
|
2469
2475
|
path: "/v2/actions/verify-address",
|
|
@@ -2476,9 +2482,3 @@ export const verificationVerifyCompany = {
|
|
|
2476
2482
|
method: "POST",
|
|
2477
2483
|
operationId: "verification-verify-company",
|
|
2478
2484
|
};
|
|
2479
|
-
/** Check if an email is from mittwald. */
|
|
2480
|
-
export const verificationDetectPhishingEmail = {
|
|
2481
|
-
path: "/v2/actions/detect-phishing-email",
|
|
2482
|
-
method: "POST",
|
|
2483
|
-
operationId: "verification-detect-phishing-email",
|
|
2484
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.186.0';
|
|
@@ -750,6 +750,7 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
750
750
|
queryParameters?: {
|
|
751
751
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
752
752
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
753
|
+
search?: string | undefined;
|
|
753
754
|
limit?: number | undefined;
|
|
754
755
|
skip?: number | undefined;
|
|
755
756
|
page?: number | undefined;
|
|
@@ -5358,6 +5358,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5358
5358
|
queryParameters?: {
|
|
5359
5359
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5360
5360
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
5361
|
+
search?: string | undefined;
|
|
5361
5362
|
limit?: number | undefined;
|
|
5362
5363
|
skip?: number | undefined;
|
|
5363
5364
|
page?: number | undefined;
|
|
@@ -5375,6 +5376,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5375
5376
|
} & {
|
|
5376
5377
|
queryParameters: {
|
|
5377
5378
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
5379
|
+
search?: string | undefined;
|
|
5378
5380
|
limit?: number | undefined;
|
|
5379
5381
|
skip?: number | undefined;
|
|
5380
5382
|
page?: number | undefined;
|
|
@@ -5406,6 +5408,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5406
5408
|
} & {
|
|
5407
5409
|
queryParameters: {
|
|
5408
5410
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[] | undefined;
|
|
5411
|
+
search?: string | undefined;
|
|
5409
5412
|
limit?: number | undefined;
|
|
5410
5413
|
skip?: number | undefined;
|
|
5411
5414
|
page?: number | undefined;
|
|
@@ -9629,6 +9632,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9629
9632
|
aggregate: "extensionInstance";
|
|
9630
9633
|
domain: "extension";
|
|
9631
9634
|
id: string;
|
|
9635
|
+
} | {
|
|
9636
|
+
aggregate: "container";
|
|
9637
|
+
domain: "container";
|
|
9638
|
+
id: string;
|
|
9632
9639
|
} | undefined;
|
|
9633
9640
|
sharedWith?: {
|
|
9634
9641
|
aggregate: "user";
|
|
@@ -10034,6 +10041,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10034
10041
|
aggregate: "extensionInstance";
|
|
10035
10042
|
domain: "extension";
|
|
10036
10043
|
id: string;
|
|
10044
|
+
} | {
|
|
10045
|
+
aggregate: "container";
|
|
10046
|
+
domain: "container";
|
|
10047
|
+
id: string;
|
|
10037
10048
|
} | undefined;
|
|
10038
10049
|
title?: string | undefined;
|
|
10039
10050
|
} | undefined;
|
|
@@ -22636,6 +22647,43 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22636
22647
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22637
22648
|
[x: string]: unknown;
|
|
22638
22649
|
}, 429, "application/json">>>;
|
|
22650
|
+
/** Check if an email is from mittwald. */
|
|
22651
|
+
verificationDetectPhishingEmail: (request?: {
|
|
22652
|
+
data?: {
|
|
22653
|
+
[x: string]: unknown;
|
|
22654
|
+
} | undefined;
|
|
22655
|
+
headers?: {
|
|
22656
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22657
|
+
} | undefined;
|
|
22658
|
+
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22659
|
+
data: {
|
|
22660
|
+
[x: string]: unknown;
|
|
22661
|
+
};
|
|
22662
|
+
} & {
|
|
22663
|
+
headers?: Partial<{
|
|
22664
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22665
|
+
}>;
|
|
22666
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
22667
|
+
result: import("./types.js").MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
|
|
22668
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22669
|
+
[x: string]: unknown;
|
|
22670
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22671
|
+
[x: string]: unknown;
|
|
22672
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22673
|
+
data: {
|
|
22674
|
+
[x: string]: unknown;
|
|
22675
|
+
};
|
|
22676
|
+
} & {
|
|
22677
|
+
headers?: Partial<{
|
|
22678
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22679
|
+
}>;
|
|
22680
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
22681
|
+
result: import("./types.js").MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
|
|
22682
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22683
|
+
[x: string]: unknown;
|
|
22684
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22685
|
+
[x: string]: unknown;
|
|
22686
|
+
}, 429, "application/json">>>;
|
|
22639
22687
|
/** Check if an address exists. */
|
|
22640
22688
|
verificationVerifyAddress: (request: {
|
|
22641
22689
|
data: {
|
|
@@ -22724,43 +22772,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22724
22772
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
22725
22773
|
[x: string]: unknown;
|
|
22726
22774
|
}, 429, "application/json">>>;
|
|
22727
|
-
/** Check if an email is from mittwald. */
|
|
22728
|
-
verificationDetectPhishingEmail: (request?: {
|
|
22729
|
-
data?: {
|
|
22730
|
-
[x: string]: unknown;
|
|
22731
|
-
} | undefined;
|
|
22732
|
-
headers?: {
|
|
22733
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22734
|
-
} | undefined;
|
|
22735
|
-
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22736
|
-
data: {
|
|
22737
|
-
[x: string]: unknown;
|
|
22738
|
-
};
|
|
22739
|
-
} & {
|
|
22740
|
-
headers?: Partial<{
|
|
22741
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22742
|
-
}>;
|
|
22743
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
22744
|
-
result: import("./types.js").MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
|
|
22745
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22746
|
-
[x: string]: unknown;
|
|
22747
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22748
|
-
[x: string]: unknown;
|
|
22749
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22750
|
-
data: {
|
|
22751
|
-
[x: string]: unknown;
|
|
22752
|
-
};
|
|
22753
|
-
} & {
|
|
22754
|
-
headers?: Partial<{
|
|
22755
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22756
|
-
}>;
|
|
22757
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
22758
|
-
result: import("./types.js").MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
|
|
22759
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22760
|
-
[x: string]: unknown;
|
|
22761
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22762
|
-
[x: string]: unknown;
|
|
22763
|
-
}, 429, "application/json">>>;
|
|
22764
22775
|
};
|
|
22765
22776
|
/** The page insights API allows you to get page insights information. */
|
|
22766
22777
|
readonly pageInsights: {
|
|
@@ -558,7 +558,7 @@ export declare const marketplaceCustomerGetPaymentMethod: OpenAPIOperation<Reque
|
|
|
558
558
|
/** Get the link to update the marketplace payment method */
|
|
559
559
|
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">>;
|
|
560
560
|
/** Get a list of currently active llm models. */
|
|
561
|
-
export declare const miscGetLlmModelsExperimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.
|
|
561
|
+
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">>;
|
|
562
562
|
/** Getting the subscription status of the subscription. */
|
|
563
563
|
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">>;
|
|
564
564
|
/** Unsubscribe a user from the mStudio newsletter. */
|
|
@@ -600,9 +600,9 @@ export declare const passwordValidationGetPasswordPolicy: OpenAPIOperation<Reque
|
|
|
600
600
|
/** Accept a ProjectInvite. */
|
|
601
601
|
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">>;
|
|
602
602
|
/** Get a list of already created llm licences. */
|
|
603
|
-
export declare const projectGetLlmLicencesExperimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.
|
|
603
|
+
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">>;
|
|
604
604
|
/** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
|
|
605
|
-
export declare const projectCreateLlmBetaLicenceExperimental: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.
|
|
605
|
+
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">>;
|
|
606
606
|
/** List Invites belonging to a Project. */
|
|
607
607
|
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">>;
|
|
608
608
|
/** Create a ProjectInvite. */
|
|
@@ -644,9 +644,9 @@ export declare const projectFileSystemGetJwt: OpenAPIOperation<RequestType<Simpl
|
|
|
644
644
|
/** Get a Project file's information. */
|
|
645
645
|
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">>;
|
|
646
646
|
/** Get a licence of a project. */
|
|
647
|
-
export declare const projectGetLlmLicenceExperimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.
|
|
647
|
+
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">>;
|
|
648
648
|
/** Update a llm Licence for a project. */
|
|
649
|
-
export declare const projectUpdateLlmLicenceExperimental: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.
|
|
649
|
+
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
650
|
/** Get a ProjectInvite by token. */
|
|
651
651
|
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
652
|
/** Get the executing user's membership in a Project. */
|
|
@@ -825,9 +825,9 @@ export declare const userVerifyEmail: OpenAPIOperation<RequestType<Simplify<Mitt
|
|
|
825
825
|
export declare const userVerifyPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdActionsVerifyPhone.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdActionsVerifyPhone.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdActionsVerifyPhone.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdActionsVerifyPhone.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdActionsVerifyPhone.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdActionsVerifyPhone.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdActionsVerifyPhone.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdActionsVerifyPhone.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdActionsVerifyPhone.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdActionsVerifyPhone.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
826
826
|
/** Verify your registration. */
|
|
827
827
|
export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
828
|
+
/** Check if an email is from mittwald. */
|
|
829
|
+
export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
828
830
|
/** Check if an address exists. */
|
|
829
831
|
export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
830
832
|
/** Check if a company exists. */
|
|
831
833
|
export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
832
|
-
/** Check if an email is from mittwald. */
|
|
833
|
-
export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsDetectPhishingEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -1646,6 +1646,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1646
1646
|
type RequestData = InferredRequestData<typeof descriptors.userVerifyRegistration>;
|
|
1647
1647
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userVerifyRegistration, TStatus>;
|
|
1648
1648
|
}
|
|
1649
|
+
namespace VerificationDetectPhishingEmail {
|
|
1650
|
+
type RequestData = InferredRequestData<typeof descriptors.verificationDetectPhishingEmail>;
|
|
1651
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationDetectPhishingEmail, TStatus>;
|
|
1652
|
+
}
|
|
1649
1653
|
namespace VerificationVerifyAddress {
|
|
1650
1654
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyAddress>;
|
|
1651
1655
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyAddress, TStatus>;
|
|
@@ -1654,10 +1658,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1654
1658
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1655
1659
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1656
1660
|
}
|
|
1657
|
-
namespace VerificationDetectPhishingEmail {
|
|
1658
|
-
type RequestData = InferredRequestData<typeof descriptors.verificationDetectPhishingEmail>;
|
|
1659
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationDetectPhishingEmail, TStatus>;
|
|
1660
|
-
}
|
|
1661
1661
|
}
|
|
1662
1662
|
namespace Components {
|
|
1663
1663
|
namespace Schemas {
|
|
@@ -2387,6 +2387,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2387
2387
|
aggregate: "extensionInstance";
|
|
2388
2388
|
domain: "extension";
|
|
2389
2389
|
id: string;
|
|
2390
|
+
} | {
|
|
2391
|
+
aggregate: "container";
|
|
2392
|
+
domain: "container";
|
|
2393
|
+
id: string;
|
|
2390
2394
|
};
|
|
2391
2395
|
interface ConversationServiceRequestRelocationPayload {
|
|
2392
2396
|
contact: {
|
|
@@ -17749,6 +17753,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17749
17753
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
17750
17754
|
type Query = {
|
|
17751
17755
|
invoiceTypes?: ("REGULAR" | "REISSUE" | "CORRECTION" | "CANCELLATION")[];
|
|
17756
|
+
search?: string;
|
|
17752
17757
|
limit?: number;
|
|
17753
17758
|
skip?: number;
|
|
17754
17759
|
page?: number;
|
|
@@ -19596,8 +19601,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19596
19601
|
}
|
|
19597
19602
|
}
|
|
19598
19603
|
}
|
|
19599
|
-
namespace V2LlmModels {
|
|
19600
|
-
namespace ExperimentalV2LlmModels {
|
|
19604
|
+
namespace V2LlmModels {
|
|
19601
19605
|
namespace Get {
|
|
19602
19606
|
namespace Parameters {
|
|
19603
19607
|
type Path = {};
|
|
@@ -20527,7 +20531,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20527
20531
|
}
|
|
20528
20532
|
}
|
|
20529
20533
|
}
|
|
20530
|
-
namespace
|
|
20534
|
+
namespace V2ProjectsProjectIdLlmLicences {
|
|
20531
20535
|
namespace Get {
|
|
20532
20536
|
namespace Parameters {
|
|
20533
20537
|
type Path = {
|
|
@@ -21613,8 +21617,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21613
21617
|
}
|
|
21614
21618
|
}
|
|
21615
21619
|
}
|
|
21616
|
-
namespace V2ProjectsProjectIdLlmLicencesLicenceId {
|
|
21617
|
-
namespace ExperimentalV2ProjectsProjectIdLlmLicencesLicenceId {
|
|
21620
|
+
namespace V2ProjectsProjectIdLlmLicencesLicenceId {
|
|
21618
21621
|
namespace Get {
|
|
21619
21622
|
namespace Parameters {
|
|
21620
21623
|
type Path = {
|
|
@@ -21738,7 +21741,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21738
21741
|
}
|
|
21739
21742
|
}
|
|
21740
21743
|
}
|
|
21741
|
-
namespace V2CustomersProjectsProjectIdLlmLicences { }
|
|
21742
21744
|
namespace V2ProjectTokenInvite {
|
|
21743
21745
|
namespace Get {
|
|
21744
21746
|
namespace Parameters {
|
|
@@ -25948,21 +25950,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
25948
25950
|
}
|
|
25949
25951
|
}
|
|
25950
25952
|
}
|
|
25951
|
-
namespace
|
|
25953
|
+
namespace V2ActionsDetectPhishingEmail {
|
|
25952
25954
|
namespace Post {
|
|
25953
25955
|
namespace Parameters {
|
|
25954
25956
|
type Path = {};
|
|
25955
25957
|
interface RequestBody {
|
|
25956
|
-
|
|
25957
|
-
/**
|
|
25958
|
-
* Accepts the whole english or german name as well as the ISO 3166-2 country codes.
|
|
25959
|
-
*/
|
|
25960
|
-
country: string;
|
|
25961
|
-
/**
|
|
25962
|
-
* Includes the house number.
|
|
25963
|
-
*/
|
|
25964
|
-
street: string;
|
|
25965
|
-
zip: string;
|
|
25958
|
+
[k: string]: unknown;
|
|
25966
25959
|
}
|
|
25967
25960
|
type Header = {};
|
|
25968
25961
|
type Query = {};
|
|
@@ -25970,21 +25963,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
25970
25963
|
namespace Responses {
|
|
25971
25964
|
namespace $200 {
|
|
25972
25965
|
namespace Content {
|
|
25973
|
-
|
|
25974
|
-
exists: boolean;
|
|
25975
|
-
}
|
|
25966
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.VerificationEmailDetectPhishingMailResponse;
|
|
25976
25967
|
}
|
|
25977
25968
|
}
|
|
25978
|
-
namespace $
|
|
25969
|
+
namespace $400 {
|
|
25979
25970
|
namespace Content {
|
|
25980
25971
|
interface ApplicationJson {
|
|
25981
25972
|
[k: string]: unknown;
|
|
25982
25973
|
}
|
|
25983
25974
|
}
|
|
25984
25975
|
}
|
|
25985
|
-
namespace $
|
|
25976
|
+
namespace $429 {
|
|
25986
25977
|
namespace Content {
|
|
25987
|
-
|
|
25978
|
+
interface ApplicationJson {
|
|
25979
|
+
[k: string]: unknown;
|
|
25980
|
+
}
|
|
25988
25981
|
}
|
|
25989
25982
|
}
|
|
25990
25983
|
namespace Default {
|
|
@@ -25997,14 +25990,23 @@ export declare namespace MittwaldAPIV2 {
|
|
|
25997
25990
|
}
|
|
25998
25991
|
}
|
|
25999
25992
|
}
|
|
26000
|
-
namespace
|
|
25993
|
+
namespace V2ActionsVerifyAddress {
|
|
26001
25994
|
namespace Post {
|
|
26002
25995
|
namespace Parameters {
|
|
26003
25996
|
type Path = {};
|
|
26004
25997
|
interface RequestBody {
|
|
26005
|
-
|
|
25998
|
+
city: string;
|
|
25999
|
+
/**
|
|
26000
|
+
* Accepts the whole english or german name as well as the ISO 3166-2 country codes.
|
|
26001
|
+
*/
|
|
26002
|
+
country: string;
|
|
26003
|
+
/**
|
|
26004
|
+
* Includes the house number.
|
|
26005
|
+
*/
|
|
26006
|
+
street: string;
|
|
26007
|
+
zip: string;
|
|
26006
26008
|
}
|
|
26007
|
-
type Header = {}
|
|
26009
|
+
type Header = {};
|
|
26008
26010
|
type Query = {};
|
|
26009
26011
|
}
|
|
26010
26012
|
namespace Responses {
|
|
@@ -26015,11 +26017,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26015
26017
|
}
|
|
26016
26018
|
}
|
|
26017
26019
|
}
|
|
26018
|
-
namespace $412 {
|
|
26019
|
-
namespace Content {
|
|
26020
|
-
type Empty = unknown;
|
|
26021
|
-
}
|
|
26022
|
-
}
|
|
26023
26020
|
namespace $429 {
|
|
26024
26021
|
namespace Content {
|
|
26025
26022
|
interface ApplicationJson {
|
|
@@ -26042,27 +26039,27 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26042
26039
|
}
|
|
26043
26040
|
}
|
|
26044
26041
|
}
|
|
26045
|
-
namespace
|
|
26042
|
+
namespace V2ActionsVerifyCompany {
|
|
26046
26043
|
namespace Post {
|
|
26047
26044
|
namespace Parameters {
|
|
26048
26045
|
type Path = {};
|
|
26049
26046
|
interface RequestBody {
|
|
26050
|
-
|
|
26047
|
+
name: string;
|
|
26051
26048
|
}
|
|
26052
|
-
type Header = {};
|
|
26049
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
26053
26050
|
type Query = {};
|
|
26054
26051
|
}
|
|
26055
26052
|
namespace Responses {
|
|
26056
26053
|
namespace $200 {
|
|
26057
26054
|
namespace Content {
|
|
26058
|
-
|
|
26055
|
+
interface ApplicationJson {
|
|
26056
|
+
exists: boolean;
|
|
26057
|
+
}
|
|
26059
26058
|
}
|
|
26060
26059
|
}
|
|
26061
|
-
namespace $
|
|
26060
|
+
namespace $412 {
|
|
26062
26061
|
namespace Content {
|
|
26063
|
-
|
|
26064
|
-
[k: string]: unknown;
|
|
26065
|
-
}
|
|
26062
|
+
type Empty = unknown;
|
|
26066
26063
|
}
|
|
26067
26064
|
}
|
|
26068
26065
|
namespace $429 {
|
|
@@ -26072,6 +26069,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26072
26069
|
}
|
|
26073
26070
|
}
|
|
26074
26071
|
}
|
|
26072
|
+
namespace $500 {
|
|
26073
|
+
namespace Content {
|
|
26074
|
+
type Empty = unknown;
|
|
26075
|
+
}
|
|
26076
|
+
}
|
|
26075
26077
|
namespace Default {
|
|
26076
26078
|
namespace Content {
|
|
26077
26079
|
interface ApplicationJson {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.186.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.187.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": "bfec5581f56ceb106764dce9344455216b55d32c"
|
|
84
84
|
}
|