@mittwald/api-client 4.442.0 → 4.443.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.
@@ -298,6 +298,10 @@ export declare namespace MittwaldAPIV2 {
298
298
  type RequestData = InferredRequestData<typeof descriptors.containerGetTemplate>;
299
299
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplate, TStatus>;
300
300
  }
301
+ namespace ContainerListAccessibleServices {
302
+ type RequestData = InferredRequestData<typeof descriptors.containerListAccessibleServices>;
303
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListAccessibleServices, TStatus>;
304
+ }
301
305
  namespace ContainerListSelfStacks {
302
306
  type RequestData = InferredRequestData<typeof descriptors.containerListSelfStacks>;
303
307
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListSelfStacks, TStatus>;
@@ -1866,10 +1870,6 @@ export declare namespace MittwaldAPIV2 {
1866
1870
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1867
1871
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1868
1872
  }
1869
- namespace ContainerListAccessibleServices {
1870
- type RequestData = InferredRequestData<typeof descriptors.containerListAccessibleServices>;
1871
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListAccessibleServices, TStatus>;
1872
- }
1873
1873
  }
1874
1874
  namespace Components {
1875
1875
  namespace Schemas {
@@ -4314,6 +4314,7 @@ export declare namespace MittwaldAPIV2 {
4314
4314
  nextScheduledWebhookExecution?: string;
4315
4315
  pendingInstallation: boolean;
4316
4316
  pendingRemoval: boolean;
4317
+ scopeChangeAcceptanceDeadline?: string;
4317
4318
  variantKey?: string;
4318
4319
  webhookExecutionHalted: boolean;
4319
4320
  }
@@ -5986,11 +5987,9 @@ export declare namespace MittwaldAPIV2 {
5986
5987
  changes: {
5987
5988
  after: {
5988
5989
  name: string;
5989
- purpose: "unspecified" | "primary" | "cache" | "custom";
5990
5990
  };
5991
5991
  before: {
5992
5992
  name: string | null;
5993
- purpose: string | null;
5994
5993
  };
5995
5994
  };
5996
5995
  name: "app.database-linked";
@@ -6003,11 +6002,9 @@ export declare namespace MittwaldAPIV2 {
6003
6002
  changes: {
6004
6003
  after: {
6005
6004
  name: string | null;
6006
- purpose: string | null;
6007
6005
  };
6008
6006
  before: {
6009
6007
  name: string;
6010
- purpose: "unspecified" | "primary" | "cache" | "custom";
6011
6008
  };
6012
6009
  };
6013
6010
  name: "app.database-unlinked";
@@ -6045,6 +6042,21 @@ export declare namespace MittwaldAPIV2 {
6045
6042
  error?: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6046
6043
  };
6047
6044
  }
6045
+ interface ActivitylogAppInstallationMainDatabaseChanged {
6046
+ changes: {
6047
+ after: {
6048
+ name: string | null;
6049
+ };
6050
+ before: {
6051
+ name: string | null;
6052
+ };
6053
+ };
6054
+ name: "app.main-database-changed";
6055
+ parameters: {
6056
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6057
+ database: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6058
+ };
6059
+ }
6048
6060
  interface ActivitylogAppInstallationCopyRequested {
6049
6061
  name: "app.copy-requested";
6050
6062
  parameters: {
@@ -6223,7 +6235,7 @@ export declare namespace MittwaldAPIV2 {
6223
6235
  version: string | null;
6224
6236
  };
6225
6237
  };
6226
- name: "database.mysql-version-set";
6238
+ name: "database.mysql-version-set" | "database.redis-version-set";
6227
6239
  parameters: {
6228
6240
  description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6229
6241
  name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
@@ -6234,9 +6246,11 @@ export declare namespace MittwaldAPIV2 {
6234
6246
  changes: {
6235
6247
  after?: {
6236
6248
  aRecords: "managed";
6249
+ ttl?: (number | "auto") | null;
6237
6250
  };
6238
6251
  before?: {
6239
6252
  aRecords: string[] | null;
6253
+ ttl?: (number | "auto") | null;
6240
6254
  };
6241
6255
  };
6242
6256
  name: "dns.a-record-set-managed";
@@ -6312,9 +6326,11 @@ export declare namespace MittwaldAPIV2 {
6312
6326
  changes: {
6313
6327
  after?: {
6314
6328
  mx: "managed";
6329
+ ttl?: (number | "auto") | null;
6315
6330
  };
6316
6331
  before?: {
6317
6332
  mx: {}[] | null;
6333
+ ttl?: (number | "auto") | null;
6318
6334
  };
6319
6335
  };
6320
6336
  name: "dns.mx-record-set-managed";
@@ -6466,7 +6482,7 @@ export declare namespace MittwaldAPIV2 {
6466
6482
  name: string;
6467
6483
  }
6468
6484
  interface ActivitylogLogEntry {
6469
- action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsDomainDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsIngressDeleted | 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.ActivitylogDnsARecordSetManaged | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSetManaged | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserPasswordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationFailed | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDatabaseLinked | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDatabaseUnlinked | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
6485
+ action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsDomainDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsIngressDeleted | 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.ActivitylogDnsARecordSetManaged | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSetManaged | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserPasswordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationFailed | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDatabaseLinked | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDatabaseUnlinked | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationMainDatabaseChanged | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
6470
6486
  aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
6471
6487
  dateTime: string;
6472
6488
  /**
@@ -6870,11 +6886,6 @@ export declare namespace MittwaldAPIV2 {
6870
6886
  notificationThresholdInBytes?: number;
6871
6887
  statisticCategories?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[];
6872
6888
  }
6873
- interface TaskAggregateReference {
6874
- aggregate: string;
6875
- domain: string;
6876
- id: string;
6877
- }
6878
6889
  interface SignupAccount {
6879
6890
  email?: string;
6880
6891
  /**
@@ -11301,6 +11312,63 @@ export declare namespace MittwaldAPIV2 {
11301
11312
  }
11302
11313
  }
11303
11314
  }
11315
+ namespace V2Services {
11316
+ namespace Get {
11317
+ namespace Parameters {
11318
+ type Path = {};
11319
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
11320
+ type Query = {
11321
+ searchTerm?: string;
11322
+ sortOrder?: MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder;
11323
+ limit?: number;
11324
+ skip?: number;
11325
+ page?: number;
11326
+ };
11327
+ }
11328
+ namespace Responses {
11329
+ namespace $200 {
11330
+ namespace Content {
11331
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[];
11332
+ }
11333
+ }
11334
+ namespace $400 {
11335
+ namespace Content {
11336
+ interface ApplicationJson {
11337
+ [k: string]: unknown;
11338
+ }
11339
+ }
11340
+ }
11341
+ namespace $403 {
11342
+ namespace Content {
11343
+ interface ApplicationJson {
11344
+ [k: string]: unknown;
11345
+ }
11346
+ }
11347
+ }
11348
+ namespace $429 {
11349
+ namespace Content {
11350
+ interface ApplicationJson {
11351
+ [k: string]: unknown;
11352
+ }
11353
+ }
11354
+ }
11355
+ namespace $500 {
11356
+ namespace Content {
11357
+ interface ApplicationJson {
11358
+ [k: string]: unknown;
11359
+ }
11360
+ }
11361
+ }
11362
+ namespace Default {
11363
+ namespace Content {
11364
+ interface ApplicationJson {
11365
+ [k: string]: unknown;
11366
+ }
11367
+ }
11368
+ }
11369
+ }
11370
+ }
11371
+ }
11304
11372
  namespace V2Stacks {
11305
11373
  namespace Get {
11306
11374
  namespace Parameters {
@@ -14406,6 +14474,7 @@ export declare namespace MittwaldAPIV2 {
14406
14474
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14407
14475
  type Query = {
14408
14476
  includeServiceCronjobs?: boolean;
14477
+ stackId?: string;
14409
14478
  limit?: number;
14410
14479
  skip?: number;
14411
14480
  page?: number;
@@ -19642,6 +19711,7 @@ export declare namespace MittwaldAPIV2 {
19642
19711
  extensionId?: string;
19643
19712
  searchTerm?: string;
19644
19713
  anchor?: string;
19714
+ hasAcceptedAllScopes?: boolean;
19645
19715
  limit?: number;
19646
19716
  skip?: number;
19647
19717
  page?: number;
@@ -27684,6 +27754,7 @@ export declare namespace MittwaldAPIV2 {
27684
27754
  type Query = {
27685
27755
  limit?: number;
27686
27756
  skip?: number;
27757
+ page?: number;
27687
27758
  };
27688
27759
  }
27689
27760
  namespace Responses {
@@ -27927,6 +27998,7 @@ export declare namespace MittwaldAPIV2 {
27927
27998
  type Query = {
27928
27999
  limit?: number;
27929
28000
  skip?: number;
28001
+ page?: number;
27930
28002
  };
27931
28003
  }
27932
28004
  namespace Responses {
@@ -31321,62 +31393,5 @@ export declare namespace MittwaldAPIV2 {
31321
31393
  }
31322
31394
  }
31323
31395
  }
31324
- namespace V2Services {
31325
- namespace Get {
31326
- namespace Parameters {
31327
- type Path = {};
31328
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31329
- type Query = {
31330
- searchTerm?: string;
31331
- sortOrder?: MittwaldAPIV2.Components.Schemas.ContainerServiceSortOrder;
31332
- limit?: number;
31333
- skip?: number;
31334
- page?: number;
31335
- };
31336
- }
31337
- namespace Responses {
31338
- namespace $200 {
31339
- namespace Content {
31340
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[];
31341
- }
31342
- }
31343
- namespace $400 {
31344
- namespace Content {
31345
- interface ApplicationJson {
31346
- [k: string]: unknown;
31347
- }
31348
- }
31349
- }
31350
- namespace $403 {
31351
- namespace Content {
31352
- interface ApplicationJson {
31353
- [k: string]: unknown;
31354
- }
31355
- }
31356
- }
31357
- namespace $429 {
31358
- namespace Content {
31359
- interface ApplicationJson {
31360
- [k: string]: unknown;
31361
- }
31362
- }
31363
- }
31364
- namespace $500 {
31365
- namespace Content {
31366
- interface ApplicationJson {
31367
- [k: string]: unknown;
31368
- }
31369
- }
31370
- }
31371
- namespace Default {
31372
- namespace Content {
31373
- interface ApplicationJson {
31374
- [k: string]: unknown;
31375
- }
31376
- }
31377
- }
31378
- }
31379
- }
31380
- }
31381
31396
  }
31382
31397
  }
@@ -740,6 +740,21 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
740
740
  version: string;
741
741
  website?: string | undefined;
742
742
  }>;
743
+ /** List Services the executing user has access to. */
744
+ listAccessibleServices: (conf?: {
745
+ headers?: {
746
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
747
+ "x-access-token"?: string | undefined;
748
+ } | undefined;
749
+ queryParameters?: {
750
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
751
+ searchTerm?: string | undefined;
752
+ sortOrder?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceSortOrder | undefined;
753
+ limit?: number | undefined;
754
+ skip?: number | undefined;
755
+ page?: number | undefined;
756
+ } | undefined;
757
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceResponse[]>;
743
758
  /** List Stacks belonging to the executing user. */
744
759
  listSelfStacks: (conf?: {
745
760
  headers?: {
@@ -822,21 +837,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
822
837
  page?: number | undefined;
823
838
  } | undefined;
824
839
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerVolumeResponse[]>;
825
- /** List Services the executing user has access to. */
826
- listAccessibleServices: (conf?: {
827
- headers?: {
828
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
829
- "x-access-token"?: string | undefined;
830
- } | undefined;
831
- queryParameters?: {
832
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
833
- searchTerm?: string | undefined;
834
- sortOrder?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceSortOrder | undefined;
835
- limit?: number | undefined;
836
- skip?: number | undefined;
837
- page?: number | undefined;
838
- } | undefined;
839
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceResponse[]>;
840
840
  };
841
841
  declare const buildContractApi: (baseClient: MittwaldAPIV3NextClient) => {
842
842
  /** Return the BaseItem of the Contract with the given ID. */
@@ -1354,6 +1354,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV3NextClient) => {
1354
1354
  extensionId?: string | undefined;
1355
1355
  searchTerm?: string | undefined;
1356
1356
  anchor?: string | undefined;
1357
+ hasAcceptedAllScopes?: boolean | undefined;
1357
1358
  limit?: number | undefined;
1358
1359
  skip?: number | undefined;
1359
1360
  page?: number | undefined;
@@ -1391,6 +1392,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV3NextClient) => {
1391
1392
  nextScheduledWebhookExecution?: string | undefined;
1392
1393
  pendingInstallation: boolean;
1393
1394
  pendingRemoval: boolean;
1395
+ scopeChangeAcceptanceDeadline?: string | undefined;
1394
1396
  variantKey?: string | undefined;
1395
1397
  webhookExecutionHalted: boolean;
1396
1398
  }>;
@@ -1511,6 +1513,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV3NextClient) => {
1511
1513
  nextScheduledWebhookExecution?: string | undefined;
1512
1514
  pendingInstallation: boolean;
1513
1515
  pendingRemoval: boolean;
1516
+ scopeChangeAcceptanceDeadline?: string | undefined;
1514
1517
  variantKey?: string | undefined;
1515
1518
  webhookExecutionHalted: boolean;
1516
1519
  }>;
@@ -1545,6 +1548,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV3NextClient) => {
1545
1548
  nextScheduledWebhookExecution?: string | undefined;
1546
1549
  pendingInstallation: boolean;
1547
1550
  pendingRemoval: boolean;
1551
+ scopeChangeAcceptanceDeadline?: string | undefined;
1548
1552
  variantKey?: string | undefined;
1549
1553
  webhookExecutionHalted: boolean;
1550
1554
  }>;
@@ -1786,6 +1790,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV3NextClient) => {
1786
1790
  queryParameters?: {
1787
1791
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1788
1792
  includeServiceCronjobs?: boolean | undefined;
1793
+ stackId?: string | undefined;
1789
1794
  limit?: number | undefined;
1790
1795
  skip?: number | undefined;
1791
1796
  page?: number | undefined;
@@ -3745,6 +3750,7 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV3NextClient) => {
3745
3750
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3746
3751
  limit?: number | undefined;
3747
3752
  skip?: number | undefined;
3753
+ page?: number | undefined;
3748
3754
  } | undefined;
3749
3755
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldSshuserSftpUser[]>;
3750
3756
  /** Get an SFTPUser. */
@@ -3780,6 +3786,7 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV3NextClient) => {
3780
3786
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3781
3787
  limit?: number | undefined;
3782
3788
  skip?: number | undefined;
3789
+ page?: number | undefined;
3783
3790
  } | undefined;
3784
3791
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldSshuserSshUser[]>;
3785
3792
  /** Get an SSHUser. */