@mittwald/api-client 0.0.0-development-64a6f01-20260504 → 0.0.0-development-93599d7-20260507
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 +4 -4
- package/dist/esm/generated/v2/client.js +6 -6
- package/dist/esm/generated/v2/descriptors.js +18 -18
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +25 -24
- package/dist/types/generated/v2/client.d.ts +174 -164
- package/dist/types/generated/v2/descriptors.d.ts +7 -7
- package/dist/types/generated/v2/types.d.ts +170 -166
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -284,8 +284,12 @@ const buildDomainApi = (baseClient) => ({
|
|
|
284
284
|
dnsListDnsZones: new ApiCallAsyncResourceFactory(descriptors.dnsListDnsZones, baseClient.domain.dnsListDnsZones).getApiResource,
|
|
285
285
|
/** Get a Domain. */
|
|
286
286
|
getDomain: new ApiCallAsyncResourceFactory(descriptors.domainGetDomain, baseClient.domain.getDomain).getApiResource,
|
|
287
|
+
/** Get a Contact-Verification. */
|
|
288
|
+
getContactVerification: new ApiCallAsyncResourceFactory(descriptors.domainGetContactVerification, baseClient.domain.getContactVerification).getApiResource,
|
|
287
289
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
288
290
|
getLatestScreenshot: new ApiCallAsyncResourceFactory(descriptors.domainGetLatestScreenshot, baseClient.domain.getLatestScreenshot).getApiResource,
|
|
291
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
292
|
+
listContactVerifications: new ApiCallAsyncResourceFactory(descriptors.domainListContactVerifications, baseClient.domain.listContactVerifications).getApiResource,
|
|
289
293
|
/** List the contact schemas for a TLD. */
|
|
290
294
|
listTldContactSchemas: new ApiCallAsyncResourceFactory(descriptors.domainListTldContactSchemas, baseClient.domain.listTldContactSchemas).getApiResource,
|
|
291
295
|
/** List TLDs. */
|
|
@@ -306,10 +310,6 @@ const buildDomainApi = (baseClient) => ({
|
|
|
306
310
|
sslGetCertificate: new ApiCallAsyncResourceFactory(descriptors.sslGetCertificate, baseClient.domain.sslGetCertificate).getApiResource,
|
|
307
311
|
/** List Certificates belonging to a Project or an Ingress. */
|
|
308
312
|
sslListCertificates: new ApiCallAsyncResourceFactory(descriptors.sslListCertificates, baseClient.domain.sslListCertificates).getApiResource,
|
|
309
|
-
/** Get a Contact-Verification. */
|
|
310
|
-
getContactVerification: new ApiCallAsyncResourceFactory(descriptors.domainGetContactVerification, baseClient.domain.getContactVerification).getApiResource,
|
|
311
|
-
/** List Contact-Verifications belonging to the executing user. */
|
|
312
|
-
listContactVerifications: new ApiCallAsyncResourceFactory(descriptors.domainListContactVerifications, baseClient.domain.listContactVerifications).getApiResource,
|
|
313
313
|
});
|
|
314
314
|
const buildFileApi = (baseClient) => ({
|
|
315
315
|
/** Get a File's meta. */
|
|
@@ -589,8 +589,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
589
589
|
getDomain: this.requestFunctionFactory(descriptors.domainGetDomain),
|
|
590
590
|
/** Delete a Domain. */
|
|
591
591
|
deleteDomain: this.requestFunctionFactory(descriptors.domainDeleteDomain),
|
|
592
|
+
/** Get a Contact-Verification. */
|
|
593
|
+
getContactVerification: this.requestFunctionFactory(descriptors.domainGetContactVerification),
|
|
592
594
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
593
595
|
getLatestScreenshot: this.requestFunctionFactory(descriptors.domainGetLatestScreenshot),
|
|
596
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
597
|
+
listContactVerifications: this.requestFunctionFactory(descriptors.domainListContactVerifications),
|
|
594
598
|
/** List the contact schemas for a TLD. */
|
|
595
599
|
listTldContactSchemas: this.requestFunctionFactory(descriptors.domainListTldContactSchemas),
|
|
596
600
|
/** List TLDs. */
|
|
@@ -601,6 +605,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
601
605
|
migrationListMigrations: this.requestFunctionFactory(descriptors.domainMigrationListMigrations),
|
|
602
606
|
/** Create a Domain-Migration from a pAccount into a Project. */
|
|
603
607
|
migrationRequestDomainMigration: this.requestFunctionFactory(descriptors.domainMigrationRequestDomainMigration),
|
|
608
|
+
/** Resends a Contact-Verification email. */
|
|
609
|
+
resendContactVerificationEmail: this.requestFunctionFactory(descriptors.domainResendContactVerificationEmail),
|
|
604
610
|
/** Resend a Domain email. */
|
|
605
611
|
resendDomainEmail: this.requestFunctionFactory(descriptors.domainResendDomainEmail),
|
|
606
612
|
/** Suggest a list of domains based on a prompt using AI. */
|
|
@@ -645,12 +651,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
645
651
|
sslListCertificates: this.requestFunctionFactory(descriptors.sslListCertificates),
|
|
646
652
|
/** Update the certificate of a CertificateRequest. */
|
|
647
653
|
sslSetCertificateRequestCertificate: this.requestFunctionFactory(descriptors.sslSetCertificateRequestCertificate),
|
|
648
|
-
/** Get a Contact-Verification. */
|
|
649
|
-
getContactVerification: this.requestFunctionFactory(descriptors.domainGetContactVerification),
|
|
650
|
-
/** List Contact-Verifications belonging to the executing user. */
|
|
651
|
-
listContactVerifications: this.requestFunctionFactory(descriptors.domainListContactVerifications),
|
|
652
|
-
/** Resends a Contact-Verification email. */
|
|
653
|
-
resendContactVerificationEmail: this.requestFunctionFactory(descriptors.domainResendContactVerificationEmail),
|
|
654
654
|
};
|
|
655
655
|
/** The mail API allows you to manage your mail accounts. */
|
|
656
656
|
mail = {
|
|
@@ -1336,12 +1336,24 @@ export const domainDeleteDomain = {
|
|
|
1336
1336
|
method: "DELETE",
|
|
1337
1337
|
operationId: "domain-delete-domain",
|
|
1338
1338
|
};
|
|
1339
|
+
/** Get a Contact-Verification. */
|
|
1340
|
+
export const domainGetContactVerification = {
|
|
1341
|
+
path: "/v2/contact-verifications/{contactVerificationId}",
|
|
1342
|
+
method: "GET",
|
|
1343
|
+
operationId: "domain-get-contact-verification",
|
|
1344
|
+
};
|
|
1339
1345
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
1340
1346
|
export const domainGetLatestScreenshot = {
|
|
1341
1347
|
path: "/v2/domains/latest-screenshot",
|
|
1342
1348
|
method: "GET",
|
|
1343
1349
|
operationId: "domain-get-latest-screenshot",
|
|
1344
1350
|
};
|
|
1351
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
1352
|
+
export const domainListContactVerifications = {
|
|
1353
|
+
path: "/v2/contact-verifications",
|
|
1354
|
+
method: "GET",
|
|
1355
|
+
operationId: "domain-list-contact-verifications",
|
|
1356
|
+
};
|
|
1345
1357
|
/** List the contact schemas for a TLD. */
|
|
1346
1358
|
export const domainListTldContactSchemas = {
|
|
1347
1359
|
path: "/v2/domain-tlds/{tld}/contact-schemas",
|
|
@@ -1372,6 +1384,12 @@ export const domainMigrationRequestDomainMigration = {
|
|
|
1372
1384
|
method: "POST",
|
|
1373
1385
|
operationId: "domain-migration-request-domain-migration",
|
|
1374
1386
|
};
|
|
1387
|
+
/** Resends a Contact-Verification email. */
|
|
1388
|
+
export const domainResendContactVerificationEmail = {
|
|
1389
|
+
path: "/v2/contact-verifications/{contactVerificationId}/actions/resend-contact-verification-email",
|
|
1390
|
+
method: "POST",
|
|
1391
|
+
operationId: "domain-resend-contact-verification-email",
|
|
1392
|
+
};
|
|
1375
1393
|
/** Resend a Domain email. */
|
|
1376
1394
|
export const domainResendDomainEmail = {
|
|
1377
1395
|
path: "/v2/domains/{domainId}/actions/resend-email",
|
|
@@ -2824,21 +2842,3 @@ export const verificationVerifyCompany = {
|
|
|
2824
2842
|
method: "POST",
|
|
2825
2843
|
operationId: "verification-verify-company",
|
|
2826
2844
|
};
|
|
2827
|
-
/** Get a Contact-Verification. */
|
|
2828
|
-
export const domainGetContactVerification = {
|
|
2829
|
-
path: "/v2/contact-verifications/{contactVerificationId}",
|
|
2830
|
-
method: "GET",
|
|
2831
|
-
operationId: "domain-get-contact-verification",
|
|
2832
|
-
};
|
|
2833
|
-
/** List Contact-Verifications belonging to the executing user. */
|
|
2834
|
-
export const domainListContactVerifications = {
|
|
2835
|
-
path: "/v2/contact-verifications",
|
|
2836
|
-
method: "GET",
|
|
2837
|
-
operationId: "domain-list-contact-verifications",
|
|
2838
|
-
};
|
|
2839
|
-
/** Resends a Contact-Verification email. */
|
|
2840
|
-
export const domainResendContactVerificationEmail = {
|
|
2841
|
-
path: "/v2/contact-verifications/{contactVerificationId}/actions/resend-contact-verification-email",
|
|
2842
|
-
method: "POST",
|
|
2843
|
-
operationId: "domain-resend-contact-verification-email",
|
|
2844
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.357.0';
|
|
@@ -427,6 +427,7 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
427
427
|
withExportsOnly?: boolean | undefined;
|
|
428
428
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
429
429
|
runningRestoresOnly?: boolean | undefined;
|
|
430
|
+
runningBackupsOnly?: boolean | undefined;
|
|
430
431
|
limit?: number | undefined;
|
|
431
432
|
skip?: number | undefined;
|
|
432
433
|
page?: number | undefined;
|
|
@@ -2188,6 +2189,18 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2188
2189
|
transferInAuthCode?: string | undefined;
|
|
2189
2190
|
usesDefaultNameserver: boolean;
|
|
2190
2191
|
}>;
|
|
2192
|
+
/** Get a Contact-Verification. */
|
|
2193
|
+
getContactVerification: (conf: {
|
|
2194
|
+
contactVerificationId: string;
|
|
2195
|
+
headers?: {
|
|
2196
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2197
|
+
"x-access-token"?: string | undefined;
|
|
2198
|
+
} | undefined;
|
|
2199
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2200
|
+
id: string;
|
|
2201
|
+
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
2202
|
+
typeData: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
2203
|
+
}>;
|
|
2191
2204
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
2192
2205
|
getLatestScreenshot: (conf: {
|
|
2193
2206
|
queryParameters: {
|
|
@@ -2201,6 +2214,18 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2201
2214
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2202
2215
|
reference?: string | undefined;
|
|
2203
2216
|
}>;
|
|
2217
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
2218
|
+
listContactVerifications: (conf?: {
|
|
2219
|
+
headers?: {
|
|
2220
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2221
|
+
"x-access-token"?: string | undefined;
|
|
2222
|
+
} | undefined;
|
|
2223
|
+
queryParameters?: {
|
|
2224
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2225
|
+
value?: string | undefined;
|
|
2226
|
+
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
2227
|
+
} | undefined;
|
|
2228
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerification[]>;
|
|
2204
2229
|
/** List the contact schemas for a TLD. */
|
|
2205
2230
|
listTldContactSchemas: (conf: {
|
|
2206
2231
|
tld: string;
|
|
@@ -2354,30 +2379,6 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2354
2379
|
ingressId?: string | undefined;
|
|
2355
2380
|
} | undefined;
|
|
2356
2381
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SslCertificate[]>;
|
|
2357
|
-
/** Get a Contact-Verification. */
|
|
2358
|
-
getContactVerification: (conf: {
|
|
2359
|
-
contactVerificationId: string;
|
|
2360
|
-
headers?: {
|
|
2361
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2362
|
-
"x-access-token"?: string | undefined;
|
|
2363
|
-
} | undefined;
|
|
2364
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2365
|
-
id: string;
|
|
2366
|
-
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
2367
|
-
typeData: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
2368
|
-
}>;
|
|
2369
|
-
/** List Contact-Verifications belonging to the executing user. */
|
|
2370
|
-
listContactVerifications: (conf?: {
|
|
2371
|
-
headers?: {
|
|
2372
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2373
|
-
"x-access-token"?: string | undefined;
|
|
2374
|
-
} | undefined;
|
|
2375
|
-
queryParameters?: {
|
|
2376
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2377
|
-
value?: string | undefined;
|
|
2378
|
-
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
2379
|
-
} | undefined;
|
|
2380
|
-
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerification[]>;
|
|
2381
2382
|
};
|
|
2382
2383
|
declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
2383
2384
|
/** Get a File's meta. */
|
|
@@ -2742,6 +2742,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2742
2742
|
withExportsOnly?: boolean | undefined;
|
|
2743
2743
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
2744
2744
|
runningRestoresOnly?: boolean | undefined;
|
|
2745
|
+
runningBackupsOnly?: boolean | undefined;
|
|
2745
2746
|
limit?: number | undefined;
|
|
2746
2747
|
skip?: number | undefined;
|
|
2747
2748
|
page?: number | undefined;
|
|
@@ -2760,6 +2761,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2760
2761
|
withExportsOnly?: boolean | undefined;
|
|
2761
2762
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
2762
2763
|
runningRestoresOnly?: boolean | undefined;
|
|
2764
|
+
runningBackupsOnly?: boolean | undefined;
|
|
2763
2765
|
limit?: number | undefined;
|
|
2764
2766
|
skip?: number | undefined;
|
|
2765
2767
|
page?: number | undefined;
|
|
@@ -2788,6 +2790,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2788
2790
|
withExportsOnly?: boolean | undefined;
|
|
2789
2791
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
2790
2792
|
runningRestoresOnly?: boolean | undefined;
|
|
2793
|
+
runningBackupsOnly?: boolean | undefined;
|
|
2791
2794
|
limit?: number | undefined;
|
|
2792
2795
|
skip?: number | undefined;
|
|
2793
2796
|
page?: number | undefined;
|
|
@@ -8365,7 +8368,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8365
8368
|
}>;
|
|
8366
8369
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
8367
8370
|
[x: string]: unknown;
|
|
8368
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8371
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8372
|
+
[x: string]: unknown;
|
|
8373
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8369
8374
|
[x: string]: unknown;
|
|
8370
8375
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8371
8376
|
headers?: Partial<{
|
|
@@ -8383,7 +8388,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8383
8388
|
}>;
|
|
8384
8389
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
8385
8390
|
[x: string]: unknown;
|
|
8386
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8391
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8392
|
+
[x: string]: unknown;
|
|
8393
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8387
8394
|
[x: string]: unknown;
|
|
8388
8395
|
}, 429, "application/json">>>;
|
|
8389
8396
|
/** Patch Contributor. */
|
|
@@ -12736,6 +12743,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12736
12743
|
data?: {
|
|
12737
12744
|
categoryId?: string | undefined;
|
|
12738
12745
|
mainUserId?: string | undefined;
|
|
12746
|
+
messageContent?: string | undefined;
|
|
12739
12747
|
notificationRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[] | undefined;
|
|
12740
12748
|
relatedTo?: {
|
|
12741
12749
|
aggregate: "user";
|
|
@@ -12792,6 +12800,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12792
12800
|
data: {
|
|
12793
12801
|
categoryId?: string | undefined;
|
|
12794
12802
|
mainUserId?: string | undefined;
|
|
12803
|
+
messageContent?: string | undefined;
|
|
12795
12804
|
notificationRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[] | undefined;
|
|
12796
12805
|
relatedTo?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference | undefined;
|
|
12797
12806
|
sharedWith?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference | undefined;
|
|
@@ -12811,6 +12820,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12811
12820
|
data: {
|
|
12812
12821
|
categoryId?: string | undefined;
|
|
12813
12822
|
mainUserId?: string | undefined;
|
|
12823
|
+
messageContent?: string | undefined;
|
|
12814
12824
|
notificationRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[] | undefined;
|
|
12815
12825
|
relatedTo?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference | undefined;
|
|
12816
12826
|
sharedWith?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference | undefined;
|
|
@@ -18603,6 +18613,62 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18603
18613
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18604
18614
|
[x: string]: unknown;
|
|
18605
18615
|
}, 429, "application/json">>>;
|
|
18616
|
+
/** Get a Contact-Verification. */
|
|
18617
|
+
getContactVerification: (request: {
|
|
18618
|
+
contactVerificationId: string;
|
|
18619
|
+
headers?: {
|
|
18620
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18621
|
+
"x-access-token"?: string | undefined;
|
|
18622
|
+
} | undefined;
|
|
18623
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18624
|
+
headers?: Partial<{
|
|
18625
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18626
|
+
}>;
|
|
18627
|
+
} & {
|
|
18628
|
+
pathParameters: {
|
|
18629
|
+
contactVerificationId: string;
|
|
18630
|
+
};
|
|
18631
|
+
} & {
|
|
18632
|
+
headers: {
|
|
18633
|
+
"x-access-token"?: string | undefined;
|
|
18634
|
+
} & Partial<{
|
|
18635
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18636
|
+
}>;
|
|
18637
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
18638
|
+
id: string;
|
|
18639
|
+
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
18640
|
+
typeData: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
18641
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18642
|
+
[x: string]: unknown;
|
|
18643
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18644
|
+
[x: string]: unknown;
|
|
18645
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18646
|
+
[x: string]: unknown;
|
|
18647
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18648
|
+
headers?: Partial<{
|
|
18649
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18650
|
+
}>;
|
|
18651
|
+
} & {
|
|
18652
|
+
pathParameters: {
|
|
18653
|
+
contactVerificationId: string;
|
|
18654
|
+
};
|
|
18655
|
+
} & {
|
|
18656
|
+
headers: {
|
|
18657
|
+
"x-access-token"?: string | undefined;
|
|
18658
|
+
} & Partial<{
|
|
18659
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18660
|
+
}>;
|
|
18661
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
18662
|
+
id: string;
|
|
18663
|
+
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
18664
|
+
typeData: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
18665
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18666
|
+
[x: string]: unknown;
|
|
18667
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18668
|
+
[x: string]: unknown;
|
|
18669
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18670
|
+
[x: string]: unknown;
|
|
18671
|
+
}, 429, "application/json">>>;
|
|
18606
18672
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
18607
18673
|
getLatestScreenshot: (request: {
|
|
18608
18674
|
queryParameters: {
|
|
@@ -18658,6 +18724,60 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18658
18724
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18659
18725
|
[x: string]: unknown;
|
|
18660
18726
|
}, 429, "application/json">>>;
|
|
18727
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
18728
|
+
listContactVerifications: (request?: {
|
|
18729
|
+
headers?: {
|
|
18730
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18731
|
+
"x-access-token"?: string | undefined;
|
|
18732
|
+
} | undefined;
|
|
18733
|
+
queryParameters?: {
|
|
18734
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18735
|
+
value?: string | undefined;
|
|
18736
|
+
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
18737
|
+
} | undefined;
|
|
18738
|
+
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18739
|
+
headers?: Partial<{
|
|
18740
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18741
|
+
}>;
|
|
18742
|
+
} & {
|
|
18743
|
+
queryParameters: {
|
|
18744
|
+
value?: string | undefined;
|
|
18745
|
+
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
18746
|
+
} & Partial<{
|
|
18747
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18748
|
+
}>;
|
|
18749
|
+
} & {
|
|
18750
|
+
headers: {
|
|
18751
|
+
"x-access-token"?: string | undefined;
|
|
18752
|
+
} & Partial<{
|
|
18753
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18754
|
+
}>;
|
|
18755
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerification[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18756
|
+
[x: string]: unknown;
|
|
18757
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18758
|
+
[x: string]: unknown;
|
|
18759
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18760
|
+
headers?: Partial<{
|
|
18761
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18762
|
+
}>;
|
|
18763
|
+
} & {
|
|
18764
|
+
queryParameters: {
|
|
18765
|
+
value?: string | undefined;
|
|
18766
|
+
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
18767
|
+
} & Partial<{
|
|
18768
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18769
|
+
}>;
|
|
18770
|
+
} & {
|
|
18771
|
+
headers: {
|
|
18772
|
+
"x-access-token"?: string | undefined;
|
|
18773
|
+
} & Partial<{
|
|
18774
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18775
|
+
}>;
|
|
18776
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerification[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18777
|
+
[x: string]: unknown;
|
|
18778
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18779
|
+
[x: string]: unknown;
|
|
18780
|
+
}, 429, "application/json">>>;
|
|
18661
18781
|
/** List the contact schemas for a TLD. */
|
|
18662
18782
|
listTldContactSchemas: (request: {
|
|
18663
18783
|
tld: string;
|
|
@@ -18881,6 +19001,54 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18881
19001
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18882
19002
|
[x: string]: unknown;
|
|
18883
19003
|
}, 429, "application/json">>>;
|
|
19004
|
+
/** Resends a Contact-Verification email. */
|
|
19005
|
+
resendContactVerificationEmail: (request: {
|
|
19006
|
+
contactVerificationId: string;
|
|
19007
|
+
headers?: {
|
|
19008
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19009
|
+
"x-access-token"?: string | undefined;
|
|
19010
|
+
} | undefined;
|
|
19011
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19012
|
+
headers?: Partial<{
|
|
19013
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19014
|
+
}>;
|
|
19015
|
+
} & {
|
|
19016
|
+
pathParameters: {
|
|
19017
|
+
contactVerificationId: string;
|
|
19018
|
+
};
|
|
19019
|
+
} & {
|
|
19020
|
+
headers: {
|
|
19021
|
+
"x-access-token"?: string | undefined;
|
|
19022
|
+
} & Partial<{
|
|
19023
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19024
|
+
}>;
|
|
19025
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19026
|
+
[x: string]: unknown;
|
|
19027
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19028
|
+
[x: string]: unknown;
|
|
19029
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19030
|
+
[x: string]: unknown;
|
|
19031
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19032
|
+
headers?: Partial<{
|
|
19033
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19034
|
+
}>;
|
|
19035
|
+
} & {
|
|
19036
|
+
pathParameters: {
|
|
19037
|
+
contactVerificationId: string;
|
|
19038
|
+
};
|
|
19039
|
+
} & {
|
|
19040
|
+
headers: {
|
|
19041
|
+
"x-access-token"?: string | undefined;
|
|
19042
|
+
} & Partial<{
|
|
19043
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19044
|
+
}>;
|
|
19045
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19046
|
+
[x: string]: unknown;
|
|
19047
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19048
|
+
[x: string]: unknown;
|
|
19049
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19050
|
+
[x: string]: unknown;
|
|
19051
|
+
}, 429, "application/json">>>;
|
|
18884
19052
|
/** Resend a Domain email. */
|
|
18885
19053
|
resendDomainEmail: (request: {
|
|
18886
19054
|
domainId: string;
|
|
@@ -20294,164 +20462,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
20294
20462
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20295
20463
|
[x: string]: unknown;
|
|
20296
20464
|
}, 429, "application/json">>>;
|
|
20297
|
-
/** Get a Contact-Verification. */
|
|
20298
|
-
getContactVerification: (request: {
|
|
20299
|
-
contactVerificationId: string;
|
|
20300
|
-
headers?: {
|
|
20301
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
20302
|
-
"x-access-token"?: string | undefined;
|
|
20303
|
-
} | undefined;
|
|
20304
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
20305
|
-
headers?: Partial<{
|
|
20306
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20307
|
-
}>;
|
|
20308
|
-
} & {
|
|
20309
|
-
pathParameters: {
|
|
20310
|
-
contactVerificationId: string;
|
|
20311
|
-
};
|
|
20312
|
-
} & {
|
|
20313
|
-
headers: {
|
|
20314
|
-
"x-access-token"?: string | undefined;
|
|
20315
|
-
} & Partial<{
|
|
20316
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20317
|
-
}>;
|
|
20318
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
20319
|
-
id: string;
|
|
20320
|
-
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
20321
|
-
typeData: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
20322
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20323
|
-
[x: string]: unknown;
|
|
20324
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20325
|
-
[x: string]: unknown;
|
|
20326
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20327
|
-
[x: string]: unknown;
|
|
20328
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
20329
|
-
headers?: Partial<{
|
|
20330
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20331
|
-
}>;
|
|
20332
|
-
} & {
|
|
20333
|
-
pathParameters: {
|
|
20334
|
-
contactVerificationId: string;
|
|
20335
|
-
};
|
|
20336
|
-
} & {
|
|
20337
|
-
headers: {
|
|
20338
|
-
"x-access-token"?: string | undefined;
|
|
20339
|
-
} & Partial<{
|
|
20340
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20341
|
-
}>;
|
|
20342
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
20343
|
-
id: string;
|
|
20344
|
-
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
20345
|
-
typeData: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
20346
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20347
|
-
[x: string]: unknown;
|
|
20348
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20349
|
-
[x: string]: unknown;
|
|
20350
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20351
|
-
[x: string]: unknown;
|
|
20352
|
-
}, 429, "application/json">>>;
|
|
20353
|
-
/** List Contact-Verifications belonging to the executing user. */
|
|
20354
|
-
listContactVerifications: (request?: {
|
|
20355
|
-
headers?: {
|
|
20356
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
20357
|
-
"x-access-token"?: string | undefined;
|
|
20358
|
-
} | undefined;
|
|
20359
|
-
queryParameters?: {
|
|
20360
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
20361
|
-
value?: string | undefined;
|
|
20362
|
-
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
20363
|
-
} | undefined;
|
|
20364
|
-
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
20365
|
-
headers?: Partial<{
|
|
20366
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20367
|
-
}>;
|
|
20368
|
-
} & {
|
|
20369
|
-
queryParameters: {
|
|
20370
|
-
value?: string | undefined;
|
|
20371
|
-
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
20372
|
-
} & Partial<{
|
|
20373
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20374
|
-
}>;
|
|
20375
|
-
} & {
|
|
20376
|
-
headers: {
|
|
20377
|
-
"x-access-token"?: string | undefined;
|
|
20378
|
-
} & Partial<{
|
|
20379
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20380
|
-
}>;
|
|
20381
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerification[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20382
|
-
[x: string]: unknown;
|
|
20383
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20384
|
-
[x: string]: unknown;
|
|
20385
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
20386
|
-
headers?: Partial<{
|
|
20387
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20388
|
-
}>;
|
|
20389
|
-
} & {
|
|
20390
|
-
queryParameters: {
|
|
20391
|
-
value?: string | undefined;
|
|
20392
|
-
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
20393
|
-
} & Partial<{
|
|
20394
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20395
|
-
}>;
|
|
20396
|
-
} & {
|
|
20397
|
-
headers: {
|
|
20398
|
-
"x-access-token"?: string | undefined;
|
|
20399
|
-
} & Partial<{
|
|
20400
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20401
|
-
}>;
|
|
20402
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerification[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20403
|
-
[x: string]: unknown;
|
|
20404
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20405
|
-
[x: string]: unknown;
|
|
20406
|
-
}, 429, "application/json">>>;
|
|
20407
|
-
/** Resends a Contact-Verification email. */
|
|
20408
|
-
resendContactVerificationEmail: (request: {
|
|
20409
|
-
contactVerificationId: string;
|
|
20410
|
-
headers?: {
|
|
20411
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
20412
|
-
"x-access-token"?: string | undefined;
|
|
20413
|
-
} | undefined;
|
|
20414
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
20415
|
-
headers?: Partial<{
|
|
20416
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20417
|
-
}>;
|
|
20418
|
-
} & {
|
|
20419
|
-
pathParameters: {
|
|
20420
|
-
contactVerificationId: string;
|
|
20421
|
-
};
|
|
20422
|
-
} & {
|
|
20423
|
-
headers: {
|
|
20424
|
-
"x-access-token"?: string | undefined;
|
|
20425
|
-
} & Partial<{
|
|
20426
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20427
|
-
}>;
|
|
20428
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
20429
|
-
[x: string]: unknown;
|
|
20430
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20431
|
-
[x: string]: unknown;
|
|
20432
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20433
|
-
[x: string]: unknown;
|
|
20434
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
20435
|
-
headers?: Partial<{
|
|
20436
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20437
|
-
}>;
|
|
20438
|
-
} & {
|
|
20439
|
-
pathParameters: {
|
|
20440
|
-
contactVerificationId: string;
|
|
20441
|
-
};
|
|
20442
|
-
} & {
|
|
20443
|
-
headers: {
|
|
20444
|
-
"x-access-token"?: string | undefined;
|
|
20445
|
-
} & Partial<{
|
|
20446
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
20447
|
-
}>;
|
|
20448
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
20449
|
-
[x: string]: unknown;
|
|
20450
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20451
|
-
[x: string]: unknown;
|
|
20452
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
20453
|
-
[x: string]: unknown;
|
|
20454
|
-
}, 429, "application/json">>>;
|
|
20455
20465
|
};
|
|
20456
20466
|
/** The mail API allows you to manage your mail accounts. */
|
|
20457
20467
|
readonly mail: {
|
|
@@ -27583,9 +27593,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
27583
27593
|
} & Partial<{
|
|
27584
27594
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
27585
27595
|
}>;
|
|
27586
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
27596
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
27587
27597
|
exists: boolean;
|
|
27588
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
27598
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
27589
27599
|
[x: string]: unknown;
|
|
27590
27600
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
27591
27601
|
data: {
|
|
@@ -27601,9 +27611,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
27601
27611
|
} & Partial<{
|
|
27602
27612
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
27603
27613
|
}>;
|
|
27604
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
27614
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
27605
27615
|
exists: boolean;
|
|
27606
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
27616
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
27607
27617
|
[x: string]: unknown;
|
|
27608
27618
|
}, 429, "application/json">>>;
|
|
27609
27619
|
};
|
|
@@ -220,7 +220,7 @@ export declare const contributorCancelVerification: OpenAPIOperation<RequestType
|
|
|
220
220
|
/** Get a Contributor. */
|
|
221
221
|
export declare const extensionGetContributor: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
222
222
|
/** Delete a Contributor. */
|
|
223
|
-
export declare const contributorDeleteContributor: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$412.Content.
|
|
223
|
+
export declare const contributorDeleteContributor: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
224
224
|
/** Patch Contributor. */
|
|
225
225
|
export declare const contributorPatchContributor: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
226
226
|
/** Express interest to be a contributor. */
|
|
@@ -449,8 +449,12 @@ export declare const domainCreateDomainAuthCode: OpenAPIOperation<RequestType<Si
|
|
|
449
449
|
export declare const domainGetDomain: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
450
450
|
/** Delete a Domain. */
|
|
451
451
|
export declare const domainDeleteDomain: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
452
|
+
/** Get a Contact-Verification. */
|
|
453
|
+
export declare const domainGetContactVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
452
454
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
453
455
|
export declare const domainGetLatestScreenshot: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsLatestScreenshot.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsLatestScreenshot.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsLatestScreenshot.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsLatestScreenshot.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsLatestScreenshot.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsLatestScreenshot.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsLatestScreenshot.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
456
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
457
|
+
export declare const domainListContactVerifications: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
454
458
|
/** List the contact schemas for a TLD. */
|
|
455
459
|
export declare const domainListTldContactSchemas: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainTldsTldContactSchemas.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainTldsTldContactSchemas.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainTldsTldContactSchemas.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainTldsTldContactSchemas.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainTldsTldContactSchemas.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainTldsTldContactSchemas.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
456
460
|
/** List TLDs. */
|
|
@@ -461,6 +465,8 @@ export declare const domainMigrationCheckMigrationIsPossible: OpenAPIOperation<R
|
|
|
461
465
|
export declare const domainMigrationListMigrations: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
462
466
|
/** Create a Domain-Migration from a pAccount into a Project. */
|
|
463
467
|
export declare const domainMigrationRequestDomainMigration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainMigrationsActionsRequest.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainMigrationsActionsRequest.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainMigrationsActionsRequest.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainMigrationsActionsRequest.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrationsActionsRequest.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrationsActionsRequest.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrationsActionsRequest.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrationsActionsRequest.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrationsActionsRequest.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
468
|
+
/** Resends a Contact-Verification email. */
|
|
469
|
+
export declare const domainResendContactVerificationEmail: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
464
470
|
/** Resend a Domain email. */
|
|
465
471
|
export declare const domainResendDomainEmail: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdActionsResendEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
466
472
|
/** Suggest a list of domains based on a prompt using AI. */
|
|
@@ -945,9 +951,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
945
951
|
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.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
946
952
|
/** Check if a company exists. */
|
|
947
953
|
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.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
948
|
-
/** Get a Contact-Verification. */
|
|
949
|
-
export declare const domainGetContactVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
950
|
-
/** List Contact-Verifications belonging to the executing user. */
|
|
951
|
-
export declare const domainListContactVerifications: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
952
|
-
/** Resends a Contact-Verification email. */
|
|
953
|
-
export declare const domainResendContactVerificationEmail: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -894,10 +894,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
894
894
|
type RequestData = InferredRequestData<typeof descriptors.domainDeleteDomain>;
|
|
895
895
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainDeleteDomain, TStatus>;
|
|
896
896
|
}
|
|
897
|
+
namespace DomainGetContactVerification {
|
|
898
|
+
type RequestData = InferredRequestData<typeof descriptors.domainGetContactVerification>;
|
|
899
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetContactVerification, TStatus>;
|
|
900
|
+
}
|
|
897
901
|
namespace DomainGetLatestScreenshot {
|
|
898
902
|
type RequestData = InferredRequestData<typeof descriptors.domainGetLatestScreenshot>;
|
|
899
903
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetLatestScreenshot, TStatus>;
|
|
900
904
|
}
|
|
905
|
+
namespace DomainListContactVerifications {
|
|
906
|
+
type RequestData = InferredRequestData<typeof descriptors.domainListContactVerifications>;
|
|
907
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListContactVerifications, TStatus>;
|
|
908
|
+
}
|
|
901
909
|
namespace DomainListTldContactSchemas {
|
|
902
910
|
type RequestData = InferredRequestData<typeof descriptors.domainListTldContactSchemas>;
|
|
903
911
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListTldContactSchemas, TStatus>;
|
|
@@ -918,6 +926,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
918
926
|
type RequestData = InferredRequestData<typeof descriptors.domainMigrationRequestDomainMigration>;
|
|
919
927
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainMigrationRequestDomainMigration, TStatus>;
|
|
920
928
|
}
|
|
929
|
+
namespace DomainResendContactVerificationEmail {
|
|
930
|
+
type RequestData = InferredRequestData<typeof descriptors.domainResendContactVerificationEmail>;
|
|
931
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainResendContactVerificationEmail, TStatus>;
|
|
932
|
+
}
|
|
921
933
|
namespace DomainResendDomainEmail {
|
|
922
934
|
type RequestData = InferredRequestData<typeof descriptors.domainResendDomainEmail>;
|
|
923
935
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainResendDomainEmail, TStatus>;
|
|
@@ -1886,18 +1898,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1886
1898
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1887
1899
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1888
1900
|
}
|
|
1889
|
-
namespace DomainGetContactVerification {
|
|
1890
|
-
type RequestData = InferredRequestData<typeof descriptors.domainGetContactVerification>;
|
|
1891
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetContactVerification, TStatus>;
|
|
1892
|
-
}
|
|
1893
|
-
namespace DomainListContactVerifications {
|
|
1894
|
-
type RequestData = InferredRequestData<typeof descriptors.domainListContactVerifications>;
|
|
1895
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListContactVerifications, TStatus>;
|
|
1896
|
-
}
|
|
1897
|
-
namespace DomainResendContactVerificationEmail {
|
|
1898
|
-
type RequestData = InferredRequestData<typeof descriptors.domainResendContactVerificationEmail>;
|
|
1899
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainResendContactVerificationEmail, TStatus>;
|
|
1900
|
-
}
|
|
1901
1901
|
}
|
|
1902
1902
|
namespace Components {
|
|
1903
1903
|
namespace Schemas {
|
|
@@ -3797,6 +3797,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3797
3797
|
interface DomainAuthCode2 {
|
|
3798
3798
|
expires: string;
|
|
3799
3799
|
}
|
|
3800
|
+
interface DomainContactVerificationAddressData {
|
|
3801
|
+
type: "address";
|
|
3802
|
+
value: string;
|
|
3803
|
+
}
|
|
3804
|
+
interface DomainContactVerificationEmailData {
|
|
3805
|
+
emailVerificationDeadline?: string;
|
|
3806
|
+
lastEmailSentDate?: string;
|
|
3807
|
+
type: "email";
|
|
3808
|
+
value: string;
|
|
3809
|
+
}
|
|
3810
|
+
interface DomainContactVerificationNameData {
|
|
3811
|
+
type: "name";
|
|
3812
|
+
value: string;
|
|
3813
|
+
}
|
|
3814
|
+
interface DomainContactVerification {
|
|
3815
|
+
id: string;
|
|
3816
|
+
status: MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
3817
|
+
typeData: MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
3818
|
+
}
|
|
3800
3819
|
interface DomainCreateDomainHandleData {
|
|
3801
3820
|
adminC?: MittwaldAPIV2.Components.Schemas.DomainHandleField[];
|
|
3802
3821
|
ownerC: MittwaldAPIV2.Components.Schemas.DomainHandleField[];
|
|
@@ -3911,6 +3930,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3911
3930
|
transferAuthentication: MittwaldAPIV2.Components.Schemas.DomainTransferAuthentication;
|
|
3912
3931
|
}
|
|
3913
3932
|
type DomainTransferAuthentication = "unspecified" | "code" | "email" | "push";
|
|
3933
|
+
type DomainContactVerificationStatus = "created" | "pending" | "completed" | "failed";
|
|
3934
|
+
type DomainContactVerificationType = "name" | "address" | "email";
|
|
3914
3935
|
interface MarketplaceAggregateReference {
|
|
3915
3936
|
aggregate: "project" | "customer";
|
|
3916
3937
|
domain: "project" | "customer";
|
|
@@ -6311,27 +6332,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6311
6332
|
}
|
|
6312
6333
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6313
6334
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
6314
|
-
interface DomainContactVerification {
|
|
6315
|
-
id: string;
|
|
6316
|
-
status: MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
6317
|
-
typeData: MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
6318
|
-
}
|
|
6319
|
-
interface DomainContactVerificationAddressData {
|
|
6320
|
-
type: "address";
|
|
6321
|
-
value: string;
|
|
6322
|
-
}
|
|
6323
|
-
interface DomainContactVerificationEmailData {
|
|
6324
|
-
emailVerificationDeadline?: string;
|
|
6325
|
-
lastEmailSentDate?: string;
|
|
6326
|
-
type: "email";
|
|
6327
|
-
value: string;
|
|
6328
|
-
}
|
|
6329
|
-
interface DomainContactVerificationNameData {
|
|
6330
|
-
type: "name";
|
|
6331
|
-
value: string;
|
|
6332
|
-
}
|
|
6333
|
-
type DomainContactVerificationStatus = "created" | "pending" | "completed" | "failed";
|
|
6334
|
-
type DomainContactVerificationType = "name" | "address" | "email";
|
|
6335
6335
|
interface CommonsAddress {
|
|
6336
6336
|
street: string;
|
|
6337
6337
|
houseNumber: string;
|
|
@@ -8709,6 +8709,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8709
8709
|
withExportsOnly?: boolean;
|
|
8710
8710
|
sortOrder?: MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder;
|
|
8711
8711
|
runningRestoresOnly?: boolean;
|
|
8712
|
+
runningBackupsOnly?: boolean;
|
|
8712
8713
|
limit?: number;
|
|
8713
8714
|
skip?: number;
|
|
8714
8715
|
page?: number;
|
|
@@ -12326,7 +12327,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12326
12327
|
}
|
|
12327
12328
|
namespace $412 {
|
|
12328
12329
|
namespace Content {
|
|
12329
|
-
|
|
12330
|
+
interface ApplicationJson {
|
|
12331
|
+
[k: string]: unknown;
|
|
12332
|
+
}
|
|
12330
12333
|
}
|
|
12331
12334
|
}
|
|
12332
12335
|
namespace $429 {
|
|
@@ -13068,6 +13071,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
13068
13071
|
interface RequestBody {
|
|
13069
13072
|
categoryId?: string;
|
|
13070
13073
|
mainUserId?: string;
|
|
13074
|
+
messageContent?: string;
|
|
13071
13075
|
notificationRoles?: MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[];
|
|
13072
13076
|
relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference;
|
|
13073
13077
|
sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference;
|
|
@@ -18081,6 +18085,52 @@ export declare namespace MittwaldAPIV2 {
|
|
|
18081
18085
|
}
|
|
18082
18086
|
}
|
|
18083
18087
|
}
|
|
18088
|
+
namespace V2ContactVerificationsContactVerificationId {
|
|
18089
|
+
namespace Get {
|
|
18090
|
+
namespace Parameters {
|
|
18091
|
+
type Path = {
|
|
18092
|
+
contactVerificationId: string;
|
|
18093
|
+
};
|
|
18094
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
18095
|
+
type Query = {};
|
|
18096
|
+
}
|
|
18097
|
+
namespace Responses {
|
|
18098
|
+
namespace $200 {
|
|
18099
|
+
namespace Content {
|
|
18100
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainContactVerification;
|
|
18101
|
+
}
|
|
18102
|
+
}
|
|
18103
|
+
namespace $400 {
|
|
18104
|
+
namespace Content {
|
|
18105
|
+
interface ApplicationJson {
|
|
18106
|
+
[k: string]: unknown;
|
|
18107
|
+
}
|
|
18108
|
+
}
|
|
18109
|
+
}
|
|
18110
|
+
namespace $404 {
|
|
18111
|
+
namespace Content {
|
|
18112
|
+
interface ApplicationJson {
|
|
18113
|
+
[k: string]: unknown;
|
|
18114
|
+
}
|
|
18115
|
+
}
|
|
18116
|
+
}
|
|
18117
|
+
namespace $429 {
|
|
18118
|
+
namespace Content {
|
|
18119
|
+
interface ApplicationJson {
|
|
18120
|
+
[k: string]: unknown;
|
|
18121
|
+
}
|
|
18122
|
+
}
|
|
18123
|
+
}
|
|
18124
|
+
namespace Default {
|
|
18125
|
+
namespace Content {
|
|
18126
|
+
interface ApplicationJson {
|
|
18127
|
+
[k: string]: unknown;
|
|
18128
|
+
}
|
|
18129
|
+
}
|
|
18130
|
+
}
|
|
18131
|
+
}
|
|
18132
|
+
}
|
|
18133
|
+
}
|
|
18084
18134
|
namespace V2DomainsLatestScreenshot {
|
|
18085
18135
|
namespace Get {
|
|
18086
18136
|
namespace Parameters {
|
|
@@ -18122,6 +18172,46 @@ export declare namespace MittwaldAPIV2 {
|
|
|
18122
18172
|
}
|
|
18123
18173
|
}
|
|
18124
18174
|
}
|
|
18175
|
+
namespace V2ContactVerifications {
|
|
18176
|
+
namespace Get {
|
|
18177
|
+
namespace Parameters {
|
|
18178
|
+
type Path = {};
|
|
18179
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
18180
|
+
type Query = {
|
|
18181
|
+
value?: string;
|
|
18182
|
+
type?: MittwaldAPIV2.Components.Schemas.DomainContactVerificationType;
|
|
18183
|
+
};
|
|
18184
|
+
}
|
|
18185
|
+
namespace Responses {
|
|
18186
|
+
namespace $200 {
|
|
18187
|
+
namespace Content {
|
|
18188
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainContactVerification[];
|
|
18189
|
+
}
|
|
18190
|
+
}
|
|
18191
|
+
namespace $400 {
|
|
18192
|
+
namespace Content {
|
|
18193
|
+
interface ApplicationJson {
|
|
18194
|
+
[k: string]: unknown;
|
|
18195
|
+
}
|
|
18196
|
+
}
|
|
18197
|
+
}
|
|
18198
|
+
namespace $429 {
|
|
18199
|
+
namespace Content {
|
|
18200
|
+
interface ApplicationJson {
|
|
18201
|
+
[k: string]: unknown;
|
|
18202
|
+
}
|
|
18203
|
+
}
|
|
18204
|
+
}
|
|
18205
|
+
namespace Default {
|
|
18206
|
+
namespace Content {
|
|
18207
|
+
interface ApplicationJson {
|
|
18208
|
+
[k: string]: unknown;
|
|
18209
|
+
}
|
|
18210
|
+
}
|
|
18211
|
+
}
|
|
18212
|
+
}
|
|
18213
|
+
}
|
|
18214
|
+
}
|
|
18125
18215
|
namespace V2DomainTldsTldContactSchemas {
|
|
18126
18216
|
namespace Get {
|
|
18127
18217
|
namespace Parameters {
|
|
@@ -18316,6 +18406,52 @@ export declare namespace MittwaldAPIV2 {
|
|
|
18316
18406
|
}
|
|
18317
18407
|
}
|
|
18318
18408
|
}
|
|
18409
|
+
namespace V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail {
|
|
18410
|
+
namespace Post {
|
|
18411
|
+
namespace Parameters {
|
|
18412
|
+
type Path = {
|
|
18413
|
+
contactVerificationId: string;
|
|
18414
|
+
};
|
|
18415
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
18416
|
+
type Query = {};
|
|
18417
|
+
}
|
|
18418
|
+
namespace Responses {
|
|
18419
|
+
namespace $204 {
|
|
18420
|
+
namespace Content {
|
|
18421
|
+
type Empty = unknown;
|
|
18422
|
+
}
|
|
18423
|
+
}
|
|
18424
|
+
namespace $400 {
|
|
18425
|
+
namespace Content {
|
|
18426
|
+
interface ApplicationJson {
|
|
18427
|
+
[k: string]: unknown;
|
|
18428
|
+
}
|
|
18429
|
+
}
|
|
18430
|
+
}
|
|
18431
|
+
namespace $412 {
|
|
18432
|
+
namespace Content {
|
|
18433
|
+
interface ApplicationJson {
|
|
18434
|
+
[k: string]: unknown;
|
|
18435
|
+
}
|
|
18436
|
+
}
|
|
18437
|
+
}
|
|
18438
|
+
namespace $429 {
|
|
18439
|
+
namespace Content {
|
|
18440
|
+
interface ApplicationJson {
|
|
18441
|
+
[k: string]: unknown;
|
|
18442
|
+
}
|
|
18443
|
+
}
|
|
18444
|
+
}
|
|
18445
|
+
namespace Default {
|
|
18446
|
+
namespace Content {
|
|
18447
|
+
interface ApplicationJson {
|
|
18448
|
+
[k: string]: unknown;
|
|
18449
|
+
}
|
|
18450
|
+
}
|
|
18451
|
+
}
|
|
18452
|
+
}
|
|
18453
|
+
}
|
|
18454
|
+
}
|
|
18319
18455
|
namespace V2DomainsDomainIdActionsResendEmail {
|
|
18320
18456
|
namespace Post {
|
|
18321
18457
|
namespace Parameters {
|
|
@@ -30637,137 +30773,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
30637
30773
|
}
|
|
30638
30774
|
}
|
|
30639
30775
|
}
|
|
30640
|
-
namespace V2ContactVerificationsContactVerificationId {
|
|
30641
|
-
namespace Get {
|
|
30642
|
-
namespace Parameters {
|
|
30643
|
-
type Path = {
|
|
30644
|
-
contactVerificationId: string;
|
|
30645
|
-
};
|
|
30646
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
30647
|
-
type Query = {};
|
|
30648
|
-
}
|
|
30649
|
-
namespace Responses {
|
|
30650
|
-
namespace $200 {
|
|
30651
|
-
namespace Content {
|
|
30652
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainContactVerification;
|
|
30653
|
-
}
|
|
30654
|
-
}
|
|
30655
|
-
namespace $400 {
|
|
30656
|
-
namespace Content {
|
|
30657
|
-
interface ApplicationJson {
|
|
30658
|
-
[k: string]: unknown;
|
|
30659
|
-
}
|
|
30660
|
-
}
|
|
30661
|
-
}
|
|
30662
|
-
namespace $404 {
|
|
30663
|
-
namespace Content {
|
|
30664
|
-
interface ApplicationJson {
|
|
30665
|
-
[k: string]: unknown;
|
|
30666
|
-
}
|
|
30667
|
-
}
|
|
30668
|
-
}
|
|
30669
|
-
namespace $429 {
|
|
30670
|
-
namespace Content {
|
|
30671
|
-
interface ApplicationJson {
|
|
30672
|
-
[k: string]: unknown;
|
|
30673
|
-
}
|
|
30674
|
-
}
|
|
30675
|
-
}
|
|
30676
|
-
namespace Default {
|
|
30677
|
-
namespace Content {
|
|
30678
|
-
interface ApplicationJson {
|
|
30679
|
-
[k: string]: unknown;
|
|
30680
|
-
}
|
|
30681
|
-
}
|
|
30682
|
-
}
|
|
30683
|
-
}
|
|
30684
|
-
}
|
|
30685
|
-
}
|
|
30686
|
-
namespace V2ContactVerifications {
|
|
30687
|
-
namespace Get {
|
|
30688
|
-
namespace Parameters {
|
|
30689
|
-
type Path = {};
|
|
30690
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
30691
|
-
type Query = {
|
|
30692
|
-
value?: string;
|
|
30693
|
-
type?: MittwaldAPIV2.Components.Schemas.DomainContactVerificationType;
|
|
30694
|
-
};
|
|
30695
|
-
}
|
|
30696
|
-
namespace Responses {
|
|
30697
|
-
namespace $200 {
|
|
30698
|
-
namespace Content {
|
|
30699
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainContactVerification[];
|
|
30700
|
-
}
|
|
30701
|
-
}
|
|
30702
|
-
namespace $400 {
|
|
30703
|
-
namespace Content {
|
|
30704
|
-
interface ApplicationJson {
|
|
30705
|
-
[k: string]: unknown;
|
|
30706
|
-
}
|
|
30707
|
-
}
|
|
30708
|
-
}
|
|
30709
|
-
namespace $429 {
|
|
30710
|
-
namespace Content {
|
|
30711
|
-
interface ApplicationJson {
|
|
30712
|
-
[k: string]: unknown;
|
|
30713
|
-
}
|
|
30714
|
-
}
|
|
30715
|
-
}
|
|
30716
|
-
namespace Default {
|
|
30717
|
-
namespace Content {
|
|
30718
|
-
interface ApplicationJson {
|
|
30719
|
-
[k: string]: unknown;
|
|
30720
|
-
}
|
|
30721
|
-
}
|
|
30722
|
-
}
|
|
30723
|
-
}
|
|
30724
|
-
}
|
|
30725
|
-
}
|
|
30726
|
-
namespace V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail {
|
|
30727
|
-
namespace Post {
|
|
30728
|
-
namespace Parameters {
|
|
30729
|
-
type Path = {
|
|
30730
|
-
contactVerificationId: string;
|
|
30731
|
-
};
|
|
30732
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
30733
|
-
type Query = {};
|
|
30734
|
-
}
|
|
30735
|
-
namespace Responses {
|
|
30736
|
-
namespace $204 {
|
|
30737
|
-
namespace Content {
|
|
30738
|
-
type Empty = unknown;
|
|
30739
|
-
}
|
|
30740
|
-
}
|
|
30741
|
-
namespace $400 {
|
|
30742
|
-
namespace Content {
|
|
30743
|
-
interface ApplicationJson {
|
|
30744
|
-
[k: string]: unknown;
|
|
30745
|
-
}
|
|
30746
|
-
}
|
|
30747
|
-
}
|
|
30748
|
-
namespace $412 {
|
|
30749
|
-
namespace Content {
|
|
30750
|
-
interface ApplicationJson {
|
|
30751
|
-
[k: string]: unknown;
|
|
30752
|
-
}
|
|
30753
|
-
}
|
|
30754
|
-
}
|
|
30755
|
-
namespace $429 {
|
|
30756
|
-
namespace Content {
|
|
30757
|
-
interface ApplicationJson {
|
|
30758
|
-
[k: string]: unknown;
|
|
30759
|
-
}
|
|
30760
|
-
}
|
|
30761
|
-
}
|
|
30762
|
-
namespace Default {
|
|
30763
|
-
namespace Content {
|
|
30764
|
-
interface ApplicationJson {
|
|
30765
|
-
[k: string]: unknown;
|
|
30766
|
-
}
|
|
30767
|
-
}
|
|
30768
|
-
}
|
|
30769
|
-
}
|
|
30770
|
-
}
|
|
30771
|
-
}
|
|
30772
30776
|
}
|
|
30773
30777
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.357.0';
|
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-93599d7-20260507",
|
|
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-93599d7-20260507",
|
|
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-93599d7-20260507",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
55
|
"@types/node": "^22.18.11",
|
|
56
56
|
"@types/react": "^18.3.26",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "b25fed8973082221a946569f09864fd782918102"
|
|
84
84
|
}
|