@mittwald/api-client 4.453.0 → 4.455.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client-react.js +4 -0
- package/dist/esm/generated/v2/client.js +6 -0
- package/dist/esm/generated/v2/descriptors.js +18 -0
- package/dist/esm/generated/v3-next/client-react.js +4 -0
- package/dist/esm/generated/v3-next/client.js +6 -0
- package/dist/esm/generated/v3-next/descriptors.js +18 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +39 -0
- package/dist/types/generated/v2/client.d.ts +241 -4
- package/dist/types/generated/v2/descriptors.d.ts +6 -0
- package/dist/types/generated/v2/types.d.ts +223 -8
- package/dist/types/generated/v3-next/client-react.d.ts +39 -0
- package/dist/types/generated/v3-next/client.d.ts +241 -4
- package/dist/types/generated/v3-next/descriptors.d.ts +6 -0
- package/dist/types/generated/v3-next/types.d.ts +218 -3
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1898,6 +1898,18 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1898
1898
|
type RequestData = InferredRequestData<typeof descriptors.aiHostingProjectGetPlans>;
|
|
1899
1899
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingProjectGetPlans, TStatus>;
|
|
1900
1900
|
}
|
|
1901
|
+
namespace ContainerGetServiceLogsAnalysis {
|
|
1902
|
+
type RequestData = InferredRequestData<typeof descriptors.containerGetServiceLogsAnalysis>;
|
|
1903
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetServiceLogsAnalysis, TStatus>;
|
|
1904
|
+
}
|
|
1905
|
+
namespace AppGetAppinstallationErrorAnalysis {
|
|
1906
|
+
type RequestData = InferredRequestData<typeof descriptors.appGetAppinstallationErrorAnalysis>;
|
|
1907
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appGetAppinstallationErrorAnalysis, TStatus>;
|
|
1908
|
+
}
|
|
1909
|
+
namespace CustomerSetCustomerReferralSource {
|
|
1910
|
+
type RequestData = InferredRequestData<typeof descriptors.customerSetCustomerReferralSource>;
|
|
1911
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerSetCustomerReferralSource, TStatus>;
|
|
1912
|
+
}
|
|
1901
1913
|
}
|
|
1902
1914
|
namespace Components {
|
|
1903
1915
|
namespace Schemas {
|
|
@@ -2404,7 +2416,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
2404
2416
|
* Whether to clear the target path before restoring. If true, existing files in the target path will be deleted before the restore. If false, existing files will be kept and may be overwritten if they exist in the backup.
|
|
2405
2417
|
*/
|
|
2406
2418
|
clearTargetPath?: boolean;
|
|
2407
|
-
|
|
2419
|
+
/**
|
|
2420
|
+
* @minItems 1
|
|
2421
|
+
*/
|
|
2422
|
+
sourcePaths: [string, ...string[]];
|
|
2408
2423
|
/**
|
|
2409
2424
|
* Target path where the source paths should be restored to. If not set, the target path will be determined to equal the origin source. The target path should always be a folder, no files allowed here.
|
|
2410
2425
|
*/
|
|
@@ -2418,7 +2433,13 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
2418
2433
|
}
|
|
2419
2434
|
type DeMittwaldBackupProjectBackupRestorePhase = "running" | "completed";
|
|
2420
2435
|
interface DeMittwaldBackupProjectBackupRestoreRequest {
|
|
2421
|
-
|
|
2436
|
+
/**
|
|
2437
|
+
* @minItems 1
|
|
2438
|
+
*/
|
|
2439
|
+
databaseRestores?: [
|
|
2440
|
+
MittwaldAPIV3Next.Components.Schemas.DeMittwaldBackupProjectBackupRestoreDatabaseRequest,
|
|
2441
|
+
...MittwaldAPIV3Next.Components.Schemas.DeMittwaldBackupProjectBackupRestoreDatabaseRequest[]
|
|
2442
|
+
];
|
|
2422
2443
|
pathRestore?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldBackupProjectBackupRestorePathRequest;
|
|
2423
2444
|
}
|
|
2424
2445
|
interface DeMittwaldBackupProjectBackupRestore {
|
|
@@ -3486,8 +3507,13 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
3486
3507
|
};
|
|
3487
3508
|
}
|
|
3488
3509
|
interface DeMittwaldCronjobCronjobExecutionAnalysis {
|
|
3510
|
+
/**
|
|
3511
|
+
* @deprecated
|
|
3512
|
+
* Deprecated: contains summary and recommendation combined. Use the separate fields instead.
|
|
3513
|
+
*/
|
|
3489
3514
|
message: string;
|
|
3490
3515
|
recommendation?: string;
|
|
3516
|
+
summary: string;
|
|
3491
3517
|
}
|
|
3492
3518
|
type DeMittwaldCronjobCronjobExecutionSortOrder = "oldestFirst" | "newestFirst" | "slowestFirst" | "fastestFirst";
|
|
3493
3519
|
interface DeMittwaldCronjobAppInstallationPatchTarget {
|
|
@@ -7208,6 +7234,14 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
7208
7234
|
modelTermsApprovalRequired: boolean;
|
|
7209
7235
|
plans: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingProjectPlan[];
|
|
7210
7236
|
}
|
|
7237
|
+
interface DeMittwaldContainerServiceLogsAnalysis {
|
|
7238
|
+
recommendation?: string;
|
|
7239
|
+
summary: string;
|
|
7240
|
+
}
|
|
7241
|
+
interface DeMittwaldAppAppInstallationErrorAnalysis {
|
|
7242
|
+
recommendation?: string;
|
|
7243
|
+
summary: string;
|
|
7244
|
+
}
|
|
7211
7245
|
interface DeMittwaldCommonsAddress {
|
|
7212
7246
|
street: string;
|
|
7213
7247
|
houseNumber: string;
|
|
@@ -7448,6 +7482,9 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
7448
7482
|
type Header = {};
|
|
7449
7483
|
type Query = {
|
|
7450
7484
|
planId?: string;
|
|
7485
|
+
limit?: number;
|
|
7486
|
+
skip?: number;
|
|
7487
|
+
page?: number;
|
|
7451
7488
|
};
|
|
7452
7489
|
}
|
|
7453
7490
|
namespace Responses {
|
|
@@ -7870,6 +7907,9 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
7870
7907
|
type Header = {};
|
|
7871
7908
|
type Query = {
|
|
7872
7909
|
planId?: string;
|
|
7910
|
+
limit?: number;
|
|
7911
|
+
skip?: number;
|
|
7912
|
+
page?: number;
|
|
7873
7913
|
};
|
|
7874
7914
|
}
|
|
7875
7915
|
namespace Responses {
|
|
@@ -31616,6 +31656,9 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31616
31656
|
type Header = {};
|
|
31617
31657
|
type Query = {
|
|
31618
31658
|
topUsageCount?: number;
|
|
31659
|
+
limit?: number;
|
|
31660
|
+
skip?: number;
|
|
31661
|
+
page?: number;
|
|
31619
31662
|
};
|
|
31620
31663
|
}
|
|
31621
31664
|
namespace Responses {
|
|
@@ -31774,7 +31817,11 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31774
31817
|
projectId: string;
|
|
31775
31818
|
};
|
|
31776
31819
|
type Header = {};
|
|
31777
|
-
type Query = {
|
|
31820
|
+
type Query = {
|
|
31821
|
+
limit?: number;
|
|
31822
|
+
skip?: number;
|
|
31823
|
+
page?: number;
|
|
31824
|
+
};
|
|
31778
31825
|
}
|
|
31779
31826
|
namespace Responses {
|
|
31780
31827
|
namespace $200 {
|
|
@@ -31820,5 +31867,173 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31820
31867
|
}
|
|
31821
31868
|
}
|
|
31822
31869
|
}
|
|
31870
|
+
namespace V3NextStacksStackIdServicesServiceIdLogAnalysis {
|
|
31871
|
+
namespace Get {
|
|
31872
|
+
namespace Parameters {
|
|
31873
|
+
type Path = {
|
|
31874
|
+
stackId: string;
|
|
31875
|
+
serviceId: string;
|
|
31876
|
+
};
|
|
31877
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
31878
|
+
type Query = {};
|
|
31879
|
+
}
|
|
31880
|
+
namespace Responses {
|
|
31881
|
+
namespace $200 {
|
|
31882
|
+
namespace Content {
|
|
31883
|
+
type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceLogsAnalysis;
|
|
31884
|
+
}
|
|
31885
|
+
}
|
|
31886
|
+
namespace $400 {
|
|
31887
|
+
namespace Content {
|
|
31888
|
+
interface ApplicationJson {
|
|
31889
|
+
[k: string]: unknown;
|
|
31890
|
+
}
|
|
31891
|
+
}
|
|
31892
|
+
}
|
|
31893
|
+
namespace $403 {
|
|
31894
|
+
namespace Content {
|
|
31895
|
+
interface ApplicationJson {
|
|
31896
|
+
[k: string]: unknown;
|
|
31897
|
+
}
|
|
31898
|
+
}
|
|
31899
|
+
}
|
|
31900
|
+
namespace $404 {
|
|
31901
|
+
namespace Content {
|
|
31902
|
+
interface ApplicationJson {
|
|
31903
|
+
[k: string]: unknown;
|
|
31904
|
+
}
|
|
31905
|
+
}
|
|
31906
|
+
}
|
|
31907
|
+
namespace $429 {
|
|
31908
|
+
namespace Content {
|
|
31909
|
+
interface ApplicationJson {
|
|
31910
|
+
[k: string]: unknown;
|
|
31911
|
+
}
|
|
31912
|
+
}
|
|
31913
|
+
}
|
|
31914
|
+
namespace $500 {
|
|
31915
|
+
namespace Content {
|
|
31916
|
+
interface ApplicationJson {
|
|
31917
|
+
[k: string]: unknown;
|
|
31918
|
+
}
|
|
31919
|
+
}
|
|
31920
|
+
}
|
|
31921
|
+
namespace Default {
|
|
31922
|
+
namespace Content {
|
|
31923
|
+
interface ApplicationJson {
|
|
31924
|
+
[k: string]: unknown;
|
|
31925
|
+
}
|
|
31926
|
+
}
|
|
31927
|
+
}
|
|
31928
|
+
}
|
|
31929
|
+
}
|
|
31930
|
+
}
|
|
31931
|
+
namespace V3NextAppInstallationsAppInstallationIdErrorAnalysis {
|
|
31932
|
+
namespace Get {
|
|
31933
|
+
namespace Parameters {
|
|
31934
|
+
type Path = {
|
|
31935
|
+
appInstallationId: string;
|
|
31936
|
+
};
|
|
31937
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
31938
|
+
type Query = {};
|
|
31939
|
+
}
|
|
31940
|
+
namespace Responses {
|
|
31941
|
+
namespace $200 {
|
|
31942
|
+
namespace Content {
|
|
31943
|
+
type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppAppInstallationErrorAnalysis;
|
|
31944
|
+
}
|
|
31945
|
+
}
|
|
31946
|
+
namespace $400 {
|
|
31947
|
+
namespace Content {
|
|
31948
|
+
interface ApplicationJson {
|
|
31949
|
+
[k: string]: unknown;
|
|
31950
|
+
}
|
|
31951
|
+
}
|
|
31952
|
+
}
|
|
31953
|
+
namespace $404 {
|
|
31954
|
+
namespace Content {
|
|
31955
|
+
interface ApplicationJson {
|
|
31956
|
+
[k: string]: unknown;
|
|
31957
|
+
}
|
|
31958
|
+
}
|
|
31959
|
+
}
|
|
31960
|
+
namespace $429 {
|
|
31961
|
+
namespace Content {
|
|
31962
|
+
interface ApplicationJson {
|
|
31963
|
+
[k: string]: unknown;
|
|
31964
|
+
}
|
|
31965
|
+
}
|
|
31966
|
+
}
|
|
31967
|
+
namespace Default {
|
|
31968
|
+
namespace Content {
|
|
31969
|
+
interface ApplicationJson {
|
|
31970
|
+
[k: string]: unknown;
|
|
31971
|
+
}
|
|
31972
|
+
}
|
|
31973
|
+
}
|
|
31974
|
+
}
|
|
31975
|
+
}
|
|
31976
|
+
}
|
|
31977
|
+
namespace V3NextCustomersCustomerIdReferralSource {
|
|
31978
|
+
namespace Put {
|
|
31979
|
+
namespace Parameters {
|
|
31980
|
+
type Path = {
|
|
31981
|
+
customerId: string;
|
|
31982
|
+
};
|
|
31983
|
+
interface RequestBody {
|
|
31984
|
+
/**
|
|
31985
|
+
* free answer on how the customer became aware of mittwald.
|
|
31986
|
+
*/
|
|
31987
|
+
referralSource: string;
|
|
31988
|
+
}
|
|
31989
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
31990
|
+
type Query = {};
|
|
31991
|
+
}
|
|
31992
|
+
namespace Responses {
|
|
31993
|
+
namespace $200 {
|
|
31994
|
+
namespace Content {
|
|
31995
|
+
interface ApplicationJson {
|
|
31996
|
+
[k: string]: unknown;
|
|
31997
|
+
}
|
|
31998
|
+
}
|
|
31999
|
+
}
|
|
32000
|
+
namespace $400 {
|
|
32001
|
+
namespace Content {
|
|
32002
|
+
interface ApplicationJson {
|
|
32003
|
+
[k: string]: unknown;
|
|
32004
|
+
}
|
|
32005
|
+
}
|
|
32006
|
+
}
|
|
32007
|
+
namespace $403 {
|
|
32008
|
+
namespace Content {
|
|
32009
|
+
interface ApplicationJson {
|
|
32010
|
+
[k: string]: unknown;
|
|
32011
|
+
}
|
|
32012
|
+
}
|
|
32013
|
+
}
|
|
32014
|
+
namespace $404 {
|
|
32015
|
+
namespace Content {
|
|
32016
|
+
interface ApplicationJson {
|
|
32017
|
+
[k: string]: unknown;
|
|
32018
|
+
}
|
|
32019
|
+
}
|
|
32020
|
+
}
|
|
32021
|
+
namespace $429 {
|
|
32022
|
+
namespace Content {
|
|
32023
|
+
interface ApplicationJson {
|
|
32024
|
+
[k: string]: unknown;
|
|
32025
|
+
}
|
|
32026
|
+
}
|
|
32027
|
+
}
|
|
32028
|
+
namespace Default {
|
|
32029
|
+
namespace Content {
|
|
32030
|
+
interface ApplicationJson {
|
|
32031
|
+
[k: string]: unknown;
|
|
32032
|
+
}
|
|
32033
|
+
}
|
|
32034
|
+
}
|
|
32035
|
+
}
|
|
32036
|
+
}
|
|
32037
|
+
}
|
|
31823
32038
|
}
|
|
31824
32039
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.454.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.455.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -72,11 +72,11 @@
|
|
|
72
72
|
"test:compile": "run tsc --noEmit"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@mittwald/api-client-commons": "^4.
|
|
75
|
+
"@mittwald/api-client-commons": "^4.455.0",
|
|
76
76
|
"browser-or-node": "^3.0.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@mittwald/api-code-generator": "^4.
|
|
79
|
+
"@mittwald/api-code-generator": "^4.455.0",
|
|
80
80
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
81
81
|
"@types/node": "^22.18.11",
|
|
82
82
|
"@types/react": "^18.3.26",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
"optional": true
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "1d10c78aad37f31d1716253bc0a95188da3c72f7"
|
|
110
110
|
}
|