@mittwald/api-client 4.421.0 → 4.424.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.
@@ -669,6 +669,14 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
669
669
  status: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceStatus;
670
670
  statusSetAt: string;
671
671
  }>;
672
+ /** Get a Container Template asset. */
673
+ getTemplateAsset: (conf: {
674
+ templateId: string;
675
+ assetPath: string;
676
+ headers?: {
677
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
678
+ } | undefined;
679
+ }) => import("@mittwald/react-use-promise").AsyncResource<string>;
672
680
  /** Get a Container Template by ID. */
673
681
  getTemplate: (conf: {
674
682
  templateId: string;
@@ -807,14 +815,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
807
815
  page?: number | undefined;
808
816
  } | undefined;
809
817
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerVolumeResponse[]>;
810
- /** Get a Container Template asset. */
811
- getTemplateAsset: (conf: {
812
- templateId: string;
813
- assetPath: string;
814
- headers?: {
815
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
816
- } | undefined;
817
- }) => import("@mittwald/react-use-promise").AsyncResource<string>;
818
818
  };
819
819
  declare const buildContractApi: (baseClient: MittwaldAPIV3NextClient) => {
820
820
  /** Return the BaseItem of the Contract with the given ID. */
@@ -2898,6 +2898,17 @@ declare const buildMailApi: (baseClient: MittwaldAPIV3NextClient) => {
2898
2898
  receivingDisabled: boolean;
2899
2899
  updatedAt: string;
2900
2900
  }>;
2901
+ /** Get a Mail RateLimit. */
2902
+ getMailRateLimit: (conf: {
2903
+ mailRateLimitId: string;
2904
+ headers?: {
2905
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2906
+ "x-access-token"?: string | undefined;
2907
+ } | undefined;
2908
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2909
+ id: string;
2910
+ rateLimit: number;
2911
+ }>;
2901
2912
  /** List backups belonging to a MailAddress. */
2902
2913
  listBackupsForMailAddress: (conf: {
2903
2914
  mailAddressId: string;
@@ -2927,6 +2938,13 @@ declare const buildMailApi: (baseClient: MittwaldAPIV3NextClient) => {
2927
2938
  order?: ("asc" | "desc")[] | undefined;
2928
2939
  } | undefined;
2929
2940
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMailMailAddress[]>;
2941
+ /** List Mail RateLimits. */
2942
+ listMailRateLimits: (conf?: {
2943
+ headers?: {
2944
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2945
+ "x-access-token"?: string | undefined;
2946
+ } | undefined;
2947
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMailsystemRateLimit[]>;
2930
2948
  /** List mail settings of a Project. */
2931
2949
  listProjectMailSettings: (conf: {
2932
2950
  projectId: string;
@@ -2939,24 +2957,6 @@ declare const buildMailApi: (baseClient: MittwaldAPIV3NextClient) => {
2939
2957
  projectId: string;
2940
2958
  whitelist: string[];
2941
2959
  }>;
2942
- /** Get a Mail RateLimit. */
2943
- getMailRateLimit: (conf: {
2944
- mailRateLimitId: string;
2945
- headers?: {
2946
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2947
- "x-access-token"?: string | undefined;
2948
- } | undefined;
2949
- }) => import("@mittwald/react-use-promise").AsyncResource<{
2950
- id: string;
2951
- rateLimit: number;
2952
- }>;
2953
- /** List Mail RateLimits. */
2954
- listMailRateLimits: (conf?: {
2955
- headers?: {
2956
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2957
- "x-access-token"?: string | undefined;
2958
- } | undefined;
2959
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMailsystemRateLimit[]>;
2960
2960
  };
2961
2961
  declare const buildMiscApi: (baseClient: MittwaldAPIV3NextClient) => {
2962
2962
  /** List valid time zones. */