@mittwald/api-client 4.390.0 → 4.392.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 +2 -2
- package/dist/esm/generated/v2/client.js +6 -2
- package/dist/esm/generated/v2/descriptors.js +18 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +20 -20
- package/dist/types/generated/v2/client.d.ts +285 -104
- package/dist/types/generated/v2/descriptors.d.ts +6 -2
- package/dist/types/generated/v2/types.d.ts +330 -183
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -246,6 +246,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
246
246
|
type RequestData = InferredRequestData<typeof descriptors.containerCreateRegistry>;
|
|
247
247
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerCreateRegistry, TStatus>;
|
|
248
248
|
}
|
|
249
|
+
namespace ContainerListStacks {
|
|
250
|
+
type RequestData = InferredRequestData<typeof descriptors.containerListStacks>;
|
|
251
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListStacks, TStatus>;
|
|
252
|
+
}
|
|
253
|
+
namespace ContainerCreateStack {
|
|
254
|
+
type RequestData = InferredRequestData<typeof descriptors.containerCreateStack>;
|
|
255
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerCreateStack, TStatus>;
|
|
256
|
+
}
|
|
249
257
|
namespace ContainerGetStack {
|
|
250
258
|
type RequestData = InferredRequestData<typeof descriptors.containerGetStack>;
|
|
251
259
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetStack, TStatus>;
|
|
@@ -254,6 +262,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
254
262
|
type RequestData = InferredRequestData<typeof descriptors.containerDeclareStack>;
|
|
255
263
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerDeclareStack, TStatus>;
|
|
256
264
|
}
|
|
265
|
+
namespace ContainerDeleteStack {
|
|
266
|
+
type RequestData = InferredRequestData<typeof descriptors.containerDeleteStack>;
|
|
267
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerDeleteStack, TStatus>;
|
|
268
|
+
}
|
|
257
269
|
namespace ContainerUpdateStack {
|
|
258
270
|
type RequestData = InferredRequestData<typeof descriptors.containerUpdateStack>;
|
|
259
271
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerUpdateStack, TStatus>;
|
|
@@ -302,10 +314,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
302
314
|
type RequestData = InferredRequestData<typeof descriptors.containerListStackVolumes>;
|
|
303
315
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListStackVolumes, TStatus>;
|
|
304
316
|
}
|
|
305
|
-
namespace ContainerListStacks {
|
|
306
|
-
type RequestData = InferredRequestData<typeof descriptors.containerListStacks>;
|
|
307
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListStacks, TStatus>;
|
|
308
|
-
}
|
|
309
317
|
namespace ContainerListVolumes {
|
|
310
318
|
type RequestData = InferredRequestData<typeof descriptors.containerListVolumes>;
|
|
311
319
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListVolumes, TStatus>;
|
|
@@ -2992,14 +3000,27 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2992
3000
|
fallback?: string;
|
|
2993
3001
|
};
|
|
2994
3002
|
}
|
|
2995
|
-
|
|
3003
|
+
interface ConversationConversation {
|
|
3004
|
+
category?: MittwaldAPIV2.Components.Schemas.ConversationCategory;
|
|
3005
|
+
conversationId: string;
|
|
3006
|
+
createdAt: string;
|
|
2996
3007
|
createdBy?: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
2997
3008
|
lastMessage?: {
|
|
2998
3009
|
createdAt: string;
|
|
2999
3010
|
createdBy?: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
3000
3011
|
};
|
|
3012
|
+
lastMessageAt?: string;
|
|
3001
3013
|
lastMessageBy?: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
3002
|
-
|
|
3014
|
+
mainUser: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
3015
|
+
notificationRoles?: MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[];
|
|
3016
|
+
relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference;
|
|
3017
|
+
relations?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[];
|
|
3018
|
+
sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference;
|
|
3019
|
+
shortId: string;
|
|
3020
|
+
status: MittwaldAPIV2.Components.Schemas.ConversationStatus;
|
|
3021
|
+
title: string;
|
|
3022
|
+
visibility: "shared" | "private";
|
|
3023
|
+
}
|
|
3003
3024
|
interface ConversationGetConversationIdResponse {
|
|
3004
3025
|
conversationId: string;
|
|
3005
3026
|
shortId: string;
|
|
@@ -3173,9 +3194,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3173
3194
|
type ConversationStatusUpdate = MittwaldAPIV2.Components.Schemas.ConversationResubmissionStatusUpdate | MittwaldAPIV2.Components.Schemas.ConversationGenericStatusUpdate;
|
|
3174
3195
|
interface ConversationUser {
|
|
3175
3196
|
active?: boolean;
|
|
3197
|
+
atlasGroup?: MittwaldAPIV2.Components.Schemas.ConversationGroup;
|
|
3176
3198
|
avatarRefId?: string;
|
|
3177
3199
|
clearName?: string;
|
|
3178
|
-
|
|
3200
|
+
department?: MittwaldAPIV2.Components.Schemas.ConversationDepartment;
|
|
3201
|
+
group?: MittwaldAPIV2.Components.Schemas.ConversationGroup;
|
|
3179
3202
|
userId: string;
|
|
3180
3203
|
}
|
|
3181
3204
|
interface StraceData {
|
|
@@ -6319,6 +6342,42 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6319
6342
|
}
|
|
6320
6343
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6321
6344
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
6345
|
+
interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
|
|
6346
|
+
changes: {
|
|
6347
|
+
after?: {
|
|
6348
|
+
software: string;
|
|
6349
|
+
softwareVersion: string;
|
|
6350
|
+
updatePolicy: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
6351
|
+
};
|
|
6352
|
+
before?: {
|
|
6353
|
+
software?: string;
|
|
6354
|
+
softwareVersion?: string;
|
|
6355
|
+
updatePolicy?: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
6356
|
+
};
|
|
6357
|
+
};
|
|
6358
|
+
name: "app.systemsoftware-set" | "app.systemsoftware-deleted";
|
|
6359
|
+
parameters?: {
|
|
6360
|
+
software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6361
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6362
|
+
};
|
|
6363
|
+
}
|
|
6364
|
+
interface ActivitylogParameterProperty {
|
|
6365
|
+
aggregate?: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6366
|
+
name: string;
|
|
6367
|
+
}
|
|
6368
|
+
interface ActivitylogAppInstallationCopyRequested {
|
|
6369
|
+
changes: {
|
|
6370
|
+
after?: {
|
|
6371
|
+
appId: string;
|
|
6372
|
+
sourceAppInstallationId: string;
|
|
6373
|
+
};
|
|
6374
|
+
before?: {
|
|
6375
|
+
appId?: string | null;
|
|
6376
|
+
sourceAppInstallationId?: string | null;
|
|
6377
|
+
};
|
|
6378
|
+
};
|
|
6379
|
+
name: "app.copy-requested";
|
|
6380
|
+
}
|
|
6322
6381
|
interface ActivitylogDnsCnameRecordSet {
|
|
6323
6382
|
changes: {
|
|
6324
6383
|
after?: {
|
|
@@ -6393,101 +6452,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6393
6452
|
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6394
6453
|
};
|
|
6395
6454
|
}
|
|
6396
|
-
interface ActivitylogParameterProperty {
|
|
6397
|
-
aggregate?: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6398
|
-
name: string;
|
|
6399
|
-
}
|
|
6400
|
-
interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
|
|
6401
|
-
changes: {
|
|
6402
|
-
after?: {
|
|
6403
|
-
software: string;
|
|
6404
|
-
softwareVersion: string;
|
|
6405
|
-
updatePolicy: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
6406
|
-
};
|
|
6407
|
-
before?: {
|
|
6408
|
-
software?: string;
|
|
6409
|
-
softwareVersion?: string;
|
|
6410
|
-
updatePolicy?: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
6411
|
-
};
|
|
6412
|
-
};
|
|
6413
|
-
name: "app.systemsoftware-set" | "app.systemsoftware-deleted";
|
|
6414
|
-
parameters?: {
|
|
6415
|
-
software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6416
|
-
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6417
|
-
};
|
|
6418
|
-
}
|
|
6419
|
-
interface ActivitylogAppInstallationCopyRequested {
|
|
6420
|
-
changes: {
|
|
6421
|
-
after?: {
|
|
6422
|
-
appId: string;
|
|
6423
|
-
sourceAppInstallationId: string;
|
|
6424
|
-
};
|
|
6425
|
-
before?: {
|
|
6426
|
-
appId?: string | null;
|
|
6427
|
-
sourceAppInstallationId?: string | null;
|
|
6428
|
-
};
|
|
6429
|
-
};
|
|
6430
|
-
name: "app.copy-requested";
|
|
6431
|
-
}
|
|
6432
|
-
interface ActivitylogDatabaseCreated {
|
|
6433
|
-
changes: {
|
|
6434
|
-
after?: {
|
|
6435
|
-
description: string;
|
|
6436
|
-
name: string;
|
|
6437
|
-
version: string;
|
|
6438
|
-
};
|
|
6439
|
-
before?: {
|
|
6440
|
-
description?: string | null;
|
|
6441
|
-
name?: string | null;
|
|
6442
|
-
version?: string | null;
|
|
6443
|
-
};
|
|
6444
|
-
};
|
|
6445
|
-
name: "database.mysql-created" | "database.redis-created";
|
|
6446
|
-
parameters: {
|
|
6447
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6448
|
-
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6449
|
-
};
|
|
6450
|
-
}
|
|
6451
|
-
interface ActivitylogDatabaseMysqlUserCreated {
|
|
6452
|
-
changes: {
|
|
6453
|
-
after?: {
|
|
6454
|
-
description: string;
|
|
6455
|
-
externalAccess: boolean;
|
|
6456
|
-
name: string;
|
|
6457
|
-
permissions: {};
|
|
6458
|
-
};
|
|
6459
|
-
before?: {
|
|
6460
|
-
description?: string | null;
|
|
6461
|
-
externalAccess?: boolean | null;
|
|
6462
|
-
name?: string | null;
|
|
6463
|
-
permissions?: {} | null;
|
|
6464
|
-
};
|
|
6465
|
-
};
|
|
6466
|
-
name: "database.mysql-user-created";
|
|
6467
|
-
parameters: {
|
|
6468
|
-
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6469
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6470
|
-
};
|
|
6471
|
-
}
|
|
6472
|
-
interface ActivitylogAggregateReference {
|
|
6473
|
-
aggregate: string;
|
|
6474
|
-
domain: string;
|
|
6475
|
-
id: string;
|
|
6476
|
-
}
|
|
6477
|
-
interface ActivitylogDnsSrvRecordSet {
|
|
6478
|
-
changes: {
|
|
6479
|
-
after?: {
|
|
6480
|
-
srv: {}[];
|
|
6481
|
-
};
|
|
6482
|
-
before?: {
|
|
6483
|
-
srv: {}[];
|
|
6484
|
-
};
|
|
6485
|
-
};
|
|
6486
|
-
name: "dns.srv-record-set";
|
|
6487
|
-
parameters: {
|
|
6488
|
-
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6489
|
-
};
|
|
6490
|
-
}
|
|
6491
6455
|
interface ActivitylogDnsMxRecordSet {
|
|
6492
6456
|
changes: {
|
|
6493
6457
|
after?: {
|
|
@@ -6560,31 +6524,63 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6560
6524
|
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6561
6525
|
};
|
|
6562
6526
|
}
|
|
6563
|
-
interface
|
|
6527
|
+
interface ActivitylogDatabaseCreated {
|
|
6528
|
+
changes: {
|
|
6529
|
+
after?: {
|
|
6530
|
+
description: string;
|
|
6531
|
+
name: string;
|
|
6532
|
+
version: string;
|
|
6533
|
+
};
|
|
6534
|
+
before?: {
|
|
6535
|
+
description?: string | null;
|
|
6536
|
+
name?: string | null;
|
|
6537
|
+
version?: string | null;
|
|
6538
|
+
};
|
|
6539
|
+
};
|
|
6540
|
+
name: "database.mysql-created" | "database.redis-created";
|
|
6541
|
+
parameters: {
|
|
6542
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6543
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6544
|
+
};
|
|
6545
|
+
}
|
|
6546
|
+
interface ActivitylogDatabaseMysqlUserCreated {
|
|
6564
6547
|
changes: {
|
|
6565
6548
|
after?: {
|
|
6566
6549
|
description: string;
|
|
6567
6550
|
externalAccess: boolean;
|
|
6551
|
+
name: string;
|
|
6568
6552
|
permissions: {};
|
|
6569
6553
|
};
|
|
6570
6554
|
before?: {
|
|
6571
|
-
description
|
|
6572
|
-
externalAccess
|
|
6573
|
-
|
|
6555
|
+
description?: string | null;
|
|
6556
|
+
externalAccess?: boolean | null;
|
|
6557
|
+
name?: string | null;
|
|
6558
|
+
permissions?: {} | null;
|
|
6574
6559
|
};
|
|
6575
6560
|
};
|
|
6576
|
-
name: "database.mysql-user-
|
|
6561
|
+
name: "database.mysql-user-created";
|
|
6577
6562
|
parameters: {
|
|
6578
6563
|
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6579
6564
|
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6580
6565
|
};
|
|
6581
6566
|
}
|
|
6582
|
-
interface
|
|
6583
|
-
|
|
6584
|
-
|
|
6567
|
+
interface ActivitylogAggregateReference {
|
|
6568
|
+
aggregate: string;
|
|
6569
|
+
domain: string;
|
|
6570
|
+
id: string;
|
|
6571
|
+
}
|
|
6572
|
+
interface ActivitylogDnsSrvRecordSet {
|
|
6573
|
+
changes: {
|
|
6574
|
+
after?: {
|
|
6575
|
+
srv: {}[];
|
|
6576
|
+
};
|
|
6577
|
+
before?: {
|
|
6578
|
+
srv: {}[];
|
|
6579
|
+
};
|
|
6580
|
+
};
|
|
6581
|
+
name: "dns.srv-record-set";
|
|
6585
6582
|
parameters: {
|
|
6586
|
-
|
|
6587
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6583
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6588
6584
|
};
|
|
6589
6585
|
}
|
|
6590
6586
|
interface ActivitylogLogEntry {
|
|
@@ -6614,6 +6610,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6614
6610
|
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6615
6611
|
};
|
|
6616
6612
|
}
|
|
6613
|
+
interface ActivitylogDatabaseMysqlUserDeleted {
|
|
6614
|
+
changes: {};
|
|
6615
|
+
name: "database.mysql-user-deleted";
|
|
6616
|
+
parameters: {
|
|
6617
|
+
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6618
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6619
|
+
};
|
|
6620
|
+
}
|
|
6617
6621
|
/**
|
|
6618
6622
|
* Fallback when no matching action is found
|
|
6619
6623
|
*/
|
|
@@ -6633,6 +6637,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6633
6637
|
[k: string]: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6634
6638
|
};
|
|
6635
6639
|
}
|
|
6640
|
+
interface ActivitylogDatabaseMysqlUserUpdated {
|
|
6641
|
+
changes: {
|
|
6642
|
+
after?: {
|
|
6643
|
+
description: string;
|
|
6644
|
+
externalAccess: boolean;
|
|
6645
|
+
permissions: {};
|
|
6646
|
+
};
|
|
6647
|
+
before?: {
|
|
6648
|
+
description: string | null;
|
|
6649
|
+
externalAccess: boolean | null;
|
|
6650
|
+
permissions: {};
|
|
6651
|
+
};
|
|
6652
|
+
};
|
|
6653
|
+
name: "database.mysql-user-updated";
|
|
6654
|
+
parameters: {
|
|
6655
|
+
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6656
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6657
|
+
};
|
|
6658
|
+
}
|
|
6636
6659
|
interface ProjectProjectListItem {
|
|
6637
6660
|
backupStorageUsageInBytes: number;
|
|
6638
6661
|
backupStorageUsageInBytesSetAt: string;
|
|
@@ -6668,20 +6691,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6668
6691
|
webStorageUsageInBytes: number;
|
|
6669
6692
|
webStorageUsageInBytesSetAt: string;
|
|
6670
6693
|
}
|
|
6671
|
-
|
|
6672
|
-
|
|
6673
|
-
|
|
6674
|
-
|
|
6675
|
-
|
|
6676
|
-
|
|
6677
|
-
notificationRoles?: MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[];
|
|
6678
|
-
relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference;
|
|
6679
|
-
relations?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[];
|
|
6680
|
-
sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference;
|
|
6681
|
-
shortId: string;
|
|
6682
|
-
status: MittwaldAPIV2.Components.Schemas.ConversationStatus;
|
|
6683
|
-
title: string;
|
|
6684
|
-
visibility: "shared" | "private";
|
|
6694
|
+
type ConversationDepartment = "development" | "mail" | "accounting" | "cloudHosting" | "customerService" | "productManagement" | "generic";
|
|
6695
|
+
interface ConversationGroup {
|
|
6696
|
+
acronym?: string;
|
|
6697
|
+
id: string;
|
|
6698
|
+
isDefaultGroup?: boolean;
|
|
6699
|
+
name: string;
|
|
6685
6700
|
}
|
|
6686
6701
|
interface CommonsAddress {
|
|
6687
6702
|
street: string;
|
|
@@ -9966,6 +9981,136 @@ export declare namespace MittwaldAPIV2 {
|
|
|
9966
9981
|
}
|
|
9967
9982
|
}
|
|
9968
9983
|
}
|
|
9984
|
+
namespace V2ProjectsProjectIdStacks {
|
|
9985
|
+
namespace Get {
|
|
9986
|
+
namespace Parameters {
|
|
9987
|
+
type Path = {
|
|
9988
|
+
projectId: string;
|
|
9989
|
+
};
|
|
9990
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9991
|
+
type Query = {
|
|
9992
|
+
limit?: number;
|
|
9993
|
+
skip?: number;
|
|
9994
|
+
page?: number;
|
|
9995
|
+
};
|
|
9996
|
+
}
|
|
9997
|
+
namespace Responses {
|
|
9998
|
+
namespace $200 {
|
|
9999
|
+
namespace Content {
|
|
10000
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerStackResponse[];
|
|
10001
|
+
}
|
|
10002
|
+
}
|
|
10003
|
+
namespace $400 {
|
|
10004
|
+
namespace Content {
|
|
10005
|
+
interface ApplicationJson {
|
|
10006
|
+
[k: string]: unknown;
|
|
10007
|
+
}
|
|
10008
|
+
}
|
|
10009
|
+
}
|
|
10010
|
+
namespace $403 {
|
|
10011
|
+
namespace Content {
|
|
10012
|
+
interface ApplicationJson {
|
|
10013
|
+
[k: string]: unknown;
|
|
10014
|
+
}
|
|
10015
|
+
}
|
|
10016
|
+
}
|
|
10017
|
+
namespace $429 {
|
|
10018
|
+
namespace Content {
|
|
10019
|
+
interface ApplicationJson {
|
|
10020
|
+
[k: string]: unknown;
|
|
10021
|
+
}
|
|
10022
|
+
}
|
|
10023
|
+
}
|
|
10024
|
+
namespace $500 {
|
|
10025
|
+
namespace Content {
|
|
10026
|
+
interface ApplicationJson {
|
|
10027
|
+
[k: string]: unknown;
|
|
10028
|
+
}
|
|
10029
|
+
}
|
|
10030
|
+
}
|
|
10031
|
+
namespace Default {
|
|
10032
|
+
namespace Content {
|
|
10033
|
+
interface ApplicationJson {
|
|
10034
|
+
[k: string]: unknown;
|
|
10035
|
+
}
|
|
10036
|
+
}
|
|
10037
|
+
}
|
|
10038
|
+
}
|
|
10039
|
+
}
|
|
10040
|
+
namespace Post {
|
|
10041
|
+
namespace Parameters {
|
|
10042
|
+
type Path = {
|
|
10043
|
+
projectId: string;
|
|
10044
|
+
};
|
|
10045
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.ContainerCreateStack;
|
|
10046
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
10047
|
+
type Query = {};
|
|
10048
|
+
}
|
|
10049
|
+
namespace Responses {
|
|
10050
|
+
namespace $201 {
|
|
10051
|
+
namespace Content {
|
|
10052
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerStackResponse;
|
|
10053
|
+
}
|
|
10054
|
+
}
|
|
10055
|
+
namespace $400 {
|
|
10056
|
+
namespace Content {
|
|
10057
|
+
interface ApplicationJson {
|
|
10058
|
+
[k: string]: unknown;
|
|
10059
|
+
}
|
|
10060
|
+
}
|
|
10061
|
+
}
|
|
10062
|
+
namespace $403 {
|
|
10063
|
+
namespace Content {
|
|
10064
|
+
interface ApplicationJson {
|
|
10065
|
+
[k: string]: unknown;
|
|
10066
|
+
}
|
|
10067
|
+
}
|
|
10068
|
+
}
|
|
10069
|
+
namespace $404 {
|
|
10070
|
+
namespace Content {
|
|
10071
|
+
interface ApplicationJson {
|
|
10072
|
+
[k: string]: unknown;
|
|
10073
|
+
}
|
|
10074
|
+
}
|
|
10075
|
+
}
|
|
10076
|
+
namespace $409 {
|
|
10077
|
+
namespace Content {
|
|
10078
|
+
interface ApplicationJson {
|
|
10079
|
+
[k: string]: unknown;
|
|
10080
|
+
}
|
|
10081
|
+
}
|
|
10082
|
+
}
|
|
10083
|
+
namespace $412 {
|
|
10084
|
+
namespace Content {
|
|
10085
|
+
interface ApplicationJson {
|
|
10086
|
+
[k: string]: unknown;
|
|
10087
|
+
}
|
|
10088
|
+
}
|
|
10089
|
+
}
|
|
10090
|
+
namespace $429 {
|
|
10091
|
+
namespace Content {
|
|
10092
|
+
interface ApplicationJson {
|
|
10093
|
+
[k: string]: unknown;
|
|
10094
|
+
}
|
|
10095
|
+
}
|
|
10096
|
+
}
|
|
10097
|
+
namespace $500 {
|
|
10098
|
+
namespace Content {
|
|
10099
|
+
interface ApplicationJson {
|
|
10100
|
+
[k: string]: unknown;
|
|
10101
|
+
}
|
|
10102
|
+
}
|
|
10103
|
+
}
|
|
10104
|
+
namespace Default {
|
|
10105
|
+
namespace Content {
|
|
10106
|
+
interface ApplicationJson {
|
|
10107
|
+
[k: string]: unknown;
|
|
10108
|
+
}
|
|
10109
|
+
}
|
|
10110
|
+
}
|
|
10111
|
+
}
|
|
10112
|
+
}
|
|
10113
|
+
}
|
|
9969
10114
|
namespace V2StacksStackId {
|
|
9970
10115
|
namespace Get {
|
|
9971
10116
|
namespace Parameters {
|
|
@@ -10102,12 +10247,71 @@ export declare namespace MittwaldAPIV2 {
|
|
|
10102
10247
|
}
|
|
10103
10248
|
}
|
|
10104
10249
|
}
|
|
10250
|
+
namespace Delete {
|
|
10251
|
+
namespace Parameters {
|
|
10252
|
+
type Path = {
|
|
10253
|
+
stackId: string;
|
|
10254
|
+
};
|
|
10255
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
10256
|
+
type Query = {};
|
|
10257
|
+
}
|
|
10258
|
+
namespace Responses {
|
|
10259
|
+
namespace $204 {
|
|
10260
|
+
namespace Content {
|
|
10261
|
+
type Empty = unknown;
|
|
10262
|
+
}
|
|
10263
|
+
}
|
|
10264
|
+
namespace $400 {
|
|
10265
|
+
namespace Content {
|
|
10266
|
+
interface ApplicationJson {
|
|
10267
|
+
[k: string]: unknown;
|
|
10268
|
+
}
|
|
10269
|
+
}
|
|
10270
|
+
}
|
|
10271
|
+
namespace $403 {
|
|
10272
|
+
namespace Content {
|
|
10273
|
+
interface ApplicationJson {
|
|
10274
|
+
[k: string]: unknown;
|
|
10275
|
+
}
|
|
10276
|
+
}
|
|
10277
|
+
}
|
|
10278
|
+
namespace $404 {
|
|
10279
|
+
namespace Content {
|
|
10280
|
+
interface ApplicationJson {
|
|
10281
|
+
[k: string]: unknown;
|
|
10282
|
+
}
|
|
10283
|
+
}
|
|
10284
|
+
}
|
|
10285
|
+
namespace $429 {
|
|
10286
|
+
namespace Content {
|
|
10287
|
+
interface ApplicationJson {
|
|
10288
|
+
[k: string]: unknown;
|
|
10289
|
+
}
|
|
10290
|
+
}
|
|
10291
|
+
}
|
|
10292
|
+
namespace $500 {
|
|
10293
|
+
namespace Content {
|
|
10294
|
+
interface ApplicationJson {
|
|
10295
|
+
[k: string]: unknown;
|
|
10296
|
+
}
|
|
10297
|
+
}
|
|
10298
|
+
}
|
|
10299
|
+
namespace Default {
|
|
10300
|
+
namespace Content {
|
|
10301
|
+
interface ApplicationJson {
|
|
10302
|
+
[k: string]: unknown;
|
|
10303
|
+
}
|
|
10304
|
+
}
|
|
10305
|
+
}
|
|
10306
|
+
}
|
|
10307
|
+
}
|
|
10105
10308
|
namespace Patch {
|
|
10106
10309
|
namespace Parameters {
|
|
10107
10310
|
type Path = {
|
|
10108
10311
|
stackId: string;
|
|
10109
10312
|
};
|
|
10110
10313
|
interface RequestBody {
|
|
10314
|
+
description?: string;
|
|
10111
10315
|
/**
|
|
10112
10316
|
* A set of containers that should be started in this stack. The key is relevant for
|
|
10113
10317
|
* network connectivity between containers, because you can use it as DNS name to
|
|
@@ -10878,63 +11082,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
10878
11082
|
}
|
|
10879
11083
|
}
|
|
10880
11084
|
}
|
|
10881
|
-
namespace V2ProjectsProjectIdStacks {
|
|
10882
|
-
namespace Get {
|
|
10883
|
-
namespace Parameters {
|
|
10884
|
-
type Path = {
|
|
10885
|
-
projectId: string;
|
|
10886
|
-
};
|
|
10887
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
10888
|
-
type Query = {
|
|
10889
|
-
limit?: number;
|
|
10890
|
-
skip?: number;
|
|
10891
|
-
page?: number;
|
|
10892
|
-
};
|
|
10893
|
-
}
|
|
10894
|
-
namespace Responses {
|
|
10895
|
-
namespace $200 {
|
|
10896
|
-
namespace Content {
|
|
10897
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerStackResponse[];
|
|
10898
|
-
}
|
|
10899
|
-
}
|
|
10900
|
-
namespace $400 {
|
|
10901
|
-
namespace Content {
|
|
10902
|
-
interface ApplicationJson {
|
|
10903
|
-
[k: string]: unknown;
|
|
10904
|
-
}
|
|
10905
|
-
}
|
|
10906
|
-
}
|
|
10907
|
-
namespace $403 {
|
|
10908
|
-
namespace Content {
|
|
10909
|
-
interface ApplicationJson {
|
|
10910
|
-
[k: string]: unknown;
|
|
10911
|
-
}
|
|
10912
|
-
}
|
|
10913
|
-
}
|
|
10914
|
-
namespace $429 {
|
|
10915
|
-
namespace Content {
|
|
10916
|
-
interface ApplicationJson {
|
|
10917
|
-
[k: string]: unknown;
|
|
10918
|
-
}
|
|
10919
|
-
}
|
|
10920
|
-
}
|
|
10921
|
-
namespace $500 {
|
|
10922
|
-
namespace Content {
|
|
10923
|
-
interface ApplicationJson {
|
|
10924
|
-
[k: string]: unknown;
|
|
10925
|
-
}
|
|
10926
|
-
}
|
|
10927
|
-
}
|
|
10928
|
-
namespace Default {
|
|
10929
|
-
namespace Content {
|
|
10930
|
-
interface ApplicationJson {
|
|
10931
|
-
[k: string]: unknown;
|
|
10932
|
-
}
|
|
10933
|
-
}
|
|
10934
|
-
}
|
|
10935
|
-
}
|
|
10936
|
-
}
|
|
10937
|
-
}
|
|
10938
11085
|
namespace V2ProjectsProjectIdVolumes {
|
|
10939
11086
|
namespace Get {
|
|
10940
11087
|
namespace Parameters {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.391.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.392.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.392.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.392.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": "78c4fea940d347953e19325ca0de066dff17b67d"
|
|
84
84
|
}
|