@mittwald/api-client 4.418.0 → 4.419.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 +6 -6
- package/dist/esm/generated/v2/client.js +11 -17
- package/dist/esm/generated/v2/descriptors.js +32 -50
- package/dist/esm/generated/v3-next/client.js +3 -9
- package/dist/esm/generated/v3-next/descriptors.js +8 -26
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +26 -26
- package/dist/types/generated/v2/client.d.ts +281 -454
- package/dist/types/generated/v2/descriptors.d.ts +11 -17
- package/dist/types/generated/v2/types.d.ts +408 -565
- package/dist/types/generated/v3-next/client.d.ts +72 -245
- package/dist/types/generated/v3-next/descriptors.d.ts +3 -9
- package/dist/types/generated/v3-next/types.d.ts +58 -215
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -730,14 +730,18 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
730
730
|
type RequestData = InferredRequestData<typeof descriptors.databaseGetMysqlUser>;
|
|
731
731
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseGetMysqlUser, TStatus>;
|
|
732
732
|
}
|
|
733
|
-
namespace
|
|
734
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
735
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
733
|
+
namespace DatabaseReplaceMysqlUser {
|
|
734
|
+
type RequestData = InferredRequestData<typeof descriptors.databaseReplaceMysqlUser>;
|
|
735
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseReplaceMysqlUser, TStatus>;
|
|
736
736
|
}
|
|
737
737
|
namespace DatabaseDeleteMysqlUser {
|
|
738
738
|
type RequestData = InferredRequestData<typeof descriptors.databaseDeleteMysqlUser>;
|
|
739
739
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseDeleteMysqlUser, TStatus>;
|
|
740
740
|
}
|
|
741
|
+
namespace DatabaseUpdateMysqlUser {
|
|
742
|
+
type RequestData = InferredRequestData<typeof descriptors.databaseUpdateMysqlUser>;
|
|
743
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseUpdateMysqlUser, TStatus>;
|
|
744
|
+
}
|
|
741
745
|
namespace DatabaseGetRedisDatabase {
|
|
742
746
|
type RequestData = InferredRequestData<typeof descriptors.databaseGetRedisDatabase>;
|
|
743
747
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseGetRedisDatabase, TStatus>;
|
|
@@ -774,26 +778,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
774
778
|
type RequestData = InferredRequestData<typeof descriptors.databaseListRedisVersions>;
|
|
775
779
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseListRedisVersions, TStatus>;
|
|
776
780
|
}
|
|
777
|
-
namespace DatabaseUpdateMysqlDatabaseDefaultCharset {
|
|
778
|
-
type RequestData = InferredRequestData<typeof descriptors.databaseUpdateMysqlDatabaseDefaultCharset>;
|
|
779
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseUpdateMysqlDatabaseDefaultCharset, TStatus>;
|
|
780
|
-
}
|
|
781
|
-
namespace DatabaseUpdateMysqlDatabaseDescription {
|
|
782
|
-
type RequestData = InferredRequestData<typeof descriptors.databaseUpdateMysqlDatabaseDescription>;
|
|
783
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseUpdateMysqlDatabaseDescription, TStatus>;
|
|
784
|
-
}
|
|
785
781
|
namespace DatabaseUpdateMysqlUserPassword {
|
|
786
782
|
type RequestData = InferredRequestData<typeof descriptors.databaseUpdateMysqlUserPassword>;
|
|
787
783
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseUpdateMysqlUserPassword, TStatus>;
|
|
788
784
|
}
|
|
789
|
-
namespace DatabaseUpdateRedisDatabaseConfiguration {
|
|
790
|
-
type RequestData = InferredRequestData<typeof descriptors.databaseUpdateRedisDatabaseConfiguration>;
|
|
791
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseUpdateRedisDatabaseConfiguration, TStatus>;
|
|
792
|
-
}
|
|
793
|
-
namespace DatabaseUpdateRedisDatabaseDescription {
|
|
794
|
-
type RequestData = InferredRequestData<typeof descriptors.databaseUpdateRedisDatabaseDescription>;
|
|
795
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseUpdateRedisDatabaseDescription, TStatus>;
|
|
796
|
-
}
|
|
797
785
|
namespace DomainListDomains {
|
|
798
786
|
type RequestData = InferredRequestData<typeof descriptors.domainListDomains>;
|
|
799
787
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListDomains, TStatus>;
|
|
@@ -16747,6 +16735,57 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
16747
16735
|
}
|
|
16748
16736
|
}
|
|
16749
16737
|
}
|
|
16738
|
+
namespace Patch {
|
|
16739
|
+
namespace Parameters {
|
|
16740
|
+
type Path = {
|
|
16741
|
+
mysqlUserId: string;
|
|
16742
|
+
};
|
|
16743
|
+
interface RequestBody {
|
|
16744
|
+
accessIpMask?: string;
|
|
16745
|
+
accessLevel?: "full" | "readonly";
|
|
16746
|
+
description?: string;
|
|
16747
|
+
externalAccess?: boolean;
|
|
16748
|
+
password?: string;
|
|
16749
|
+
}
|
|
16750
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
16751
|
+
type Query = {};
|
|
16752
|
+
}
|
|
16753
|
+
namespace Responses {
|
|
16754
|
+
namespace $204 {
|
|
16755
|
+
namespace Content {
|
|
16756
|
+
type Empty = unknown;
|
|
16757
|
+
}
|
|
16758
|
+
}
|
|
16759
|
+
namespace $400 {
|
|
16760
|
+
namespace Content {
|
|
16761
|
+
interface ApplicationJson {
|
|
16762
|
+
[k: string]: unknown;
|
|
16763
|
+
}
|
|
16764
|
+
}
|
|
16765
|
+
}
|
|
16766
|
+
namespace $404 {
|
|
16767
|
+
namespace Content {
|
|
16768
|
+
interface ApplicationJson {
|
|
16769
|
+
[k: string]: unknown;
|
|
16770
|
+
}
|
|
16771
|
+
}
|
|
16772
|
+
}
|
|
16773
|
+
namespace $429 {
|
|
16774
|
+
namespace Content {
|
|
16775
|
+
interface ApplicationJson {
|
|
16776
|
+
[k: string]: unknown;
|
|
16777
|
+
}
|
|
16778
|
+
}
|
|
16779
|
+
}
|
|
16780
|
+
namespace Default {
|
|
16781
|
+
namespace Content {
|
|
16782
|
+
interface ApplicationJson {
|
|
16783
|
+
[k: string]: unknown;
|
|
16784
|
+
}
|
|
16785
|
+
}
|
|
16786
|
+
}
|
|
16787
|
+
}
|
|
16788
|
+
}
|
|
16750
16789
|
}
|
|
16751
16790
|
namespace V3NextRedisDatabasesRedisDatabaseId {
|
|
16752
16791
|
namespace Get {
|
|
@@ -17184,104 +17223,6 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
17184
17223
|
}
|
|
17185
17224
|
}
|
|
17186
17225
|
}
|
|
17187
|
-
namespace V3NextMysqlDatabasesMysqlDatabaseIdDefaultCharset {
|
|
17188
|
-
namespace Patch {
|
|
17189
|
-
namespace Parameters {
|
|
17190
|
-
type Path = {
|
|
17191
|
-
mysqlDatabaseId: string;
|
|
17192
|
-
};
|
|
17193
|
-
interface RequestBody {
|
|
17194
|
-
characterSettings: MittwaldAPIV3Next.Components.Schemas.DeMittwaldDatabaseCharacterSettings;
|
|
17195
|
-
}
|
|
17196
|
-
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
17197
|
-
type Query = {};
|
|
17198
|
-
}
|
|
17199
|
-
namespace Responses {
|
|
17200
|
-
namespace $204 {
|
|
17201
|
-
namespace Content {
|
|
17202
|
-
type Empty = unknown;
|
|
17203
|
-
}
|
|
17204
|
-
}
|
|
17205
|
-
namespace $400 {
|
|
17206
|
-
namespace Content {
|
|
17207
|
-
interface ApplicationJson {
|
|
17208
|
-
[k: string]: unknown;
|
|
17209
|
-
}
|
|
17210
|
-
}
|
|
17211
|
-
}
|
|
17212
|
-
namespace $404 {
|
|
17213
|
-
namespace Content {
|
|
17214
|
-
interface ApplicationJson {
|
|
17215
|
-
[k: string]: unknown;
|
|
17216
|
-
}
|
|
17217
|
-
}
|
|
17218
|
-
}
|
|
17219
|
-
namespace $429 {
|
|
17220
|
-
namespace Content {
|
|
17221
|
-
interface ApplicationJson {
|
|
17222
|
-
[k: string]: unknown;
|
|
17223
|
-
}
|
|
17224
|
-
}
|
|
17225
|
-
}
|
|
17226
|
-
namespace Default {
|
|
17227
|
-
namespace Content {
|
|
17228
|
-
interface ApplicationJson {
|
|
17229
|
-
[k: string]: unknown;
|
|
17230
|
-
}
|
|
17231
|
-
}
|
|
17232
|
-
}
|
|
17233
|
-
}
|
|
17234
|
-
}
|
|
17235
|
-
}
|
|
17236
|
-
namespace V3NextMysqlDatabasesMysqlDatabaseIdDescription {
|
|
17237
|
-
namespace Patch {
|
|
17238
|
-
namespace Parameters {
|
|
17239
|
-
type Path = {
|
|
17240
|
-
mysqlDatabaseId: string;
|
|
17241
|
-
};
|
|
17242
|
-
interface RequestBody {
|
|
17243
|
-
description: string;
|
|
17244
|
-
}
|
|
17245
|
-
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
17246
|
-
type Query = {};
|
|
17247
|
-
}
|
|
17248
|
-
namespace Responses {
|
|
17249
|
-
namespace $204 {
|
|
17250
|
-
namespace Content {
|
|
17251
|
-
type Empty = unknown;
|
|
17252
|
-
}
|
|
17253
|
-
}
|
|
17254
|
-
namespace $400 {
|
|
17255
|
-
namespace Content {
|
|
17256
|
-
interface ApplicationJson {
|
|
17257
|
-
[k: string]: unknown;
|
|
17258
|
-
}
|
|
17259
|
-
}
|
|
17260
|
-
}
|
|
17261
|
-
namespace $404 {
|
|
17262
|
-
namespace Content {
|
|
17263
|
-
interface ApplicationJson {
|
|
17264
|
-
[k: string]: unknown;
|
|
17265
|
-
}
|
|
17266
|
-
}
|
|
17267
|
-
}
|
|
17268
|
-
namespace $429 {
|
|
17269
|
-
namespace Content {
|
|
17270
|
-
interface ApplicationJson {
|
|
17271
|
-
[k: string]: unknown;
|
|
17272
|
-
}
|
|
17273
|
-
}
|
|
17274
|
-
}
|
|
17275
|
-
namespace Default {
|
|
17276
|
-
namespace Content {
|
|
17277
|
-
interface ApplicationJson {
|
|
17278
|
-
[k: string]: unknown;
|
|
17279
|
-
}
|
|
17280
|
-
}
|
|
17281
|
-
}
|
|
17282
|
-
}
|
|
17283
|
-
}
|
|
17284
|
-
}
|
|
17285
17226
|
namespace V3NextMysqlUsersMysqlUserIdPassword {
|
|
17286
17227
|
namespace Patch {
|
|
17287
17228
|
namespace Parameters {
|
|
@@ -17331,104 +17272,6 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
17331
17272
|
}
|
|
17332
17273
|
}
|
|
17333
17274
|
}
|
|
17334
|
-
namespace V3NextRedisDatabasesRedisDatabaseIdConfiguration {
|
|
17335
|
-
namespace Patch {
|
|
17336
|
-
namespace Parameters {
|
|
17337
|
-
type Path = {
|
|
17338
|
-
redisDatabaseId: string;
|
|
17339
|
-
};
|
|
17340
|
-
interface RequestBody {
|
|
17341
|
-
configuration?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldDatabaseRedisDatabaseConfiguration;
|
|
17342
|
-
}
|
|
17343
|
-
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
17344
|
-
type Query = {};
|
|
17345
|
-
}
|
|
17346
|
-
namespace Responses {
|
|
17347
|
-
namespace $204 {
|
|
17348
|
-
namespace Content {
|
|
17349
|
-
type Empty = unknown;
|
|
17350
|
-
}
|
|
17351
|
-
}
|
|
17352
|
-
namespace $400 {
|
|
17353
|
-
namespace Content {
|
|
17354
|
-
interface ApplicationJson {
|
|
17355
|
-
[k: string]: unknown;
|
|
17356
|
-
}
|
|
17357
|
-
}
|
|
17358
|
-
}
|
|
17359
|
-
namespace $404 {
|
|
17360
|
-
namespace Content {
|
|
17361
|
-
interface ApplicationJson {
|
|
17362
|
-
[k: string]: unknown;
|
|
17363
|
-
}
|
|
17364
|
-
}
|
|
17365
|
-
}
|
|
17366
|
-
namespace $429 {
|
|
17367
|
-
namespace Content {
|
|
17368
|
-
interface ApplicationJson {
|
|
17369
|
-
[k: string]: unknown;
|
|
17370
|
-
}
|
|
17371
|
-
}
|
|
17372
|
-
}
|
|
17373
|
-
namespace Default {
|
|
17374
|
-
namespace Content {
|
|
17375
|
-
interface ApplicationJson {
|
|
17376
|
-
[k: string]: unknown;
|
|
17377
|
-
}
|
|
17378
|
-
}
|
|
17379
|
-
}
|
|
17380
|
-
}
|
|
17381
|
-
}
|
|
17382
|
-
}
|
|
17383
|
-
namespace V3NextRedisDatabasesRedisDatabaseIdDescription {
|
|
17384
|
-
namespace Patch {
|
|
17385
|
-
namespace Parameters {
|
|
17386
|
-
type Path = {
|
|
17387
|
-
redisDatabaseId: string;
|
|
17388
|
-
};
|
|
17389
|
-
interface RequestBody {
|
|
17390
|
-
description: string;
|
|
17391
|
-
}
|
|
17392
|
-
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
17393
|
-
type Query = {};
|
|
17394
|
-
}
|
|
17395
|
-
namespace Responses {
|
|
17396
|
-
namespace $204 {
|
|
17397
|
-
namespace Content {
|
|
17398
|
-
type Empty = unknown;
|
|
17399
|
-
}
|
|
17400
|
-
}
|
|
17401
|
-
namespace $400 {
|
|
17402
|
-
namespace Content {
|
|
17403
|
-
interface ApplicationJson {
|
|
17404
|
-
[k: string]: unknown;
|
|
17405
|
-
}
|
|
17406
|
-
}
|
|
17407
|
-
}
|
|
17408
|
-
namespace $404 {
|
|
17409
|
-
namespace Content {
|
|
17410
|
-
interface ApplicationJson {
|
|
17411
|
-
[k: string]: unknown;
|
|
17412
|
-
}
|
|
17413
|
-
}
|
|
17414
|
-
}
|
|
17415
|
-
namespace $429 {
|
|
17416
|
-
namespace Content {
|
|
17417
|
-
interface ApplicationJson {
|
|
17418
|
-
[k: string]: unknown;
|
|
17419
|
-
}
|
|
17420
|
-
}
|
|
17421
|
-
}
|
|
17422
|
-
namespace Default {
|
|
17423
|
-
namespace Content {
|
|
17424
|
-
interface ApplicationJson {
|
|
17425
|
-
[k: string]: unknown;
|
|
17426
|
-
}
|
|
17427
|
-
}
|
|
17428
|
-
}
|
|
17429
|
-
}
|
|
17430
|
-
}
|
|
17431
|
-
}
|
|
17432
17275
|
namespace V3NextAppInstallationsAppInstallationIdActionsAction { }
|
|
17433
17276
|
namespace V3NextAppinstallationsAppInstallationIdDatabases { }
|
|
17434
17277
|
namespace V3NextActionsValidateContainerRegistryUri { }
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.418.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.419.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.419.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.419.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": "848457887f919ab16fc843ee8b79dc2b3cb1a8cb"
|
|
110
110
|
}
|