@mittwald/api-client 4.342.0 → 4.343.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/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.342.0';
|
|
@@ -133,7 +133,9 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
133
133
|
"x-access-token"?: string | undefined;
|
|
134
134
|
} | undefined;
|
|
135
135
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
136
|
+
appExternalVersion: string;
|
|
136
137
|
appId: string;
|
|
138
|
+
appName: string;
|
|
137
139
|
appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
138
140
|
createdAt: string;
|
|
139
141
|
customDocumentRoot?: string | undefined;
|
|
@@ -153,6 +155,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
153
155
|
screenshotRef?: string | undefined;
|
|
154
156
|
shortId: string;
|
|
155
157
|
systemSoftware: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
158
|
+
updateAvailable: boolean;
|
|
156
159
|
updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
157
160
|
userInputs: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
|
|
158
161
|
}>;
|
|
@@ -1010,7 +1010,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1010
1010
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1011
1011
|
}>;
|
|
1012
1012
|
}, import("@mittwald/api-client-commons").Response<{
|
|
1013
|
+
appExternalVersion: string;
|
|
1013
1014
|
appId: string;
|
|
1015
|
+
appName: string;
|
|
1014
1016
|
appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
1015
1017
|
createdAt: string;
|
|
1016
1018
|
customDocumentRoot?: string | undefined;
|
|
@@ -1030,6 +1032,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1030
1032
|
screenshotRef?: string | undefined;
|
|
1031
1033
|
shortId: string;
|
|
1032
1034
|
systemSoftware: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
1035
|
+
updateAvailable: boolean;
|
|
1033
1036
|
updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
1034
1037
|
userInputs: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
|
|
1035
1038
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -1051,7 +1054,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1051
1054
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1052
1055
|
}>;
|
|
1053
1056
|
}, import("@mittwald/api-client-commons").Response<{
|
|
1057
|
+
appExternalVersion: string;
|
|
1054
1058
|
appId: string;
|
|
1059
|
+
appName: string;
|
|
1055
1060
|
appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
1056
1061
|
createdAt: string;
|
|
1057
1062
|
customDocumentRoot?: string | undefined;
|
|
@@ -1071,6 +1076,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1071
1076
|
screenshotRef?: string | undefined;
|
|
1072
1077
|
shortId: string;
|
|
1073
1078
|
systemSoftware: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
1079
|
+
updateAvailable: boolean;
|
|
1074
1080
|
updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
1075
1081
|
userInputs: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
|
|
1076
1082
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -2003,7 +2003,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2003
2003
|
* An AppInstallation is a concrete manifestation of an App in a specific AppVersion.
|
|
2004
2004
|
*/
|
|
2005
2005
|
interface AppAppInstallation {
|
|
2006
|
+
appExternalVersion: string;
|
|
2006
2007
|
appId: string;
|
|
2008
|
+
appName: string;
|
|
2007
2009
|
appVersion: MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
2008
2010
|
createdAt: string;
|
|
2009
2011
|
customDocumentRoot?: string;
|
|
@@ -2026,6 +2028,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2026
2028
|
screenshotRef?: string;
|
|
2027
2029
|
shortId: string;
|
|
2028
2030
|
systemSoftware: MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
2031
|
+
updateAvailable: boolean;
|
|
2029
2032
|
updatePolicy: MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
2030
2033
|
userInputs: MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
|
|
2031
2034
|
}
|
|
@@ -2090,8 +2093,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2090
2093
|
* InstalledSystemSoftware describes the currently configured and installed SystemSoftwareVersion of a SystemSoftware besides the desired SystemSoftwareUpdatePolicy inside an AppInstallation.
|
|
2091
2094
|
*/
|
|
2092
2095
|
interface AppInstalledSystemSoftware {
|
|
2096
|
+
externalVersion: string;
|
|
2097
|
+
name: string;
|
|
2093
2098
|
systemSoftwareId: string;
|
|
2094
2099
|
systemSoftwareVersion: MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
2100
|
+
updateAvailable: boolean;
|
|
2095
2101
|
updatePolicy: MittwaldAPIV2.Components.Schemas.AppSystemSoftwareUpdatePolicy;
|
|
2096
2102
|
}
|
|
2097
2103
|
/**
|
|
@@ -5806,6 +5812,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5806
5812
|
commonName: string;
|
|
5807
5813
|
projectId: string;
|
|
5808
5814
|
}
|
|
5815
|
+
/**
|
|
5816
|
+
* Specifies the type of certificate.
|
|
5817
|
+
*
|
|
5818
|
+
* Possible values:
|
|
5819
|
+
* - `0` – `UNSPECIFIED`: The certificate type is not specified.
|
|
5820
|
+
* - `1` – `INTERNAL`: A certificate issued and managed internally by the system.
|
|
5821
|
+
* - `2` – `EXTERNAL`: A certificate provided by an external source and imported into the system.
|
|
5822
|
+
* - `3` – `DNS`: A certificate validated using DNS-based verification.
|
|
5823
|
+
*
|
|
5824
|
+
*/
|
|
5809
5825
|
type SslCertificateType = 0 | 1 | 2 | 3;
|
|
5810
5826
|
interface SslCheckReplaceChanges {
|
|
5811
5827
|
commonName?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.342.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.343.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",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^4.
|
|
49
|
+
"@mittwald/api-client-commons": "^4.343.0",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^4.
|
|
53
|
+
"@mittwald/api-code-generator": "^4.343.0",
|
|
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": "e35132b921d3728452b1b9e25560667278894a44"
|
|
84
84
|
}
|