@mittwald/api-client 4.386.0 → 4.388.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.387.0';
|
|
@@ -1732,6 +1732,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1732
1732
|
cronjobId: string;
|
|
1733
1733
|
headers?: {
|
|
1734
1734
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1735
|
+
"Accept-Language"?: "de" | "en" | undefined;
|
|
1735
1736
|
"x-access-token"?: string | undefined;
|
|
1736
1737
|
} | undefined;
|
|
1737
1738
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
@@ -13808,6 +13808,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13808
13808
|
cronjobId: string;
|
|
13809
13809
|
headers?: {
|
|
13810
13810
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
13811
|
+
"Accept-Language"?: "de" | "en" | undefined;
|
|
13811
13812
|
"x-access-token"?: string | undefined;
|
|
13812
13813
|
} | undefined;
|
|
13813
13814
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
@@ -13821,6 +13822,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13821
13822
|
};
|
|
13822
13823
|
} & {
|
|
13823
13824
|
headers: {
|
|
13825
|
+
"Accept-Language"?: "de" | "en" | undefined;
|
|
13824
13826
|
"x-access-token"?: string | undefined;
|
|
13825
13827
|
} & Partial<{
|
|
13826
13828
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -13850,6 +13852,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13850
13852
|
};
|
|
13851
13853
|
} & {
|
|
13852
13854
|
headers: {
|
|
13855
|
+
"Accept-Language"?: "de" | "en" | undefined;
|
|
13853
13856
|
"x-access-token"?: string | undefined;
|
|
13854
13857
|
} & Partial<{
|
|
13855
13858
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -5582,19 +5582,49 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5582
5582
|
machineType: string;
|
|
5583
5583
|
}
|
|
5584
5584
|
interface ArticleArticleAddons {
|
|
5585
|
+
/**
|
|
5586
|
+
* Defines if the Addon should not be shown.
|
|
5587
|
+
*/
|
|
5585
5588
|
hidden?: boolean;
|
|
5589
|
+
/**
|
|
5590
|
+
* Unique key of the Addon.
|
|
5591
|
+
*/
|
|
5586
5592
|
key: string;
|
|
5593
|
+
/**
|
|
5594
|
+
* The type/category of the addon.
|
|
5595
|
+
*/
|
|
5587
5596
|
type?: string;
|
|
5597
|
+
/**
|
|
5598
|
+
* Value of the Addon, e.g. configuration details, status, or modifier properties.
|
|
5599
|
+
*/
|
|
5588
5600
|
value: string;
|
|
5601
|
+
/**
|
|
5602
|
+
* Used if Articles are ordered as a batch.
|
|
5603
|
+
*/
|
|
5589
5604
|
valueMergeType?: "add" | "set";
|
|
5590
5605
|
}
|
|
5591
5606
|
interface ArticleArticleAttributes {
|
|
5607
|
+
/**
|
|
5608
|
+
* Used if there are custom configurations needed for an Order like a Server name.
|
|
5609
|
+
*/
|
|
5592
5610
|
customerEditable?: boolean;
|
|
5593
5611
|
key: string;
|
|
5612
|
+
/**
|
|
5613
|
+
* Used if Articles are ordered as a batch.
|
|
5614
|
+
*/
|
|
5594
5615
|
mergeType?: "add" | "set";
|
|
5616
|
+
/**
|
|
5617
|
+
* Used if not need for an Order.
|
|
5618
|
+
*/
|
|
5595
5619
|
readonly?: boolean;
|
|
5596
5620
|
required?: boolean;
|
|
5621
|
+
/**
|
|
5622
|
+
* Used if Articles are ordered as a batch.
|
|
5623
|
+
*/
|
|
5597
5624
|
unit?: string;
|
|
5625
|
+
/**
|
|
5626
|
+
* Will be ignored if customerEditable is set.
|
|
5627
|
+
*/
|
|
5598
5628
|
value?: string;
|
|
5599
5629
|
}
|
|
5600
5630
|
interface ArticleReadableBookableArticleOptions {
|
|
@@ -5645,14 +5675,32 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5645
5675
|
addons?: MittwaldAPIV2.Components.Schemas.ArticleArticleAddons[];
|
|
5646
5676
|
articleId: string;
|
|
5647
5677
|
attributes?: MittwaldAPIV2.Components.Schemas.ArticleArticleAttributes[];
|
|
5678
|
+
/**
|
|
5679
|
+
* @deprecated
|
|
5680
|
+
*/
|
|
5648
5681
|
balanceAddonKey?: string;
|
|
5649
5682
|
contractDurationInMonth: number;
|
|
5650
5683
|
description?: string;
|
|
5684
|
+
/**
|
|
5685
|
+
* If set, the Article will always be invoiced for the given months.
|
|
5686
|
+
*/
|
|
5651
5687
|
forcedInvoicingPeriodInMonth?: number;
|
|
5688
|
+
/**
|
|
5689
|
+
* Article has a contract period which is not dependent on the Contract Base Item.
|
|
5690
|
+
*/
|
|
5652
5691
|
hasIndependentContractPeriod?: boolean;
|
|
5692
|
+
/**
|
|
5693
|
+
* Free Article that is not showing on Invoices.
|
|
5694
|
+
*/
|
|
5653
5695
|
hideOnInvoice?: boolean;
|
|
5696
|
+
/**
|
|
5697
|
+
* Resources for hosting Articles.
|
|
5698
|
+
*/
|
|
5654
5699
|
machineType?: {
|
|
5655
5700
|
cpu: string;
|
|
5701
|
+
/**
|
|
5702
|
+
* Memory in GiB
|
|
5703
|
+
*/
|
|
5656
5704
|
memory: string;
|
|
5657
5705
|
name: string;
|
|
5658
5706
|
};
|
|
@@ -5663,6 +5711,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5663
5711
|
*/
|
|
5664
5712
|
orderable: "full" | "forbidden" | "internal" | "beta_testing" | "deprecated";
|
|
5665
5713
|
possibleArticleChanges?: MittwaldAPIV2.Components.Schemas.ArticleReadableChangeArticleOptions[];
|
|
5714
|
+
/**
|
|
5715
|
+
* Monthly price in Eurocent
|
|
5716
|
+
*/
|
|
5666
5717
|
price?: number;
|
|
5667
5718
|
tags?: MittwaldAPIV2.Components.Schemas.ArticleArticleTag[];
|
|
5668
5719
|
template: MittwaldAPIV2.Components.Schemas.ArticleArticleTemplate;
|
|
@@ -6286,19 +6337,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6286
6337
|
}
|
|
6287
6338
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6288
6339
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
6289
|
-
interface
|
|
6290
|
-
|
|
6291
|
-
|
|
6292
|
-
name: string;
|
|
6293
|
-
};
|
|
6294
|
-
before?: {
|
|
6295
|
-
name: string | null;
|
|
6296
|
-
};
|
|
6297
|
-
};
|
|
6298
|
-
name: "database.mysql-name-set";
|
|
6299
|
-
parameters: {
|
|
6300
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6301
|
-
};
|
|
6340
|
+
interface ActivitylogParameterProperty {
|
|
6341
|
+
aggregate?: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6342
|
+
name: string;
|
|
6302
6343
|
}
|
|
6303
6344
|
interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
|
|
6304
6345
|
changes: {
|
|
@@ -6319,71 +6360,45 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6319
6360
|
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6320
6361
|
};
|
|
6321
6362
|
}
|
|
6322
|
-
interface
|
|
6363
|
+
interface ActivitylogAppInstallationCopyRequested {
|
|
6323
6364
|
changes: {
|
|
6324
6365
|
after?: {
|
|
6325
6366
|
appId: string;
|
|
6326
|
-
|
|
6367
|
+
sourceAppInstallationId: string;
|
|
6327
6368
|
};
|
|
6328
6369
|
before?: {
|
|
6329
6370
|
appId?: string | null;
|
|
6330
|
-
|
|
6371
|
+
sourceAppInstallationId?: string | null;
|
|
6331
6372
|
};
|
|
6332
6373
|
};
|
|
6333
|
-
name: "app.
|
|
6374
|
+
name: "app.copy-requested";
|
|
6334
6375
|
}
|
|
6335
|
-
interface
|
|
6376
|
+
interface ActivitylogDnsCnameRecordSet {
|
|
6336
6377
|
changes: {
|
|
6337
6378
|
after?: {
|
|
6338
|
-
|
|
6339
|
-
sourceAppInstallationId: string;
|
|
6379
|
+
cname: string;
|
|
6340
6380
|
};
|
|
6341
6381
|
before?: {
|
|
6342
|
-
|
|
6343
|
-
sourceAppInstallationId?: string | null;
|
|
6382
|
+
cname: string;
|
|
6344
6383
|
};
|
|
6345
6384
|
};
|
|
6346
|
-
name: "
|
|
6347
|
-
|
|
6348
|
-
|
|
6349
|
-
aggregate?: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6350
|
-
name: string;
|
|
6351
|
-
}
|
|
6352
|
-
interface ActivitylogAggregateReference {
|
|
6353
|
-
aggregate: string;
|
|
6354
|
-
domain: string;
|
|
6355
|
-
id: string;
|
|
6356
|
-
}
|
|
6357
|
-
interface ActivitylogLinkedParameterProperty {
|
|
6358
|
-
aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6359
|
-
name: string;
|
|
6360
|
-
}
|
|
6361
|
-
interface ActivitylogLogEntry {
|
|
6362
|
-
action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlNameSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
|
|
6363
|
-
aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6364
|
-
dateTime: string;
|
|
6365
|
-
/**
|
|
6366
|
-
* Null or empty object. If set, the action was executed by an mittwald employee.
|
|
6367
|
-
*/
|
|
6368
|
-
impersonator?: {};
|
|
6369
|
-
user?: {
|
|
6370
|
-
id: string;
|
|
6371
|
-
type: "user" | "extension";
|
|
6385
|
+
name: "dns.cname-record-set";
|
|
6386
|
+
parameters: {
|
|
6387
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6372
6388
|
};
|
|
6373
6389
|
}
|
|
6374
|
-
interface
|
|
6390
|
+
interface ActivitylogAppInstallationAppVersionSet {
|
|
6375
6391
|
changes: {
|
|
6376
6392
|
after?: {
|
|
6377
|
-
|
|
6393
|
+
appId: string;
|
|
6394
|
+
appVersionId: string;
|
|
6378
6395
|
};
|
|
6379
6396
|
before?: {
|
|
6380
|
-
|
|
6397
|
+
appId?: string | null;
|
|
6398
|
+
appVersionId?: string | null;
|
|
6381
6399
|
};
|
|
6382
6400
|
};
|
|
6383
|
-
name: "
|
|
6384
|
-
parameters: {
|
|
6385
|
-
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6386
|
-
};
|
|
6401
|
+
name: "app.version-set";
|
|
6387
6402
|
}
|
|
6388
6403
|
interface ActivitylogDnsZoneDeleted {
|
|
6389
6404
|
changes: {};
|
|
@@ -6392,54 +6407,38 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6392
6407
|
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6393
6408
|
};
|
|
6394
6409
|
}
|
|
6395
|
-
interface
|
|
6410
|
+
interface ActivitylogDatabaseVersionSet {
|
|
6396
6411
|
changes: {
|
|
6397
6412
|
after?: {
|
|
6398
|
-
|
|
6413
|
+
version: string;
|
|
6399
6414
|
};
|
|
6400
6415
|
before?: {
|
|
6401
|
-
|
|
6416
|
+
version: string;
|
|
6402
6417
|
};
|
|
6403
6418
|
};
|
|
6404
|
-
name: "
|
|
6419
|
+
name: "database.mysql-version-set" | "database.redis-version-set";
|
|
6405
6420
|
parameters: {
|
|
6406
|
-
|
|
6421
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6422
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6407
6423
|
};
|
|
6408
6424
|
}
|
|
6409
|
-
interface
|
|
6425
|
+
interface ActivitylogDatabaseDescriptionSet {
|
|
6410
6426
|
changes: {
|
|
6411
6427
|
after?: {
|
|
6412
|
-
|
|
6413
|
-
aaaaRecords: string[];
|
|
6428
|
+
description: string;
|
|
6414
6429
|
};
|
|
6415
6430
|
before?: {
|
|
6416
|
-
|
|
6417
|
-
aaaaRecords: string[];
|
|
6431
|
+
description: string | null;
|
|
6418
6432
|
};
|
|
6419
6433
|
};
|
|
6420
|
-
name: "
|
|
6434
|
+
name: "database.mysql-description-set" | "database.redis-description-set";
|
|
6421
6435
|
parameters: {
|
|
6422
|
-
|
|
6436
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6423
6437
|
};
|
|
6424
6438
|
}
|
|
6425
|
-
|
|
6426
|
-
|
|
6427
|
-
*/
|
|
6428
|
-
interface ActivitylogGenericAction {
|
|
6429
|
-
changes: {
|
|
6430
|
-
[k: string]: {
|
|
6431
|
-
after?: {
|
|
6432
|
-
[k: string]: unknown;
|
|
6433
|
-
};
|
|
6434
|
-
before?: {
|
|
6435
|
-
[k: string]: unknown;
|
|
6436
|
-
};
|
|
6437
|
-
};
|
|
6438
|
-
};
|
|
6439
|
+
interface ActivitylogLinkedParameterProperty {
|
|
6440
|
+
aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6439
6441
|
name: string;
|
|
6440
|
-
parameters: {
|
|
6441
|
-
[k: string]: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6442
|
-
};
|
|
6443
6442
|
}
|
|
6444
6443
|
interface ActivitylogDatabaseDeleted {
|
|
6445
6444
|
changes: {};
|
|
@@ -6448,101 +6447,150 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6448
6447
|
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6449
6448
|
};
|
|
6450
6449
|
}
|
|
6451
|
-
interface
|
|
6450
|
+
interface ActivitylogDatabaseCreated {
|
|
6452
6451
|
changes: {
|
|
6453
6452
|
after?: {
|
|
6454
6453
|
description: string;
|
|
6454
|
+
name: string;
|
|
6455
|
+
version: string;
|
|
6455
6456
|
};
|
|
6456
6457
|
before?: {
|
|
6457
|
-
description
|
|
6458
|
+
description?: string | null;
|
|
6459
|
+
name?: string | null;
|
|
6460
|
+
version?: string | null;
|
|
6458
6461
|
};
|
|
6459
6462
|
};
|
|
6460
|
-
name: "database.mysql-
|
|
6463
|
+
name: "database.mysql-created" | "database.redis-created";
|
|
6461
6464
|
parameters: {
|
|
6462
6465
|
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6466
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6463
6467
|
};
|
|
6464
6468
|
}
|
|
6465
|
-
interface
|
|
6469
|
+
interface ActivitylogDatabaseMysqlUserCreated {
|
|
6466
6470
|
changes: {
|
|
6467
6471
|
after?: {
|
|
6468
|
-
|
|
6472
|
+
description: string;
|
|
6473
|
+
externalAccess: boolean;
|
|
6474
|
+
name: string;
|
|
6475
|
+
permissions: {};
|
|
6469
6476
|
};
|
|
6470
6477
|
before?: {
|
|
6471
|
-
|
|
6478
|
+
description?: string | null;
|
|
6479
|
+
externalAccess?: boolean | null;
|
|
6480
|
+
name?: string | null;
|
|
6481
|
+
permissions?: {} | null;
|
|
6472
6482
|
};
|
|
6473
6483
|
};
|
|
6474
|
-
name: "
|
|
6484
|
+
name: "database.mysql-user-created";
|
|
6485
|
+
parameters: {
|
|
6486
|
+
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6487
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6488
|
+
};
|
|
6489
|
+
}
|
|
6490
|
+
interface ActivitylogAggregateReference {
|
|
6491
|
+
aggregate: string;
|
|
6492
|
+
domain: string;
|
|
6493
|
+
id: string;
|
|
6494
|
+
}
|
|
6495
|
+
interface ActivitylogDnsTxtRecordSet {
|
|
6496
|
+
changes: {
|
|
6497
|
+
after?: {
|
|
6498
|
+
txt: string[];
|
|
6499
|
+
};
|
|
6500
|
+
before?: {
|
|
6501
|
+
txt: string[];
|
|
6502
|
+
};
|
|
6503
|
+
};
|
|
6504
|
+
name: "dns.txt-record-set";
|
|
6475
6505
|
parameters: {
|
|
6476
6506
|
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6477
6507
|
};
|
|
6478
6508
|
}
|
|
6479
|
-
interface
|
|
6509
|
+
interface ActivitylogDnsZoneCreated {
|
|
6480
6510
|
changes: {
|
|
6481
6511
|
after?: {
|
|
6482
|
-
|
|
6483
|
-
externalAccess: boolean;
|
|
6484
|
-
permissions: {};
|
|
6512
|
+
domain: string;
|
|
6485
6513
|
};
|
|
6486
6514
|
before?: {
|
|
6487
|
-
|
|
6488
|
-
externalAccess: boolean | null;
|
|
6489
|
-
permissions: {};
|
|
6515
|
+
domain: string | null;
|
|
6490
6516
|
};
|
|
6491
6517
|
};
|
|
6492
|
-
name: "
|
|
6518
|
+
name: "dns.zone-created";
|
|
6493
6519
|
parameters: {
|
|
6494
|
-
|
|
6495
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6520
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6496
6521
|
};
|
|
6497
6522
|
}
|
|
6498
|
-
interface
|
|
6523
|
+
interface ActivitylogDnsMxRecordSet {
|
|
6499
6524
|
changes: {
|
|
6500
6525
|
after?: {
|
|
6501
|
-
|
|
6526
|
+
mx: {}[];
|
|
6502
6527
|
};
|
|
6503
6528
|
before?: {
|
|
6504
|
-
|
|
6529
|
+
mx: {}[];
|
|
6505
6530
|
};
|
|
6506
6531
|
};
|
|
6507
|
-
name: "
|
|
6532
|
+
name: "dns.mx-record-set";
|
|
6508
6533
|
parameters: {
|
|
6509
|
-
|
|
6510
|
-
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6534
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6511
6535
|
};
|
|
6512
6536
|
}
|
|
6513
|
-
interface
|
|
6537
|
+
interface ActivitylogDnsARecordSet {
|
|
6538
|
+
changes: {
|
|
6539
|
+
after?: {
|
|
6540
|
+
aRecords: string[];
|
|
6541
|
+
aaaaRecords: string[];
|
|
6542
|
+
};
|
|
6543
|
+
before?: {
|
|
6544
|
+
aRecords: string[];
|
|
6545
|
+
aaaaRecords: string[];
|
|
6546
|
+
};
|
|
6547
|
+
};
|
|
6548
|
+
name: "dns.a-record-set";
|
|
6549
|
+
parameters: {
|
|
6550
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6551
|
+
};
|
|
6552
|
+
}
|
|
6553
|
+
interface ActivitylogDatabaseMysqlNameSet {
|
|
6514
6554
|
changes: {
|
|
6515
6555
|
after?: {
|
|
6516
|
-
description: string;
|
|
6517
6556
|
name: string;
|
|
6518
|
-
version: string;
|
|
6519
6557
|
};
|
|
6520
6558
|
before?: {
|
|
6521
|
-
|
|
6522
|
-
name?: string | null;
|
|
6523
|
-
version?: string | null;
|
|
6559
|
+
name: string | null;
|
|
6524
6560
|
};
|
|
6525
6561
|
};
|
|
6526
|
-
name: "database.mysql-
|
|
6562
|
+
name: "database.mysql-name-set";
|
|
6527
6563
|
parameters: {
|
|
6528
|
-
name: MittwaldAPIV2.Components.Schemas.
|
|
6529
|
-
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6564
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6530
6565
|
};
|
|
6531
6566
|
}
|
|
6532
|
-
interface
|
|
6567
|
+
interface ActivitylogDnsSrvRecordSet {
|
|
6533
6568
|
changes: {
|
|
6534
6569
|
after?: {
|
|
6535
|
-
|
|
6570
|
+
srv: {}[];
|
|
6536
6571
|
};
|
|
6537
6572
|
before?: {
|
|
6538
|
-
|
|
6573
|
+
srv: {}[];
|
|
6539
6574
|
};
|
|
6540
6575
|
};
|
|
6541
|
-
name: "dns.
|
|
6576
|
+
name: "dns.srv-record-set";
|
|
6542
6577
|
parameters: {
|
|
6543
6578
|
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6544
6579
|
};
|
|
6545
6580
|
}
|
|
6581
|
+
interface ActivitylogLogEntry {
|
|
6582
|
+
action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlNameSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
|
|
6583
|
+
aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6584
|
+
dateTime: string;
|
|
6585
|
+
/**
|
|
6586
|
+
* Null or empty object. If set, the action was executed by an mittwald employee.
|
|
6587
|
+
*/
|
|
6588
|
+
impersonator?: {};
|
|
6589
|
+
user?: {
|
|
6590
|
+
id: string;
|
|
6591
|
+
type: "user" | "extension";
|
|
6592
|
+
};
|
|
6593
|
+
}
|
|
6546
6594
|
interface ActivitylogDatabaseMysqlUserDeleted {
|
|
6547
6595
|
changes: {};
|
|
6548
6596
|
name: "database.mysql-user-deleted";
|
|
@@ -6551,53 +6599,56 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6551
6599
|
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6552
6600
|
};
|
|
6553
6601
|
}
|
|
6554
|
-
interface
|
|
6602
|
+
interface ActivitylogDnsCaaRecordSet {
|
|
6555
6603
|
changes: {
|
|
6556
6604
|
after?: {
|
|
6557
|
-
|
|
6605
|
+
caa: {}[];
|
|
6558
6606
|
};
|
|
6559
6607
|
before?: {
|
|
6560
|
-
|
|
6608
|
+
caa: {}[];
|
|
6561
6609
|
};
|
|
6562
6610
|
};
|
|
6563
|
-
name: "dns.
|
|
6611
|
+
name: "dns.caa-record-set";
|
|
6564
6612
|
parameters: {
|
|
6565
6613
|
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6566
6614
|
};
|
|
6567
6615
|
}
|
|
6568
|
-
|
|
6616
|
+
/**
|
|
6617
|
+
* Fallback when no matching action is found
|
|
6618
|
+
*/
|
|
6619
|
+
interface ActivitylogGenericAction {
|
|
6569
6620
|
changes: {
|
|
6570
|
-
|
|
6571
|
-
|
|
6572
|
-
|
|
6573
|
-
|
|
6574
|
-
|
|
6575
|
-
|
|
6576
|
-
|
|
6577
|
-
description?: string | null;
|
|
6578
|
-
externalAccess?: boolean | null;
|
|
6579
|
-
name?: string | null;
|
|
6580
|
-
permissions?: {} | null;
|
|
6621
|
+
[k: string]: {
|
|
6622
|
+
after?: {
|
|
6623
|
+
[k: string]: unknown;
|
|
6624
|
+
};
|
|
6625
|
+
before?: {
|
|
6626
|
+
[k: string]: unknown;
|
|
6627
|
+
};
|
|
6581
6628
|
};
|
|
6582
6629
|
};
|
|
6583
|
-
name:
|
|
6630
|
+
name: string;
|
|
6584
6631
|
parameters: {
|
|
6585
|
-
|
|
6586
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6632
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6587
6633
|
};
|
|
6588
6634
|
}
|
|
6589
|
-
interface
|
|
6635
|
+
interface ActivitylogDatabaseMysqlUserUpdated {
|
|
6590
6636
|
changes: {
|
|
6591
6637
|
after?: {
|
|
6592
|
-
|
|
6638
|
+
description: string;
|
|
6639
|
+
externalAccess: boolean;
|
|
6640
|
+
permissions: {};
|
|
6593
6641
|
};
|
|
6594
6642
|
before?: {
|
|
6595
|
-
|
|
6643
|
+
description: string | null;
|
|
6644
|
+
externalAccess: boolean | null;
|
|
6645
|
+
permissions: {};
|
|
6596
6646
|
};
|
|
6597
6647
|
};
|
|
6598
|
-
name: "
|
|
6648
|
+
name: "database.mysql-user-updated";
|
|
6599
6649
|
parameters: {
|
|
6600
|
-
|
|
6650
|
+
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6651
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6601
6652
|
};
|
|
6602
6653
|
}
|
|
6603
6654
|
interface CommonsAddress {
|
|
@@ -14111,7 +14162,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
14111
14162
|
executionId: string;
|
|
14112
14163
|
cronjobId: string;
|
|
14113
14164
|
};
|
|
14114
|
-
type Header = {
|
|
14165
|
+
type Header = {
|
|
14166
|
+
"Accept-Language"?: "de" | "en";
|
|
14167
|
+
} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
14115
14168
|
type Query = {};
|
|
14116
14169
|
}
|
|
14117
14170
|
namespace Responses {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.387.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.388.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.388.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.388.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": "9f64296c495062fd1440d499b7cbde2e7972d721"
|
|
84
84
|
}
|