@mittwald/api-client 0.0.0-development-f99f5ee-20251020 → 0.0.0-development-7f54d64-20251022
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 +5 -1
- package/dist/esm/generated/v2/client.js +13 -3
- package/dist/esm/generated/v2/descriptors.js +35 -5
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +30 -2
- package/dist/types/generated/v2/client.d.ts +388 -76
- package/dist/types/generated/v2/descriptors.d.ts +13 -3
- package/dist/types/generated/v2/types.d.ts +301 -11
- package/dist/types/version.d.ts +1 -1
- package/package.json +12 -12
|
@@ -48,8 +48,10 @@ const buildBackupApi = (baseClient) => ({
|
|
|
48
48
|
getProjectBackupSchedule: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupSchedule, baseClient.backup.getProjectBackupSchedule).getApiResource,
|
|
49
49
|
/** Get a ProjectBackup. */
|
|
50
50
|
getProjectBackup: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackup, baseClient.backup.getProjectBackup).getApiResource,
|
|
51
|
-
/** Get
|
|
51
|
+
/** Get paths for a ProjectBackup. */
|
|
52
52
|
getProjectBackupDirectories: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDirectories, baseClient.backup.getProjectBackupDirectories).getApiResource,
|
|
53
|
+
/** Get databases for a ProjectBackup. */
|
|
54
|
+
getProjectBackupDatabases: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDatabases, baseClient.backup.getProjectBackupDatabases).getApiResource,
|
|
53
55
|
});
|
|
54
56
|
const buildContainerApi = (baseClient) => ({
|
|
55
57
|
/** List Registries belonging to a Project. */
|
|
@@ -188,6 +190,8 @@ const buildCronjobApi = (baseClient) => ({
|
|
|
188
190
|
getCronjob: new ApiCallAsyncResourceFactory(descriptors.cronjobGetCronjob, baseClient.cronjob.getCronjob).getApiResource,
|
|
189
191
|
/** Get a CronjobExecution. */
|
|
190
192
|
getExecution: new ApiCallAsyncResourceFactory(descriptors.cronjobGetExecution, baseClient.cronjob.getExecution).getApiResource,
|
|
193
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
194
|
+
getExecutionAnalysis: new ApiCallAsyncResourceFactory(descriptors.cronjobGetExecutionAnalysis, baseClient.cronjob.getExecutionAnalysis).getApiResource,
|
|
191
195
|
});
|
|
192
196
|
const buildCustomerApi = (baseClient) => ({
|
|
193
197
|
/** List Invites belonging to a Customer. */
|
|
@@ -86,12 +86,16 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
86
86
|
getProjectBackup: this.requestFunctionFactory(descriptors.backupGetProjectBackup),
|
|
87
87
|
/** Delete a ProjectBackup. */
|
|
88
88
|
deleteProjectBackup: this.requestFunctionFactory(descriptors.backupDeleteProjectBackup),
|
|
89
|
-
/** Get
|
|
89
|
+
/** Get paths for a ProjectBackup. */
|
|
90
90
|
getProjectBackupDirectories: this.requestFunctionFactory(descriptors.backupGetProjectBackupDirectories),
|
|
91
91
|
/** Restore a ProjectBackup's path. */
|
|
92
92
|
requestProjectBackupRestorePath: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestorePath),
|
|
93
93
|
/** Change the description of a ProjectBackup. */
|
|
94
94
|
updateProjectBackupDescription: this.requestFunctionFactory(descriptors.backupUpdateProjectBackupDescription),
|
|
95
|
+
/** Restore a ProjectBackup's database. */
|
|
96
|
+
requestProjectBackupRestoreDatabase: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestoreDatabase),
|
|
97
|
+
/** Get databases for a ProjectBackup. */
|
|
98
|
+
getProjectBackupDatabases: this.requestFunctionFactory(descriptors.backupGetProjectBackupDatabases),
|
|
95
99
|
};
|
|
96
100
|
/** The container API allows you to manage your stacks, containers, volumes and registries. */
|
|
97
101
|
container = {
|
|
@@ -381,6 +385,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
381
385
|
getExecution: this.requestFunctionFactory(descriptors.cronjobGetExecution),
|
|
382
386
|
/** Update a Cronjob's app id. */
|
|
383
387
|
updateCronjobAppId: this.requestFunctionFactory(descriptors.cronjobUpdateCronjobAppId),
|
|
388
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
389
|
+
getExecutionAnalysis: this.requestFunctionFactory(descriptors.cronjobGetExecutionAnalysis),
|
|
384
390
|
};
|
|
385
391
|
/** The customer API allows you to manage your own organizations and users. */
|
|
386
392
|
customer = {
|
|
@@ -437,6 +443,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
437
443
|
};
|
|
438
444
|
/** The database API allows you to manage your databases, like MySQL and Redis databases. */
|
|
439
445
|
database = {
|
|
446
|
+
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
447
|
+
copyMysqlDatabase: this.requestFunctionFactory(descriptors.databaseCopyMysqlDatabase),
|
|
440
448
|
/** List MySQLDatabases belonging to a Project. */
|
|
441
449
|
listMysqlDatabases: this.requestFunctionFactory(descriptors.databaseListMysqlDatabases),
|
|
442
450
|
/** Create a MySQLDatabase with a MySQLUser. */
|
|
@@ -485,8 +493,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
485
493
|
updateRedisDatabaseConfiguration: this.requestFunctionFactory(descriptors.databaseUpdateRedisDatabaseConfiguration),
|
|
486
494
|
/** Update a RedisDatabase's description. */
|
|
487
495
|
updateRedisDatabaseDescription: this.requestFunctionFactory(descriptors.databaseUpdateRedisDatabaseDescription),
|
|
488
|
-
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
489
|
-
copyMysqlDatabase: this.requestFunctionFactory(descriptors.databaseCopyMysqlDatabase),
|
|
490
496
|
};
|
|
491
497
|
/** The domain API allows you to manage your domains, DNS records, SSL certificates and ingress resources. */
|
|
492
498
|
domain = {
|
|
@@ -574,6 +580,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
574
580
|
sslListCertificates: this.requestFunctionFactory(descriptors.sslListCertificates),
|
|
575
581
|
/** Update the certificate of a CertificateRequest. */
|
|
576
582
|
sslSetCertificateRequestCertificate: this.requestFunctionFactory(descriptors.sslSetCertificateRequestCertificate),
|
|
583
|
+
/** Create a scheduled deletion of a Domain. */
|
|
584
|
+
createScheduledDeletion: this.requestFunctionFactory(descriptors.domainCreateScheduledDeletion),
|
|
585
|
+
/** Cancel a scheduled deletion of a Domain. */
|
|
586
|
+
cancelScheduledDeletion: this.requestFunctionFactory(descriptors.domainCancelScheduledDeletion),
|
|
577
587
|
};
|
|
578
588
|
/** The mail API allows you to manage your mail accounts. */
|
|
579
589
|
mail = {
|
|
@@ -220,7 +220,7 @@ export const backupDeleteProjectBackup = {
|
|
|
220
220
|
method: "DELETE",
|
|
221
221
|
operationId: "backup-delete-project-backup",
|
|
222
222
|
};
|
|
223
|
-
/** Get
|
|
223
|
+
/** Get paths for a ProjectBackup. */
|
|
224
224
|
export const backupGetProjectBackupDirectories = {
|
|
225
225
|
path: "/v2/project-backups/{projectBackupId}/path",
|
|
226
226
|
method: "GET",
|
|
@@ -868,6 +868,12 @@ export const customerResendCustomerInviteMail = {
|
|
|
868
868
|
method: "POST",
|
|
869
869
|
operationId: "customer-resend-customer-invite-mail",
|
|
870
870
|
};
|
|
871
|
+
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
872
|
+
export const databaseCopyMysqlDatabase = {
|
|
873
|
+
path: "/v2/mysql-databases/{mysqlDatabaseId}/actions/copy",
|
|
874
|
+
method: "POST",
|
|
875
|
+
operationId: "database-copy-mysql-database",
|
|
876
|
+
};
|
|
871
877
|
/** List MySQLDatabases belonging to a Project. */
|
|
872
878
|
export const databaseListMysqlDatabases = {
|
|
873
879
|
path: "/v2/projects/{projectId}/mysql-databases",
|
|
@@ -2608,9 +2614,33 @@ export const verificationVerifyCompany = {
|
|
|
2608
2614
|
method: "POST",
|
|
2609
2615
|
operationId: "verification-verify-company",
|
|
2610
2616
|
};
|
|
2611
|
-
/**
|
|
2612
|
-
export const
|
|
2613
|
-
path: "/v2/
|
|
2617
|
+
/** Create a scheduled deletion of a Domain. */
|
|
2618
|
+
export const domainCreateScheduledDeletion = {
|
|
2619
|
+
path: "/v2/domains/{domainId}/scheduled-deletion",
|
|
2614
2620
|
method: "POST",
|
|
2615
|
-
operationId: "
|
|
2621
|
+
operationId: "domain-create-scheduled-deletion",
|
|
2622
|
+
};
|
|
2623
|
+
/** Cancel a scheduled deletion of a Domain. */
|
|
2624
|
+
export const domainCancelScheduledDeletion = {
|
|
2625
|
+
path: "/v2/domains/{domainId}/scheduled-deletion",
|
|
2626
|
+
method: "DELETE",
|
|
2627
|
+
operationId: "domain-cancel-scheduled-deletion",
|
|
2628
|
+
};
|
|
2629
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
2630
|
+
export const cronjobGetExecutionAnalysis = {
|
|
2631
|
+
path: "/v2/cronjobs/{cronjobId}/executions/{executionId}/analysis",
|
|
2632
|
+
method: "GET",
|
|
2633
|
+
operationId: "cronjob-get-execution-analysis",
|
|
2634
|
+
};
|
|
2635
|
+
/** Restore a ProjectBackup's database. */
|
|
2636
|
+
export const backupRequestProjectBackupRestoreDatabase = {
|
|
2637
|
+
path: "/v2/project-backups/{projectBackupId}/restore-database",
|
|
2638
|
+
method: "POST",
|
|
2639
|
+
operationId: "backup-request-project-backup-restore-database",
|
|
2640
|
+
};
|
|
2641
|
+
/** Get databases for a ProjectBackup. */
|
|
2642
|
+
export const backupGetProjectBackupDatabases = {
|
|
2643
|
+
path: "/v2/project-backups/{projectBackupId}/database",
|
|
2644
|
+
method: "GET",
|
|
2645
|
+
operationId: "backup-get-project-backup-databases",
|
|
2616
2646
|
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.242.3';
|
|
@@ -347,7 +347,7 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
347
347
|
restorePath?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePath | undefined;
|
|
348
348
|
status: string;
|
|
349
349
|
}>;
|
|
350
|
-
/** Get
|
|
350
|
+
/** Get paths for a ProjectBackup. */
|
|
351
351
|
getProjectBackupDirectories: (conf: {
|
|
352
352
|
projectBackupId: string;
|
|
353
353
|
headers?: {
|
|
@@ -369,6 +369,21 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
369
369
|
size: number;
|
|
370
370
|
target?: string | undefined;
|
|
371
371
|
}>;
|
|
372
|
+
/** Get databases for a ProjectBackup. */
|
|
373
|
+
getProjectBackupDatabases: (conf: {
|
|
374
|
+
projectBackupId: string;
|
|
375
|
+
headers?: {
|
|
376
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
377
|
+
"x-access-token"?: string | undefined;
|
|
378
|
+
} | undefined;
|
|
379
|
+
queryParameters?: {
|
|
380
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
381
|
+
directory?: string | undefined;
|
|
382
|
+
} | undefined;
|
|
383
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
384
|
+
databases: string[];
|
|
385
|
+
projectBackupId: string;
|
|
386
|
+
}>;
|
|
372
387
|
};
|
|
373
388
|
declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
374
389
|
/** List Registries belonging to a Project. */
|
|
@@ -1485,6 +1500,19 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1485
1500
|
id?: string;
|
|
1486
1501
|
} | undefined;
|
|
1487
1502
|
}>;
|
|
1503
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
1504
|
+
getExecutionAnalysis: (conf: {
|
|
1505
|
+
executionId: string;
|
|
1506
|
+
cronjobId: string;
|
|
1507
|
+
headers?: {
|
|
1508
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1509
|
+
"x-access-token"?: string | undefined;
|
|
1510
|
+
} | undefined;
|
|
1511
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1512
|
+
issues?: string[] | undefined;
|
|
1513
|
+
message: string;
|
|
1514
|
+
recommendation?: string | undefined;
|
|
1515
|
+
}>;
|
|
1488
1516
|
};
|
|
1489
1517
|
declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1490
1518
|
/** List Invites belonging to a Customer. */
|
|
@@ -1883,6 +1911,7 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1883
1911
|
nameservers: string[];
|
|
1884
1912
|
processes?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainProcess[] | undefined;
|
|
1885
1913
|
projectId: string;
|
|
1914
|
+
scheduledDeletionDate?: string | undefined;
|
|
1886
1915
|
transferInAuthCode?: string | undefined;
|
|
1887
1916
|
usesDefaultNameserver: boolean;
|
|
1888
1917
|
}>;
|
|
@@ -2916,7 +2945,6 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2916
2945
|
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[] | undefined;
|
|
2917
2946
|
id: string;
|
|
2918
2947
|
imageRefId?: string | undefined;
|
|
2919
|
-
ipAddress?: string | undefined;
|
|
2920
2948
|
isReady: boolean;
|
|
2921
2949
|
projectHostingId?: string | undefined;
|
|
2922
2950
|
readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
@@ -2262,7 +2262,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2262
2262
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2263
2263
|
[x: string]: unknown;
|
|
2264
2264
|
}, 429, "application/json">>>;
|
|
2265
|
-
/** Get
|
|
2265
|
+
/** Get paths for a ProjectBackup. */
|
|
2266
2266
|
getProjectBackupDirectories: (request: {
|
|
2267
2267
|
projectBackupId: string;
|
|
2268
2268
|
headers?: {
|
|
@@ -2486,6 +2486,156 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2486
2486
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2487
2487
|
[x: string]: unknown;
|
|
2488
2488
|
}, 429, "application/json">>>;
|
|
2489
|
+
/** Restore a ProjectBackup's database. */
|
|
2490
|
+
requestProjectBackupRestoreDatabase: (request: {
|
|
2491
|
+
data: {
|
|
2492
|
+
databaseName: string;
|
|
2493
|
+
destination?: {
|
|
2494
|
+
database_name: string;
|
|
2495
|
+
user_password: string;
|
|
2496
|
+
version: string;
|
|
2497
|
+
} | {
|
|
2498
|
+
database_name: string;
|
|
2499
|
+
} | undefined;
|
|
2500
|
+
};
|
|
2501
|
+
projectBackupId: string;
|
|
2502
|
+
headers?: {
|
|
2503
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2504
|
+
"x-access-token"?: string | undefined;
|
|
2505
|
+
} | undefined;
|
|
2506
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2507
|
+
data: {
|
|
2508
|
+
databaseName: string;
|
|
2509
|
+
destination?: (import("./types.js").MittwaldAPIV2.Components.Schemas.BackupNewDatabase | import("./types.js").MittwaldAPIV2.Components.Schemas.BackupExistingDatabase) | undefined;
|
|
2510
|
+
};
|
|
2511
|
+
} & {
|
|
2512
|
+
pathParameters: {
|
|
2513
|
+
projectBackupId: string;
|
|
2514
|
+
};
|
|
2515
|
+
} & {
|
|
2516
|
+
headers?: Partial<{
|
|
2517
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2518
|
+
}>;
|
|
2519
|
+
} & {
|
|
2520
|
+
headers: {
|
|
2521
|
+
"x-access-token"?: string | undefined;
|
|
2522
|
+
} & Partial<{
|
|
2523
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2524
|
+
}>;
|
|
2525
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2526
|
+
[x: string]: unknown;
|
|
2527
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2528
|
+
[x: string]: unknown;
|
|
2529
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2530
|
+
[x: string]: unknown;
|
|
2531
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2532
|
+
[x: string]: unknown;
|
|
2533
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2534
|
+
data: {
|
|
2535
|
+
databaseName: string;
|
|
2536
|
+
destination?: (import("./types.js").MittwaldAPIV2.Components.Schemas.BackupNewDatabase | import("./types.js").MittwaldAPIV2.Components.Schemas.BackupExistingDatabase) | undefined;
|
|
2537
|
+
};
|
|
2538
|
+
} & {
|
|
2539
|
+
pathParameters: {
|
|
2540
|
+
projectBackupId: string;
|
|
2541
|
+
};
|
|
2542
|
+
} & {
|
|
2543
|
+
headers?: Partial<{
|
|
2544
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2545
|
+
}>;
|
|
2546
|
+
} & {
|
|
2547
|
+
headers: {
|
|
2548
|
+
"x-access-token"?: string | undefined;
|
|
2549
|
+
} & Partial<{
|
|
2550
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2551
|
+
}>;
|
|
2552
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2553
|
+
[x: string]: unknown;
|
|
2554
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2555
|
+
[x: string]: unknown;
|
|
2556
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2557
|
+
[x: string]: unknown;
|
|
2558
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2559
|
+
[x: string]: unknown;
|
|
2560
|
+
}, 429, "application/json">>>;
|
|
2561
|
+
/** Get databases for a ProjectBackup. */
|
|
2562
|
+
getProjectBackupDatabases: (request: {
|
|
2563
|
+
projectBackupId: string;
|
|
2564
|
+
headers?: {
|
|
2565
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2566
|
+
"x-access-token"?: string | undefined;
|
|
2567
|
+
} | undefined;
|
|
2568
|
+
queryParameters?: {
|
|
2569
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2570
|
+
directory?: string | undefined;
|
|
2571
|
+
} | undefined;
|
|
2572
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2573
|
+
headers?: Partial<{
|
|
2574
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2575
|
+
}>;
|
|
2576
|
+
} & {
|
|
2577
|
+
pathParameters: {
|
|
2578
|
+
projectBackupId: string;
|
|
2579
|
+
};
|
|
2580
|
+
} & {
|
|
2581
|
+
queryParameters: {
|
|
2582
|
+
directory?: string | undefined;
|
|
2583
|
+
} & Partial<{
|
|
2584
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2585
|
+
}>;
|
|
2586
|
+
} & {
|
|
2587
|
+
headers: {
|
|
2588
|
+
"x-access-token"?: string | undefined;
|
|
2589
|
+
} & Partial<{
|
|
2590
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2591
|
+
}>;
|
|
2592
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
2593
|
+
databases: string[];
|
|
2594
|
+
projectBackupId: string;
|
|
2595
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2596
|
+
[x: string]: unknown;
|
|
2597
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2598
|
+
[x: string]: unknown;
|
|
2599
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2600
|
+
[x: string]: unknown;
|
|
2601
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2602
|
+
[x: string]: unknown;
|
|
2603
|
+
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2604
|
+
[x: string]: unknown;
|
|
2605
|
+
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2606
|
+
headers?: Partial<{
|
|
2607
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2608
|
+
}>;
|
|
2609
|
+
} & {
|
|
2610
|
+
pathParameters: {
|
|
2611
|
+
projectBackupId: string;
|
|
2612
|
+
};
|
|
2613
|
+
} & {
|
|
2614
|
+
queryParameters: {
|
|
2615
|
+
directory?: string | undefined;
|
|
2616
|
+
} & Partial<{
|
|
2617
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2618
|
+
}>;
|
|
2619
|
+
} & {
|
|
2620
|
+
headers: {
|
|
2621
|
+
"x-access-token"?: string | undefined;
|
|
2622
|
+
} & Partial<{
|
|
2623
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2624
|
+
}>;
|
|
2625
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
2626
|
+
databases: string[];
|
|
2627
|
+
projectBackupId: string;
|
|
2628
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2629
|
+
[x: string]: unknown;
|
|
2630
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2631
|
+
[x: string]: unknown;
|
|
2632
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2633
|
+
[x: string]: unknown;
|
|
2634
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2635
|
+
[x: string]: unknown;
|
|
2636
|
+
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2637
|
+
[x: string]: unknown;
|
|
2638
|
+
}, 503, "application/json">>>;
|
|
2489
2639
|
};
|
|
2490
2640
|
/** The container API allows you to manage your stacks, containers, volumes and registries. */
|
|
2491
2641
|
readonly container: {
|
|
@@ -12111,6 +12261,69 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12111
12261
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12112
12262
|
[x: string]: unknown;
|
|
12113
12263
|
}, 429, "application/json">>>;
|
|
12264
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
12265
|
+
getExecutionAnalysis: (request: {
|
|
12266
|
+
executionId: string;
|
|
12267
|
+
cronjobId: string;
|
|
12268
|
+
headers?: {
|
|
12269
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
12270
|
+
"x-access-token"?: string | undefined;
|
|
12271
|
+
} | undefined;
|
|
12272
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
12273
|
+
headers?: Partial<{
|
|
12274
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
12275
|
+
}>;
|
|
12276
|
+
} & {
|
|
12277
|
+
pathParameters: {
|
|
12278
|
+
executionId: string;
|
|
12279
|
+
cronjobId: string;
|
|
12280
|
+
};
|
|
12281
|
+
} & {
|
|
12282
|
+
headers: {
|
|
12283
|
+
"x-access-token"?: string | undefined;
|
|
12284
|
+
} & Partial<{
|
|
12285
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
12286
|
+
}>;
|
|
12287
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
12288
|
+
issues?: string[] | undefined;
|
|
12289
|
+
message: string;
|
|
12290
|
+
recommendation?: string | undefined;
|
|
12291
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12292
|
+
[x: string]: unknown;
|
|
12293
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12294
|
+
[x: string]: unknown;
|
|
12295
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12296
|
+
[x: string]: unknown;
|
|
12297
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12298
|
+
[x: string]: unknown;
|
|
12299
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
12300
|
+
headers?: Partial<{
|
|
12301
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
12302
|
+
}>;
|
|
12303
|
+
} & {
|
|
12304
|
+
pathParameters: {
|
|
12305
|
+
executionId: string;
|
|
12306
|
+
cronjobId: string;
|
|
12307
|
+
};
|
|
12308
|
+
} & {
|
|
12309
|
+
headers: {
|
|
12310
|
+
"x-access-token"?: string | undefined;
|
|
12311
|
+
} & Partial<{
|
|
12312
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
12313
|
+
}>;
|
|
12314
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
12315
|
+
issues?: string[] | undefined;
|
|
12316
|
+
message: string;
|
|
12317
|
+
recommendation?: string | undefined;
|
|
12318
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12319
|
+
[x: string]: unknown;
|
|
12320
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12321
|
+
[x: string]: unknown;
|
|
12322
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12323
|
+
[x: string]: unknown;
|
|
12324
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12325
|
+
[x: string]: unknown;
|
|
12326
|
+
}, 429, "application/json">>>;
|
|
12114
12327
|
};
|
|
12115
12328
|
/** The customer API allows you to manage your own organizations and users. */
|
|
12116
12329
|
readonly customer: {
|
|
@@ -13698,6 +13911,79 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13698
13911
|
};
|
|
13699
13912
|
/** The database API allows you to manage your databases, like MySQL and Redis databases. */
|
|
13700
13913
|
readonly database: {
|
|
13914
|
+
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
13915
|
+
copyMysqlDatabase: (request: {
|
|
13916
|
+
data: {
|
|
13917
|
+
description: string;
|
|
13918
|
+
user: {
|
|
13919
|
+
accessLevel: "full" | "readonly";
|
|
13920
|
+
password: string;
|
|
13921
|
+
accessIpMask?: string | undefined;
|
|
13922
|
+
externalAccess?: boolean | undefined;
|
|
13923
|
+
};
|
|
13924
|
+
};
|
|
13925
|
+
mysqlDatabaseId: string;
|
|
13926
|
+
headers?: {
|
|
13927
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
13928
|
+
"x-access-token"?: string | undefined;
|
|
13929
|
+
} | undefined;
|
|
13930
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
13931
|
+
data: {
|
|
13932
|
+
description: string;
|
|
13933
|
+
user: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
13934
|
+
};
|
|
13935
|
+
} & {
|
|
13936
|
+
pathParameters: {
|
|
13937
|
+
mysqlDatabaseId: string;
|
|
13938
|
+
};
|
|
13939
|
+
} & {
|
|
13940
|
+
headers?: Partial<{
|
|
13941
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13942
|
+
}>;
|
|
13943
|
+
} & {
|
|
13944
|
+
headers: {
|
|
13945
|
+
"x-access-token"?: string | undefined;
|
|
13946
|
+
} & Partial<{
|
|
13947
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13948
|
+
}>;
|
|
13949
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
13950
|
+
id: string;
|
|
13951
|
+
userId: string;
|
|
13952
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13953
|
+
[x: string]: unknown;
|
|
13954
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13955
|
+
[x: string]: unknown;
|
|
13956
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13957
|
+
[x: string]: unknown;
|
|
13958
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
13959
|
+
data: {
|
|
13960
|
+
description: string;
|
|
13961
|
+
user: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
13962
|
+
};
|
|
13963
|
+
} & {
|
|
13964
|
+
pathParameters: {
|
|
13965
|
+
mysqlDatabaseId: string;
|
|
13966
|
+
};
|
|
13967
|
+
} & {
|
|
13968
|
+
headers?: Partial<{
|
|
13969
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13970
|
+
}>;
|
|
13971
|
+
} & {
|
|
13972
|
+
headers: {
|
|
13973
|
+
"x-access-token"?: string | undefined;
|
|
13974
|
+
} & Partial<{
|
|
13975
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
13976
|
+
}>;
|
|
13977
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
13978
|
+
id: string;
|
|
13979
|
+
userId: string;
|
|
13980
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13981
|
+
[x: string]: unknown;
|
|
13982
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13983
|
+
[x: string]: unknown;
|
|
13984
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
13985
|
+
[x: string]: unknown;
|
|
13986
|
+
}, 429, "application/json">>>;
|
|
13701
13987
|
/** List MySQLDatabases belonging to a Project. */
|
|
13702
13988
|
listMysqlDatabases: (request: {
|
|
13703
13989
|
projectId: string;
|
|
@@ -15158,79 +15444,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15158
15444
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15159
15445
|
[x: string]: unknown;
|
|
15160
15446
|
}, 429, "application/json">>>;
|
|
15161
|
-
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
15162
|
-
copyMysqlDatabase: (request: {
|
|
15163
|
-
data: {
|
|
15164
|
-
description: string;
|
|
15165
|
-
user: {
|
|
15166
|
-
accessLevel: "full" | "readonly";
|
|
15167
|
-
password: string;
|
|
15168
|
-
accessIpMask?: string | undefined;
|
|
15169
|
-
externalAccess?: boolean | undefined;
|
|
15170
|
-
};
|
|
15171
|
-
};
|
|
15172
|
-
mysqlDatabaseId: string;
|
|
15173
|
-
headers?: {
|
|
15174
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
15175
|
-
"x-access-token"?: string | undefined;
|
|
15176
|
-
} | undefined;
|
|
15177
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
15178
|
-
data: {
|
|
15179
|
-
description: string;
|
|
15180
|
-
user: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
15181
|
-
};
|
|
15182
|
-
} & {
|
|
15183
|
-
pathParameters: {
|
|
15184
|
-
mysqlDatabaseId: string;
|
|
15185
|
-
};
|
|
15186
|
-
} & {
|
|
15187
|
-
headers?: Partial<{
|
|
15188
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15189
|
-
}>;
|
|
15190
|
-
} & {
|
|
15191
|
-
headers: {
|
|
15192
|
-
"x-access-token"?: string | undefined;
|
|
15193
|
-
} & Partial<{
|
|
15194
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15195
|
-
}>;
|
|
15196
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
15197
|
-
id: string;
|
|
15198
|
-
userId: string;
|
|
15199
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15200
|
-
[x: string]: unknown;
|
|
15201
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15202
|
-
[x: string]: unknown;
|
|
15203
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15204
|
-
[x: string]: unknown;
|
|
15205
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
15206
|
-
data: {
|
|
15207
|
-
description: string;
|
|
15208
|
-
user: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
15209
|
-
};
|
|
15210
|
-
} & {
|
|
15211
|
-
pathParameters: {
|
|
15212
|
-
mysqlDatabaseId: string;
|
|
15213
|
-
};
|
|
15214
|
-
} & {
|
|
15215
|
-
headers?: Partial<{
|
|
15216
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15217
|
-
}>;
|
|
15218
|
-
} & {
|
|
15219
|
-
headers: {
|
|
15220
|
-
"x-access-token"?: string | undefined;
|
|
15221
|
-
} & Partial<{
|
|
15222
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15223
|
-
}>;
|
|
15224
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
15225
|
-
id: string;
|
|
15226
|
-
userId: string;
|
|
15227
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15228
|
-
[x: string]: unknown;
|
|
15229
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15230
|
-
[x: string]: unknown;
|
|
15231
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
15232
|
-
[x: string]: unknown;
|
|
15233
|
-
}, 429, "application/json">>>;
|
|
15234
15447
|
};
|
|
15235
15448
|
/** The domain API allows you to manage your domains, DNS records, SSL certificates and ingress resources. */
|
|
15236
15449
|
readonly domain: {
|
|
@@ -16236,6 +16449,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16236
16449
|
nameservers: string[];
|
|
16237
16450
|
processes?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainProcess[] | undefined;
|
|
16238
16451
|
projectId: string;
|
|
16452
|
+
scheduledDeletionDate?: string | undefined;
|
|
16239
16453
|
transferInAuthCode?: string | undefined;
|
|
16240
16454
|
usesDefaultNameserver: boolean;
|
|
16241
16455
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -16275,6 +16489,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16275
16489
|
nameservers: string[];
|
|
16276
16490
|
processes?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainProcess[] | undefined;
|
|
16277
16491
|
projectId: string;
|
|
16492
|
+
scheduledDeletionDate?: string | undefined;
|
|
16278
16493
|
transferInAuthCode?: string | undefined;
|
|
16279
16494
|
usesDefaultNameserver: boolean;
|
|
16280
16495
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -17804,6 +18019,105 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17804
18019
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17805
18020
|
[x: string]: unknown;
|
|
17806
18021
|
}, 429, "application/json">>>;
|
|
18022
|
+
/** Create a scheduled deletion of a Domain. */
|
|
18023
|
+
createScheduledDeletion: (request: {
|
|
18024
|
+
data: {
|
|
18025
|
+
deletionDate: string;
|
|
18026
|
+
};
|
|
18027
|
+
domainId: string;
|
|
18028
|
+
headers?: {
|
|
18029
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18030
|
+
"x-access-token"?: string | undefined;
|
|
18031
|
+
} | undefined;
|
|
18032
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18033
|
+
data: {
|
|
18034
|
+
deletionDate: string;
|
|
18035
|
+
};
|
|
18036
|
+
} & {
|
|
18037
|
+
pathParameters: {
|
|
18038
|
+
domainId: string;
|
|
18039
|
+
};
|
|
18040
|
+
} & {
|
|
18041
|
+
headers?: Partial<{
|
|
18042
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18043
|
+
}>;
|
|
18044
|
+
} & {
|
|
18045
|
+
headers: {
|
|
18046
|
+
"x-access-token"?: string | undefined;
|
|
18047
|
+
} & Partial<{
|
|
18048
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18049
|
+
}>;
|
|
18050
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18051
|
+
[x: string]: unknown;
|
|
18052
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18053
|
+
[x: string]: unknown;
|
|
18054
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18055
|
+
data: {
|
|
18056
|
+
deletionDate: string;
|
|
18057
|
+
};
|
|
18058
|
+
} & {
|
|
18059
|
+
pathParameters: {
|
|
18060
|
+
domainId: string;
|
|
18061
|
+
};
|
|
18062
|
+
} & {
|
|
18063
|
+
headers?: Partial<{
|
|
18064
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18065
|
+
}>;
|
|
18066
|
+
} & {
|
|
18067
|
+
headers: {
|
|
18068
|
+
"x-access-token"?: string | undefined;
|
|
18069
|
+
} & Partial<{
|
|
18070
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18071
|
+
}>;
|
|
18072
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18073
|
+
[x: string]: unknown;
|
|
18074
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18075
|
+
[x: string]: unknown;
|
|
18076
|
+
}, 429, "application/json">>>;
|
|
18077
|
+
/** Cancel a scheduled deletion of a Domain. */
|
|
18078
|
+
cancelScheduledDeletion: (request: {
|
|
18079
|
+
domainId: string;
|
|
18080
|
+
headers?: {
|
|
18081
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18082
|
+
"x-access-token"?: string | undefined;
|
|
18083
|
+
} | undefined;
|
|
18084
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18085
|
+
headers?: Partial<{
|
|
18086
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18087
|
+
}>;
|
|
18088
|
+
} & {
|
|
18089
|
+
pathParameters: {
|
|
18090
|
+
domainId: string;
|
|
18091
|
+
};
|
|
18092
|
+
} & {
|
|
18093
|
+
headers: {
|
|
18094
|
+
"x-access-token"?: string | undefined;
|
|
18095
|
+
} & Partial<{
|
|
18096
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18097
|
+
}>;
|
|
18098
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18099
|
+
[x: string]: unknown;
|
|
18100
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18101
|
+
[x: string]: unknown;
|
|
18102
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18103
|
+
headers?: Partial<{
|
|
18104
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18105
|
+
}>;
|
|
18106
|
+
} & {
|
|
18107
|
+
pathParameters: {
|
|
18108
|
+
domainId: string;
|
|
18109
|
+
};
|
|
18110
|
+
} & {
|
|
18111
|
+
headers: {
|
|
18112
|
+
"x-access-token"?: string | undefined;
|
|
18113
|
+
} & Partial<{
|
|
18114
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18115
|
+
}>;
|
|
18116
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
18117
|
+
[x: string]: unknown;
|
|
18118
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18119
|
+
[x: string]: unknown;
|
|
18120
|
+
}, 429, "application/json">>>;
|
|
17807
18121
|
};
|
|
17808
18122
|
/** The mail API allows you to manage your mail accounts. */
|
|
17809
18123
|
readonly mail: {
|
|
@@ -25696,7 +26010,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25696
26010
|
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[] | undefined;
|
|
25697
26011
|
id: string;
|
|
25698
26012
|
imageRefId?: string | undefined;
|
|
25699
|
-
ipAddress?: string | undefined;
|
|
25700
26013
|
isReady: boolean;
|
|
25701
26014
|
projectHostingId?: string | undefined;
|
|
25702
26015
|
readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
@@ -25747,7 +26060,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25747
26060
|
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[] | undefined;
|
|
25748
26061
|
id: string;
|
|
25749
26062
|
imageRefId?: string | undefined;
|
|
25750
|
-
ipAddress?: string | undefined;
|
|
25751
26063
|
isReady: boolean;
|
|
25752
26064
|
projectHostingId?: string | undefined;
|
|
25753
26065
|
readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
@@ -77,7 +77,7 @@ export declare const backupUpdateProjectBackupSchedule: OpenAPIOperation<Request
|
|
|
77
77
|
export declare const backupGetProjectBackup: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
78
78
|
/** Delete a ProjectBackup. */
|
|
79
79
|
export declare const backupDeleteProjectBackup: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
80
|
-
/** Get
|
|
80
|
+
/** Get paths for a ProjectBackup. */
|
|
81
81
|
export declare const backupGetProjectBackupDirectories: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
82
82
|
/** Restore a ProjectBackup's path. */
|
|
83
83
|
export declare const backupRequestProjectBackupRestorePath: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -293,6 +293,8 @@ export declare const customerRequestAvatarUpload: OpenAPIOperation<RequestType<S
|
|
|
293
293
|
export declare const customerRemoveAvatar: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAvatar.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json">>;
|
|
294
294
|
/** Resend the mail for a CustomerInvite. */
|
|
295
295
|
export declare const customerResendCustomerInviteMail: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsResend.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
296
|
+
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
297
|
+
export declare const databaseCopyMysqlDatabase: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdActionsCopy.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
296
298
|
/** List MySQLDatabases belonging to a Project. */
|
|
297
299
|
export declare const databaseListMysqlDatabases: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
298
300
|
/** Create a MySQLDatabase with a MySQLUser. */
|
|
@@ -873,5 +875,13 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
873
875
|
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">>;
|
|
874
876
|
/** Check if a company exists. */
|
|
875
877
|
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">>;
|
|
876
|
-
/**
|
|
877
|
-
export declare const
|
|
878
|
+
/** Create a scheduled deletion of a Domain. */
|
|
879
|
+
export declare const domainCreateScheduledDeletion: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
880
|
+
/** Cancel a scheduled deletion of a Domain. */
|
|
881
|
+
export declare const domainCancelScheduledDeletion: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScheduledDeletion.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
882
|
+
/** Get a CronjobExecution analysis for failed executions. */
|
|
883
|
+
export declare const cronjobGetExecutionAnalysis: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
884
|
+
/** Restore a ProjectBackup's database. */
|
|
885
|
+
export declare const backupRequestProjectBackupRestoreDatabase: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestoreDatabase.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestoreDatabase.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestoreDatabase.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestoreDatabase.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestoreDatabase.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestoreDatabase.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestoreDatabase.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestoreDatabase.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestoreDatabase.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestoreDatabase.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
886
|
+
/** Get databases for a ProjectBackup. */
|
|
887
|
+
export declare const backupGetProjectBackupDatabases: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabase.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabase.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabase.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabase.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabase.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabase.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabase.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabase.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabase.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabase.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -582,6 +582,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
582
582
|
type RequestData = InferredRequestData<typeof descriptors.customerResendCustomerInviteMail>;
|
|
583
583
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerResendCustomerInviteMail, TStatus>;
|
|
584
584
|
}
|
|
585
|
+
namespace DatabaseCopyMysqlDatabase {
|
|
586
|
+
type RequestData = InferredRequestData<typeof descriptors.databaseCopyMysqlDatabase>;
|
|
587
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseCopyMysqlDatabase, TStatus>;
|
|
588
|
+
}
|
|
585
589
|
namespace DatabaseListMysqlDatabases {
|
|
586
590
|
type RequestData = InferredRequestData<typeof descriptors.databaseListMysqlDatabases>;
|
|
587
591
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseListMysqlDatabases, TStatus>;
|
|
@@ -1742,9 +1746,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1742
1746
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1743
1747
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1744
1748
|
}
|
|
1745
|
-
namespace
|
|
1746
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
1747
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
1749
|
+
namespace DomainCreateScheduledDeletion {
|
|
1750
|
+
type RequestData = InferredRequestData<typeof descriptors.domainCreateScheduledDeletion>;
|
|
1751
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainCreateScheduledDeletion, TStatus>;
|
|
1752
|
+
}
|
|
1753
|
+
namespace DomainCancelScheduledDeletion {
|
|
1754
|
+
type RequestData = InferredRequestData<typeof descriptors.domainCancelScheduledDeletion>;
|
|
1755
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainCancelScheduledDeletion, TStatus>;
|
|
1756
|
+
}
|
|
1757
|
+
namespace CronjobGetExecutionAnalysis {
|
|
1758
|
+
type RequestData = InferredRequestData<typeof descriptors.cronjobGetExecutionAnalysis>;
|
|
1759
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobGetExecutionAnalysis, TStatus>;
|
|
1760
|
+
}
|
|
1761
|
+
namespace BackupRequestProjectBackupRestoreDatabase {
|
|
1762
|
+
type RequestData = InferredRequestData<typeof descriptors.backupRequestProjectBackupRestoreDatabase>;
|
|
1763
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupRequestProjectBackupRestoreDatabase, TStatus>;
|
|
1764
|
+
}
|
|
1765
|
+
namespace BackupGetProjectBackupDatabases {
|
|
1766
|
+
type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDatabases>;
|
|
1767
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDatabases, TStatus>;
|
|
1748
1768
|
}
|
|
1749
1769
|
}
|
|
1750
1770
|
namespace Components {
|
|
@@ -3119,6 +3139,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3119
3139
|
nameservers: string[];
|
|
3120
3140
|
processes?: MittwaldAPIV2.Components.Schemas.DomainProcess[];
|
|
3121
3141
|
projectId: string;
|
|
3142
|
+
scheduledDeletionDate?: string;
|
|
3122
3143
|
transferInAuthCode?: string;
|
|
3123
3144
|
usesDefaultNameserver: boolean;
|
|
3124
3145
|
}
|
|
@@ -4962,7 +4983,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4962
4983
|
features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
4963
4984
|
id: string;
|
|
4964
4985
|
imageRefId?: string;
|
|
4965
|
-
ipAddress?: string;
|
|
4966
4986
|
/**
|
|
4967
4987
|
* @deprecated
|
|
4968
4988
|
* deprecated by property status
|
|
@@ -5465,6 +5485,27 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5465
5485
|
}
|
|
5466
5486
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5467
5487
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5488
|
+
interface CronjobCronjobExecutionAnalysis {
|
|
5489
|
+
issues?: string[];
|
|
5490
|
+
message: string;
|
|
5491
|
+
recommendation?: string;
|
|
5492
|
+
}
|
|
5493
|
+
interface BackupProjectBackupRestoreDatabaseRequest {
|
|
5494
|
+
databaseName: string;
|
|
5495
|
+
destination?: MittwaldAPIV2.Components.Schemas.BackupNewDatabase | MittwaldAPIV2.Components.Schemas.BackupExistingDatabase;
|
|
5496
|
+
}
|
|
5497
|
+
interface BackupExistingDatabase {
|
|
5498
|
+
database_name: string;
|
|
5499
|
+
}
|
|
5500
|
+
interface BackupNewDatabase {
|
|
5501
|
+
database_name: string;
|
|
5502
|
+
user_password: string;
|
|
5503
|
+
version: string;
|
|
5504
|
+
}
|
|
5505
|
+
interface BackupProjectBackupDatabase {
|
|
5506
|
+
databases: string[];
|
|
5507
|
+
projectBackupId: string;
|
|
5508
|
+
}
|
|
5468
5509
|
interface CommonsAddress {
|
|
5469
5510
|
street: string;
|
|
5470
5511
|
houseNumber: string;
|
|
@@ -12903,6 +12944,59 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12903
12944
|
}
|
|
12904
12945
|
}
|
|
12905
12946
|
}
|
|
12947
|
+
namespace V2MysqlDatabasesMysqlDatabaseIdActionsCopy {
|
|
12948
|
+
namespace Post {
|
|
12949
|
+
namespace Parameters {
|
|
12950
|
+
type Path = {
|
|
12951
|
+
mysqlDatabaseId: string;
|
|
12952
|
+
};
|
|
12953
|
+
interface RequestBody {
|
|
12954
|
+
description: string;
|
|
12955
|
+
user: MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
12956
|
+
}
|
|
12957
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12958
|
+
type Query = {};
|
|
12959
|
+
}
|
|
12960
|
+
namespace Responses {
|
|
12961
|
+
namespace $201 {
|
|
12962
|
+
namespace Content {
|
|
12963
|
+
interface ApplicationJson {
|
|
12964
|
+
id: string;
|
|
12965
|
+
userId: string;
|
|
12966
|
+
}
|
|
12967
|
+
}
|
|
12968
|
+
}
|
|
12969
|
+
namespace $400 {
|
|
12970
|
+
namespace Content {
|
|
12971
|
+
interface ApplicationJson {
|
|
12972
|
+
[k: string]: unknown;
|
|
12973
|
+
}
|
|
12974
|
+
}
|
|
12975
|
+
}
|
|
12976
|
+
namespace $404 {
|
|
12977
|
+
namespace Content {
|
|
12978
|
+
interface ApplicationJson {
|
|
12979
|
+
[k: string]: unknown;
|
|
12980
|
+
}
|
|
12981
|
+
}
|
|
12982
|
+
}
|
|
12983
|
+
namespace $429 {
|
|
12984
|
+
namespace Content {
|
|
12985
|
+
interface ApplicationJson {
|
|
12986
|
+
[k: string]: unknown;
|
|
12987
|
+
}
|
|
12988
|
+
}
|
|
12989
|
+
}
|
|
12990
|
+
namespace Default {
|
|
12991
|
+
namespace Content {
|
|
12992
|
+
interface ApplicationJson {
|
|
12993
|
+
[k: string]: unknown;
|
|
12994
|
+
}
|
|
12995
|
+
}
|
|
12996
|
+
}
|
|
12997
|
+
}
|
|
12998
|
+
}
|
|
12999
|
+
}
|
|
12906
13000
|
namespace V2ProjectsProjectIdMysqlDatabases {
|
|
12907
13001
|
namespace Get {
|
|
12908
13002
|
namespace Parameters {
|
|
@@ -27590,28 +27684,101 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27590
27684
|
}
|
|
27591
27685
|
}
|
|
27592
27686
|
}
|
|
27593
|
-
namespace
|
|
27687
|
+
namespace V2DomainsDomainIdScheduledDeletion {
|
|
27594
27688
|
namespace Post {
|
|
27595
27689
|
namespace Parameters {
|
|
27596
27690
|
type Path = {
|
|
27597
|
-
|
|
27691
|
+
domainId: string;
|
|
27598
27692
|
};
|
|
27599
27693
|
interface RequestBody {
|
|
27600
|
-
|
|
27601
|
-
user: MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
27694
|
+
deletionDate: string;
|
|
27602
27695
|
}
|
|
27603
27696
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27604
27697
|
type Query = {};
|
|
27605
27698
|
}
|
|
27606
27699
|
namespace Responses {
|
|
27607
|
-
namespace $
|
|
27700
|
+
namespace $204 {
|
|
27701
|
+
namespace Content {
|
|
27702
|
+
type Empty = unknown;
|
|
27703
|
+
}
|
|
27704
|
+
}
|
|
27705
|
+
namespace $400 {
|
|
27608
27706
|
namespace Content {
|
|
27609
27707
|
interface ApplicationJson {
|
|
27610
|
-
|
|
27611
|
-
|
|
27708
|
+
[k: string]: unknown;
|
|
27709
|
+
}
|
|
27710
|
+
}
|
|
27711
|
+
}
|
|
27712
|
+
namespace $429 {
|
|
27713
|
+
namespace Content {
|
|
27714
|
+
interface ApplicationJson {
|
|
27715
|
+
[k: string]: unknown;
|
|
27716
|
+
}
|
|
27717
|
+
}
|
|
27718
|
+
}
|
|
27719
|
+
namespace Default {
|
|
27720
|
+
namespace Content {
|
|
27721
|
+
interface ApplicationJson {
|
|
27722
|
+
[k: string]: unknown;
|
|
27723
|
+
}
|
|
27724
|
+
}
|
|
27725
|
+
}
|
|
27726
|
+
}
|
|
27727
|
+
}
|
|
27728
|
+
namespace Delete {
|
|
27729
|
+
namespace Parameters {
|
|
27730
|
+
type Path = {
|
|
27731
|
+
domainId: string;
|
|
27732
|
+
};
|
|
27733
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27734
|
+
type Query = {};
|
|
27735
|
+
}
|
|
27736
|
+
namespace Responses {
|
|
27737
|
+
namespace $204 {
|
|
27738
|
+
namespace Content {
|
|
27739
|
+
type Empty = unknown;
|
|
27740
|
+
}
|
|
27741
|
+
}
|
|
27742
|
+
namespace $400 {
|
|
27743
|
+
namespace Content {
|
|
27744
|
+
interface ApplicationJson {
|
|
27745
|
+
[k: string]: unknown;
|
|
27746
|
+
}
|
|
27747
|
+
}
|
|
27748
|
+
}
|
|
27749
|
+
namespace $429 {
|
|
27750
|
+
namespace Content {
|
|
27751
|
+
interface ApplicationJson {
|
|
27752
|
+
[k: string]: unknown;
|
|
27753
|
+
}
|
|
27754
|
+
}
|
|
27755
|
+
}
|
|
27756
|
+
namespace Default {
|
|
27757
|
+
namespace Content {
|
|
27758
|
+
interface ApplicationJson {
|
|
27759
|
+
[k: string]: unknown;
|
|
27612
27760
|
}
|
|
27613
27761
|
}
|
|
27614
27762
|
}
|
|
27763
|
+
}
|
|
27764
|
+
}
|
|
27765
|
+
}
|
|
27766
|
+
namespace V2CronjobsCronjobIdExecutionsExecutionIdAnalysis {
|
|
27767
|
+
namespace Get {
|
|
27768
|
+
namespace Parameters {
|
|
27769
|
+
type Path = {
|
|
27770
|
+
executionId: string;
|
|
27771
|
+
cronjobId: string;
|
|
27772
|
+
};
|
|
27773
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27774
|
+
type Query = {};
|
|
27775
|
+
}
|
|
27776
|
+
namespace Responses {
|
|
27777
|
+
namespace $200 {
|
|
27778
|
+
namespace Content {
|
|
27779
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionAnalysis;
|
|
27780
|
+
}
|
|
27781
|
+
}
|
|
27615
27782
|
namespace $400 {
|
|
27616
27783
|
namespace Content {
|
|
27617
27784
|
interface ApplicationJson {
|
|
@@ -27626,6 +27793,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27626
27793
|
}
|
|
27627
27794
|
}
|
|
27628
27795
|
}
|
|
27796
|
+
namespace $412 {
|
|
27797
|
+
namespace Content {
|
|
27798
|
+
interface ApplicationJson {
|
|
27799
|
+
[k: string]: unknown;
|
|
27800
|
+
}
|
|
27801
|
+
}
|
|
27802
|
+
}
|
|
27629
27803
|
namespace $429 {
|
|
27630
27804
|
namespace Content {
|
|
27631
27805
|
interface ApplicationJson {
|
|
@@ -27643,5 +27817,121 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27643
27817
|
}
|
|
27644
27818
|
}
|
|
27645
27819
|
}
|
|
27820
|
+
namespace V2ProjectBackupsProjectBackupIdRestoreDatabase {
|
|
27821
|
+
namespace Post {
|
|
27822
|
+
namespace Parameters {
|
|
27823
|
+
type Path = {
|
|
27824
|
+
projectBackupId: string;
|
|
27825
|
+
};
|
|
27826
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest;
|
|
27827
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27828
|
+
type Query = {};
|
|
27829
|
+
}
|
|
27830
|
+
namespace Responses {
|
|
27831
|
+
namespace $204 {
|
|
27832
|
+
namespace Content {
|
|
27833
|
+
type Empty = unknown;
|
|
27834
|
+
}
|
|
27835
|
+
}
|
|
27836
|
+
namespace $400 {
|
|
27837
|
+
namespace Content {
|
|
27838
|
+
interface ApplicationJson {
|
|
27839
|
+
[k: string]: unknown;
|
|
27840
|
+
}
|
|
27841
|
+
}
|
|
27842
|
+
}
|
|
27843
|
+
namespace $403 {
|
|
27844
|
+
namespace Content {
|
|
27845
|
+
interface ApplicationJson {
|
|
27846
|
+
[k: string]: unknown;
|
|
27847
|
+
}
|
|
27848
|
+
}
|
|
27849
|
+
}
|
|
27850
|
+
namespace $404 {
|
|
27851
|
+
namespace Content {
|
|
27852
|
+
interface ApplicationJson {
|
|
27853
|
+
[k: string]: unknown;
|
|
27854
|
+
}
|
|
27855
|
+
}
|
|
27856
|
+
}
|
|
27857
|
+
namespace $429 {
|
|
27858
|
+
namespace Content {
|
|
27859
|
+
interface ApplicationJson {
|
|
27860
|
+
[k: string]: unknown;
|
|
27861
|
+
}
|
|
27862
|
+
}
|
|
27863
|
+
}
|
|
27864
|
+
namespace Default {
|
|
27865
|
+
namespace Content {
|
|
27866
|
+
interface ApplicationJson {
|
|
27867
|
+
[k: string]: unknown;
|
|
27868
|
+
}
|
|
27869
|
+
}
|
|
27870
|
+
}
|
|
27871
|
+
}
|
|
27872
|
+
}
|
|
27873
|
+
}
|
|
27874
|
+
namespace V2ProjectBackupsProjectBackupIdDatabase {
|
|
27875
|
+
namespace Get {
|
|
27876
|
+
namespace Parameters {
|
|
27877
|
+
type Path = {
|
|
27878
|
+
projectBackupId: string;
|
|
27879
|
+
};
|
|
27880
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27881
|
+
type Query = {
|
|
27882
|
+
directory?: string;
|
|
27883
|
+
};
|
|
27884
|
+
}
|
|
27885
|
+
namespace Responses {
|
|
27886
|
+
namespace $200 {
|
|
27887
|
+
namespace Content {
|
|
27888
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.BackupProjectBackupDatabase;
|
|
27889
|
+
}
|
|
27890
|
+
}
|
|
27891
|
+
namespace $403 {
|
|
27892
|
+
namespace Content {
|
|
27893
|
+
interface ApplicationJson {
|
|
27894
|
+
[k: string]: unknown;
|
|
27895
|
+
}
|
|
27896
|
+
}
|
|
27897
|
+
}
|
|
27898
|
+
namespace $404 {
|
|
27899
|
+
namespace Content {
|
|
27900
|
+
interface ApplicationJson {
|
|
27901
|
+
[k: string]: unknown;
|
|
27902
|
+
}
|
|
27903
|
+
}
|
|
27904
|
+
}
|
|
27905
|
+
namespace $429 {
|
|
27906
|
+
namespace Content {
|
|
27907
|
+
interface ApplicationJson {
|
|
27908
|
+
[k: string]: unknown;
|
|
27909
|
+
}
|
|
27910
|
+
}
|
|
27911
|
+
}
|
|
27912
|
+
namespace $502 {
|
|
27913
|
+
namespace Content {
|
|
27914
|
+
interface ApplicationJson {
|
|
27915
|
+
[k: string]: unknown;
|
|
27916
|
+
}
|
|
27917
|
+
}
|
|
27918
|
+
}
|
|
27919
|
+
namespace $503 {
|
|
27920
|
+
namespace Content {
|
|
27921
|
+
interface ApplicationJson {
|
|
27922
|
+
[k: string]: unknown;
|
|
27923
|
+
}
|
|
27924
|
+
}
|
|
27925
|
+
}
|
|
27926
|
+
namespace Default {
|
|
27927
|
+
namespace Content {
|
|
27928
|
+
interface ApplicationJson {
|
|
27929
|
+
[k: string]: unknown;
|
|
27930
|
+
}
|
|
27931
|
+
}
|
|
27932
|
+
}
|
|
27933
|
+
}
|
|
27934
|
+
}
|
|
27935
|
+
}
|
|
27646
27936
|
}
|
|
27647
27937
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.242.3';
|
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-7f54d64-20251022",
|
|
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,30 +46,30 @@
|
|
|
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-7f54d64-20251022",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^0.0.0-development-
|
|
54
|
-
"@mittwald/react-use-promise": "^2.6.
|
|
55
|
-
"@types/node": "^22.
|
|
56
|
-
"@types/react": "^18.3.
|
|
53
|
+
"@mittwald/api-code-generator": "^0.0.0-development-7f54d64-20251022",
|
|
54
|
+
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
|
+
"@types/node": "^22.18.11",
|
|
56
|
+
"@types/react": "^18.3.26",
|
|
57
57
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
58
58
|
"@typescript-eslint/parser": "^7.18.0",
|
|
59
59
|
"concurrently": "^8.2.2",
|
|
60
60
|
"eslint": "^8.57.1",
|
|
61
|
-
"eslint-config-prettier": "^9.1.
|
|
61
|
+
"eslint-config-prettier": "^9.1.2",
|
|
62
62
|
"eslint-plugin-json": "^3.1.0",
|
|
63
|
-
"eslint-plugin-prettier": "^5.
|
|
63
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
64
64
|
"has-flag": "^5.0.1",
|
|
65
|
-
"prettier": "^3.
|
|
66
|
-
"prettier-plugin-jsdoc": "^1.3.
|
|
65
|
+
"prettier": "^3.6.2",
|
|
66
|
+
"prettier-plugin-jsdoc": "^1.3.3",
|
|
67
67
|
"prettier-plugin-pkgsort": "^0.2.1",
|
|
68
68
|
"prettier-plugin-sort-json": "^3.1.0",
|
|
69
69
|
"react": "^18.3.1",
|
|
70
70
|
"read-pkg": "^9.0.1",
|
|
71
71
|
"rimraf": "^5.0.10",
|
|
72
|
-
"tsx": "^4.
|
|
72
|
+
"tsx": "^4.20.6",
|
|
73
73
|
"typescript": "5.7.2"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "d4f82247daa982e837b698c4e11214cacce9c824"
|
|
84
84
|
}
|