@mittwald/api-client 0.0.0-development-53640b8-20260713 → 0.0.0-development-1b2dfd0-20260714

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.
@@ -246,10 +246,6 @@ export declare namespace MittwaldAPIV2 {
246
246
  type RequestData = InferredRequestData<typeof descriptors.backupUpdateProjectBackupDescription>;
247
247
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupUpdateProjectBackupDescription, TStatus>;
248
248
  }
249
- namespace ContainerAddComponent {
250
- type RequestData = InferredRequestData<typeof descriptors.containerAddComponent>;
251
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerAddComponent, TStatus>;
252
- }
253
249
  namespace ContainerCallPullImageWebhookForService {
254
250
  type RequestData = InferredRequestData<typeof descriptors.containerCallPullImageWebhookForService>;
255
251
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerCallPullImageWebhookForService, TStatus>;
@@ -338,10 +334,6 @@ export declare namespace MittwaldAPIV2 {
338
334
  type RequestData = InferredRequestData<typeof descriptors.containerListStackVolumes>;
339
335
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListStackVolumes, TStatus>;
340
336
  }
341
- namespace ContainerListTemplateStatistics {
342
- type RequestData = InferredRequestData<typeof descriptors.containerListTemplateStatistics>;
343
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListTemplateStatistics, TStatus>;
344
- }
345
337
  namespace ContainerListTemplates {
346
338
  type RequestData = InferredRequestData<typeof descriptors.containerListTemplates>;
347
339
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListTemplates, TStatus>;
@@ -2584,18 +2576,6 @@ export declare namespace MittwaldAPIV2 {
2584
2576
  */
2585
2577
  priceInCents: number;
2586
2578
  }
2587
- interface ContainerAddComponent {
2588
- templateConfig: {
2589
- templateId: string;
2590
- /**
2591
- * Values for template user inputs. Missing optional values are filled from template defaults.
2592
- */
2593
- userInputs?: {
2594
- name: string;
2595
- value: string;
2596
- }[];
2597
- };
2598
- }
2599
2579
  interface ContainerCreateRegistry {
2600
2580
  credentials?: MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials;
2601
2581
  description: string;
@@ -6338,21 +6318,6 @@ export declare namespace MittwaldAPIV2 {
6338
6318
  name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6339
6319
  };
6340
6320
  }
6341
- interface ActivitylogDatabaseMysqlNameSet {
6342
- changes: {
6343
- after?: {
6344
- name: string;
6345
- };
6346
- before?: {
6347
- name: string | null;
6348
- };
6349
- };
6350
- name: "database.mysql-name-set";
6351
- parameters: {
6352
- description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6353
- name: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
6354
- };
6355
- }
6356
6321
  interface ActivitylogDatabaseMysqlUserCreated {
6357
6322
  changes: {
6358
6323
  after?: {
@@ -6411,26 +6376,12 @@ export declare namespace MittwaldAPIV2 {
6411
6376
  name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6412
6377
  };
6413
6378
  }
6414
- interface ActivitylogDatabaseVersionSet {
6415
- changes: {
6416
- after?: {
6417
- version: string;
6418
- };
6419
- before?: {
6420
- version: string;
6421
- };
6422
- };
6423
- name: "database.mysql-version-set" | "database.redis-version-set";
6424
- parameters: {
6425
- description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6426
- name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6427
- version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6428
- };
6429
- }
6430
6379
  interface ActivitylogDnsARecordSetManaged {
6431
6380
  changes: {
6432
6381
  after?: {
6433
- aRecords: string;
6382
+ aRecords: {
6383
+ managedByIngressId: string;
6384
+ };
6434
6385
  };
6435
6386
  before?: {};
6436
6387
  };
@@ -6442,12 +6393,12 @@ export declare namespace MittwaldAPIV2 {
6442
6393
  interface ActivitylogDnsARecordSet {
6443
6394
  changes: {
6444
6395
  after?: {
6445
- aRecords?: string[];
6446
- aaaaRecords?: string[];
6396
+ aRecords: string[];
6397
+ aaaaRecords: string[];
6447
6398
  };
6448
6399
  before?: {
6449
- aRecords?: string[];
6450
- aaaaRecords?: string[];
6400
+ aRecords: string[];
6401
+ aaaaRecords: string[];
6451
6402
  };
6452
6403
  };
6453
6404
  name: "dns.a-record-set";
@@ -6500,8 +6451,9 @@ export declare namespace MittwaldAPIV2 {
6500
6451
  interface ActivitylogDnsMxRecordSetManaged {
6501
6452
  changes: {
6502
6453
  after?: {
6503
- fqdn: string;
6504
- priority: string;
6454
+ mx: {
6455
+ managed: boolean;
6456
+ };
6505
6457
  };
6506
6458
  before?: {};
6507
6459
  };
@@ -6513,12 +6465,10 @@ export declare namespace MittwaldAPIV2 {
6513
6465
  interface ActivitylogDnsMxRecordSet {
6514
6466
  changes: {
6515
6467
  after?: {
6516
- fqdn: string[];
6517
- priority: (number | null)[];
6468
+ mx: {}[];
6518
6469
  };
6519
6470
  before?: {
6520
- fqdn: string[];
6521
- priority: (number | null)[];
6471
+ mx: {}[];
6522
6472
  };
6523
6473
  };
6524
6474
  name: "dns.mx-record-set";
@@ -6650,7 +6600,7 @@ export declare namespace MittwaldAPIV2 {
6650
6600
  name: string;
6651
6601
  }
6652
6602
  interface ActivitylogLogEntry {
6653
- 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.ActivitylogDatabaseMysqlNameSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
6603
+ 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.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDescriptionSet | 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;
6654
6604
  aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
6655
6605
  dateTime: string;
6656
6606
  /**
@@ -7268,6 +7218,57 @@ export declare namespace MittwaldAPIV2 {
7268
7218
  }
7269
7219
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
7270
7220
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
7221
+ interface ActivitylogAppInstallationDatabaseLinked {
7222
+ changes: {
7223
+ after: {
7224
+ database: {};
7225
+ };
7226
+ before: {
7227
+ database: {} | null;
7228
+ };
7229
+ };
7230
+ name: "app.database-linked";
7231
+ parameters: {
7232
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
7233
+ database: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
7234
+ };
7235
+ }
7236
+ interface ActivitylogAppInstallationDatabaseUnlinked {
7237
+ changes: {
7238
+ after: {
7239
+ database: {} | null;
7240
+ };
7241
+ before: {
7242
+ database: {};
7243
+ };
7244
+ };
7245
+ name: "app.database-unlinked";
7246
+ parameters: {
7247
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
7248
+ database: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
7249
+ };
7250
+ }
7251
+ interface ActivitylogAppInstallationDeleted {
7252
+ changes: {};
7253
+ name: "app.deleted";
7254
+ parameters: {
7255
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
7256
+ };
7257
+ }
7258
+ interface ActivitylogAppInstallationDescriptionSet {
7259
+ changes: {
7260
+ after?: {
7261
+ description: string;
7262
+ };
7263
+ before?: {
7264
+ description: string | null;
7265
+ };
7266
+ };
7267
+ name: "app.description-set";
7268
+ parameters: {
7269
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
7270
+ };
7271
+ }
7271
7272
  interface CommonsAddress {
7272
7273
  street: string;
7273
7274
  houseNumber: string;
@@ -10514,81 +10515,6 @@ export declare namespace MittwaldAPIV2 {
10514
10515
  }
10515
10516
  }
10516
10517
  }
10517
- namespace V2StacksStackIdActionsAddComponent {
10518
- namespace Post {
10519
- namespace Parameters {
10520
- type Path = {
10521
- stackId: string;
10522
- };
10523
- type RequestBody = MittwaldAPIV2.Components.Schemas.ContainerAddComponent;
10524
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
10525
- type Query = {};
10526
- }
10527
- namespace Responses {
10528
- namespace $204 {
10529
- namespace Content {
10530
- type Empty = unknown;
10531
- }
10532
- }
10533
- namespace $400 {
10534
- namespace Content {
10535
- interface ApplicationJson {
10536
- [k: string]: unknown;
10537
- }
10538
- }
10539
- }
10540
- namespace $403 {
10541
- namespace Content {
10542
- interface ApplicationJson {
10543
- [k: string]: unknown;
10544
- }
10545
- }
10546
- }
10547
- namespace $404 {
10548
- namespace Content {
10549
- interface ApplicationJson {
10550
- [k: string]: unknown;
10551
- }
10552
- }
10553
- }
10554
- namespace $409 {
10555
- namespace Content {
10556
- interface ApplicationJson {
10557
- [k: string]: unknown;
10558
- }
10559
- }
10560
- }
10561
- namespace $412 {
10562
- namespace Content {
10563
- interface ApplicationJson {
10564
- [k: string]: unknown;
10565
- }
10566
- }
10567
- }
10568
- namespace $429 {
10569
- namespace Content {
10570
- interface ApplicationJson {
10571
- [k: string]: unknown;
10572
- }
10573
- }
10574
- }
10575
- namespace $500 {
10576
- namespace Content {
10577
- interface ApplicationJson {
10578
- [k: string]: unknown;
10579
- }
10580
- }
10581
- }
10582
- namespace Default {
10583
- namespace Content {
10584
- interface ApplicationJson {
10585
- [k: string]: unknown;
10586
- }
10587
- }
10588
- }
10589
- }
10590
- }
10591
- }
10592
10518
  namespace V2StacksStackIdWebhooksPullImage {
10593
10519
  namespace Get {
10594
10520
  namespace Parameters {
@@ -12016,60 +11942,6 @@ export declare namespace MittwaldAPIV2 {
12016
11942
  }
12017
11943
  }
12018
11944
  }
12019
- namespace V2ContainerTemplateStatistics {
12020
- namespace Get {
12021
- namespace Parameters {
12022
- type Path = {};
12023
- type Header = {};
12024
- type Query = {
12025
- templateId?: string;
12026
- category?: string;
12027
- };
12028
- }
12029
- namespace Responses {
12030
- namespace $200 {
12031
- namespace Content {
12032
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsListResponse;
12033
- }
12034
- }
12035
- namespace $400 {
12036
- namespace Content {
12037
- interface ApplicationJson {
12038
- [k: string]: unknown;
12039
- }
12040
- }
12041
- }
12042
- namespace $404 {
12043
- namespace Content {
12044
- interface ApplicationJson {
12045
- [k: string]: unknown;
12046
- }
12047
- }
12048
- }
12049
- namespace $429 {
12050
- namespace Content {
12051
- interface ApplicationJson {
12052
- [k: string]: unknown;
12053
- }
12054
- }
12055
- }
12056
- namespace $500 {
12057
- namespace Content {
12058
- interface ApplicationJson {
12059
- [k: string]: unknown;
12060
- }
12061
- }
12062
- }
12063
- namespace Default {
12064
- namespace Content {
12065
- interface ApplicationJson {
12066
- [k: string]: unknown;
12067
- }
12068
- }
12069
- }
12070
- }
12071
- }
12072
- }
12073
11945
  namespace V2ContainerTemplates {
12074
11946
  namespace Get {
12075
11947
  namespace Parameters {
@@ -12079,6 +11951,7 @@ export declare namespace MittwaldAPIV2 {
12079
11951
  category?: string;
12080
11952
  searchTerm?: string;
12081
11953
  type?: "component" | "standalone";
11954
+ trend?: "30days" | "all";
12082
11955
  limit?: number;
12083
11956
  skip?: number;
12084
11957
  page?: number;
@@ -836,20 +836,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
836
836
  page?: number | undefined;
837
837
  } | undefined;
838
838
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerVolumeResponse[]>;
839
- /** List Container Template statistics. */
840
- listTemplateStatistics: (conf?: {
841
- headers?: {
842
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
843
- } | undefined;
844
- queryParameters?: {
845
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
846
- templateId?: string | undefined;
847
- category?: string | undefined;
848
- } | undefined;
849
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
850
- category?: string | undefined;
851
- templates?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateStatsResponse[] | undefined;
852
- }>;
853
839
  /** List Container Templates. */
854
840
  listTemplates: (conf?: {
855
841
  headers?: {
@@ -860,6 +846,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
860
846
  category?: string | undefined;
861
847
  searchTerm?: string | undefined;
862
848
  type?: "component" | "standalone" | undefined;
849
+ trend?: "30days" | "all" | undefined;
863
850
  limit?: number | undefined;
864
851
  skip?: number | undefined;
865
852
  page?: number | undefined;
@@ -3914,99 +3914,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
3914
3914
  };
3915
3915
  /** The container API allows you to manage your stacks, containers, volumes and registries. */
3916
3916
  readonly container: {
3917
- /** Add a component to a Stack. */
3918
- addComponent: (request: {
3919
- data: {
3920
- templateConfig: {
3921
- templateId: string;
3922
- userInputs?: {
3923
- name: string;
3924
- value: string;
3925
- }[] | undefined;
3926
- };
3927
- };
3928
- stackId: string;
3929
- headers?: {
3930
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3931
- "x-access-token"?: string | undefined;
3932
- } | undefined;
3933
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3934
- data: {
3935
- templateConfig: {
3936
- templateId: string;
3937
- userInputs?: {
3938
- name: string;
3939
- value: string;
3940
- }[];
3941
- };
3942
- };
3943
- } & {
3944
- pathParameters: {
3945
- stackId: string;
3946
- };
3947
- } & {
3948
- headers?: Partial<{
3949
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3950
- }>;
3951
- } & {
3952
- headers: {
3953
- "x-access-token"?: string | undefined;
3954
- } & Partial<{
3955
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3956
- }>;
3957
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3958
- [x: string]: unknown;
3959
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3960
- [x: string]: unknown;
3961
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3962
- [x: string]: unknown;
3963
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3964
- [x: string]: unknown;
3965
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
3966
- [x: string]: unknown;
3967
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3968
- [x: string]: unknown;
3969
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3970
- [x: string]: unknown;
3971
- }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3972
- data: {
3973
- templateConfig: {
3974
- templateId: string;
3975
- userInputs?: {
3976
- name: string;
3977
- value: string;
3978
- }[];
3979
- };
3980
- };
3981
- } & {
3982
- pathParameters: {
3983
- stackId: string;
3984
- };
3985
- } & {
3986
- headers?: Partial<{
3987
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3988
- }>;
3989
- } & {
3990
- headers: {
3991
- "x-access-token"?: string | undefined;
3992
- } & Partial<{
3993
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3994
- }>;
3995
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3996
- [x: string]: unknown;
3997
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3998
- [x: string]: unknown;
3999
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4000
- [x: string]: unknown;
4001
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4002
- [x: string]: unknown;
4003
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
4004
- [x: string]: unknown;
4005
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
4006
- [x: string]: unknown;
4007
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4008
- [x: string]: unknown;
4009
- }, 500, "application/json">>>;
4010
3917
  /** Call pull-image webhook */
4011
3918
  callPullImageWebhookForService: (request: {
4012
3919
  queryParameters: {
@@ -5877,61 +5784,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
5877
5784
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5878
5785
  [x: string]: unknown;
5879
5786
  }, 500, "application/json">>>;
5880
- /** List Container Template statistics. */
5881
- listTemplateStatistics: (request?: {
5882
- headers?: {
5883
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5884
- } | undefined;
5885
- queryParameters?: {
5886
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5887
- templateId?: string | undefined;
5888
- category?: string | undefined;
5889
- } | undefined;
5890
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5891
- headers?: Partial<{
5892
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5893
- }>;
5894
- } & {
5895
- queryParameters: {
5896
- templateId?: string | undefined;
5897
- category?: string | undefined;
5898
- } & Partial<{
5899
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5900
- }>;
5901
- }, import("@mittwald/api-client-commons").Response<{
5902
- category?: string | undefined;
5903
- templates?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateStatsResponse[] | undefined;
5904
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5905
- [x: string]: unknown;
5906
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5907
- [x: string]: unknown;
5908
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5909
- [x: string]: unknown;
5910
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5911
- [x: string]: unknown;
5912
- }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5913
- headers?: Partial<{
5914
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5915
- }>;
5916
- } & {
5917
- queryParameters: {
5918
- templateId?: string | undefined;
5919
- category?: string | undefined;
5920
- } & Partial<{
5921
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5922
- }>;
5923
- }, import("@mittwald/api-client-commons").Response<{
5924
- category?: string | undefined;
5925
- templates?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateStatsResponse[] | undefined;
5926
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5927
- [x: string]: unknown;
5928
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5929
- [x: string]: unknown;
5930
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5931
- [x: string]: unknown;
5932
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5933
- [x: string]: unknown;
5934
- }, 500, "application/json">>>;
5935
5787
  /** List Container Templates. */
5936
5788
  listTemplates: (request?: {
5937
5789
  headers?: {
@@ -5942,6 +5794,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
5942
5794
  category?: string | undefined;
5943
5795
  searchTerm?: string | undefined;
5944
5796
  type?: "component" | "standalone" | undefined;
5797
+ trend?: "30days" | "all" | undefined;
5945
5798
  limit?: number | undefined;
5946
5799
  skip?: number | undefined;
5947
5800
  page?: number | undefined;
@@ -5955,6 +5808,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
5955
5808
  category?: string | undefined;
5956
5809
  searchTerm?: string | undefined;
5957
5810
  type?: "component" | "standalone" | undefined;
5811
+ trend?: "30days" | "all" | undefined;
5958
5812
  limit?: number | undefined;
5959
5813
  skip?: number | undefined;
5960
5814
  page?: number | undefined;
@@ -5976,6 +5830,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
5976
5830
  category?: string | undefined;
5977
5831
  searchTerm?: string | undefined;
5978
5832
  type?: "component" | "standalone" | undefined;
5833
+ trend?: "30days" | "all" | undefined;
5979
5834
  limit?: number | undefined;
5980
5835
  skip?: number | undefined;
5981
5836
  page?: number | undefined;
@@ -125,8 +125,6 @@ export declare const backupReplaceProjectBackupExpirationTime: OpenAPIOperation<
125
125
  export declare const backupRequestProjectBackupRestore: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdRestore.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdRestore.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdRestore.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdRestore.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdRestore.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdRestore.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdRestore.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdRestore.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdRestore.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdRestore.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
126
126
  /** Change the description of a ProjectBackup. */
127
127
  export declare const backupUpdateProjectBackupDescription: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdDescription.Patch.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdDescription.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdDescription.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdDescription.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdDescription.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdDescription.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdDescription.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectBackupsProjectBackupIdDescription.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
128
- /** Add a component to a Stack. */
129
- export declare const containerAddComponent: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddComponent.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
130
128
  /** Call pull-image webhook */
131
129
  export declare const containerCallPullImageWebhookForService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdWebhooksPullImage.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdWebhooksPullImage.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdWebhooksPullImage.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdWebhooksPullImage.Get.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdWebhooksPullImage.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdWebhooksPullImage.Get.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdWebhooksPullImage.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdWebhooksPullImage.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdWebhooksPullImage.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdWebhooksPullImage.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdWebhooksPullImage.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
132
130
  /** List Registries belonging to a Project. */
@@ -171,8 +169,6 @@ export declare const containerListSelfStacks: OpenAPIOperation<RequestType<Simpl
171
169
  export declare const containerListServices: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdServices.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdServices.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdServices.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdServices.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdServices.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdServices.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdServices.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdServices.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdServices.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextProjectsProjectIdServices.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
172
170
  /** List Volumes belonging to a Stack. */
173
171
  export declare const containerListStackVolumes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdVolumes.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdVolumes.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdVolumes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdVolumes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdVolumes.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdVolumes.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdVolumes.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdVolumes.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdVolumes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
174
- /** List Container Template statistics. */
175
- export declare const containerListTemplateStatistics: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplateStatistics.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplateStatistics.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplateStatistics.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplateStatistics.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplateStatistics.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplateStatistics.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplateStatistics.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplateStatistics.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplateStatistics.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
176
172
  /** List Container Templates. */
177
173
  export declare const containerListTemplates: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplates.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplates.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplates.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplates.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplates.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplates.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplates.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplates.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
178
174
  /** List Volumes belonging to a Project. */