@mittwald/api-client 4.79.0 → 4.81.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.80.0';
|
|
@@ -1058,6 +1058,8 @@ declare const buildDatabaseApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1058
1058
|
mainUser: boolean;
|
|
1059
1059
|
name: string;
|
|
1060
1060
|
passwordUpdatedAt: string;
|
|
1061
|
+
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseDatabaseUserStatus;
|
|
1062
|
+
statusSetAt: string;
|
|
1061
1063
|
updatedAt: string;
|
|
1062
1064
|
}>;
|
|
1063
1065
|
/** Get a RedisDatabase. */
|
|
@@ -8747,6 +8747,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8747
8747
|
mainUser: boolean;
|
|
8748
8748
|
name: string;
|
|
8749
8749
|
passwordUpdatedAt: string;
|
|
8750
|
+
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseDatabaseUserStatus;
|
|
8751
|
+
statusSetAt: string;
|
|
8750
8752
|
updatedAt: string;
|
|
8751
8753
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8752
8754
|
[x: string]: unknown;
|
|
@@ -8780,6 +8782,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8780
8782
|
mainUser: boolean;
|
|
8781
8783
|
name: string;
|
|
8782
8784
|
passwordUpdatedAt: string;
|
|
8785
|
+
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseDatabaseUserStatus;
|
|
8786
|
+
statusSetAt: string;
|
|
8783
8787
|
updatedAt: string;
|
|
8784
8788
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8785
8789
|
[x: string]: unknown;
|
|
@@ -2073,6 +2073,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2073
2073
|
password: string;
|
|
2074
2074
|
}
|
|
2075
2075
|
type DatabaseDatabaseStatus = "pending" | "ready" | "migrating" | "importing" | "error";
|
|
2076
|
+
type DatabaseDatabaseUserStatus = "pending" | "ready" | "error" | "terminating" | "disabled";
|
|
2076
2077
|
interface DatabaseMySqlCharacterSettings {
|
|
2077
2078
|
collations: string[];
|
|
2078
2079
|
name: string;
|
|
@@ -2116,6 +2117,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2116
2117
|
mainUser: boolean;
|
|
2117
2118
|
name: string;
|
|
2118
2119
|
passwordUpdatedAt: string;
|
|
2120
|
+
status: MittwaldAPIV2.Components.Schemas.DatabaseDatabaseUserStatus;
|
|
2121
|
+
statusSetAt: string;
|
|
2119
2122
|
updatedAt: string;
|
|
2120
2123
|
}
|
|
2121
2124
|
interface DatabaseMySqlVersion {
|
|
@@ -3305,6 +3308,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3305
3308
|
firstName?: string;
|
|
3306
3309
|
lastName?: string;
|
|
3307
3310
|
/**
|
|
3311
|
+
* @deprecated
|
|
3308
3312
|
* the users title
|
|
3309
3313
|
*/
|
|
3310
3314
|
title?: "other" | "mr" | "ms";
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.80.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.81.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",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "9b864518647e619a17a455e32690378db5300610"
|
|
84
84
|
}
|