@mittwald/api-client 4.342.0 → 4.344.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.343.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
|
/**
|
|
@@ -3057,18 +3063,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3057
3063
|
};
|
|
3058
3064
|
userId: string;
|
|
3059
3065
|
}
|
|
3060
|
-
|
|
3061
|
-
conversationId: string;
|
|
3062
|
-
createdAt: string;
|
|
3063
|
-
/**
|
|
3064
|
-
* @maxItems 0
|
|
3065
|
-
*/
|
|
3066
|
-
files?: [];
|
|
3066
|
+
type ConversationServiceRequest = MittwaldAPIV2.Components.Schemas.ConversationGenericServiceRequest & {
|
|
3067
3067
|
messageContent: "relocation" | "call";
|
|
3068
|
-
messageId: string;
|
|
3069
3068
|
meta: MittwaldAPIV2.Components.Schemas.ConversationServiceRequestRelocationPayload;
|
|
3070
|
-
|
|
3071
|
-
}
|
|
3069
|
+
};
|
|
3072
3070
|
type ConversationShareableAggregateReference = {
|
|
3073
3071
|
aggregate: "user";
|
|
3074
3072
|
domain: "user";
|
|
@@ -5806,6 +5804,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5806
5804
|
commonName: string;
|
|
5807
5805
|
projectId: string;
|
|
5808
5806
|
}
|
|
5807
|
+
/**
|
|
5808
|
+
* Specifies the type of certificate.
|
|
5809
|
+
*
|
|
5810
|
+
* Possible values:
|
|
5811
|
+
* - `0` – `UNSPECIFIED`: The certificate type is not specified.
|
|
5812
|
+
* - `1` – `INTERNAL`: A certificate issued and managed internally by the system.
|
|
5813
|
+
* - `2` – `EXTERNAL`: A certificate provided by an external source and imported into the system.
|
|
5814
|
+
* - `3` – `DNS`: A certificate validated using DNS-based verification.
|
|
5815
|
+
*
|
|
5816
|
+
*/
|
|
5809
5817
|
type SslCertificateType = 0 | 1 | 2 | 3;
|
|
5810
5818
|
interface SslCheckReplaceChanges {
|
|
5811
5819
|
commonName?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
|
|
@@ -6116,6 +6124,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6116
6124
|
}
|
|
6117
6125
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6118
6126
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
6127
|
+
interface ConversationGenericServiceRequest {
|
|
6128
|
+
conversationId: string;
|
|
6129
|
+
createdAt: string;
|
|
6130
|
+
/**
|
|
6131
|
+
* @maxItems 0
|
|
6132
|
+
*/
|
|
6133
|
+
files?: [];
|
|
6134
|
+
messageId: string;
|
|
6135
|
+
type: "SERVICE_REQUEST";
|
|
6136
|
+
}
|
|
6119
6137
|
interface CommonsAddress {
|
|
6120
6138
|
street: string;
|
|
6121
6139
|
houseNumber: string;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.343.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.344.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.344.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.344.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": "2b09a88a993a5265b346b93d50d79f8db7e3dbff"
|
|
84
84
|
}
|