@mittwald/api-client 4.123.0 → 4.125.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.
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.122.0';
1
+ export const MittwaldAPIClientVersion = '4.124.0';
@@ -1629,6 +1629,7 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1629
1629
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1630
1630
  extensions: string[];
1631
1631
  fileTypes: import("./types.js").MittwaldAPIV2.Components.Schemas.FileFileType[];
1632
+ maxNameLength: number;
1632
1633
  maxSizeInBytes: number;
1633
1634
  maxSizeInKB: number;
1634
1635
  maxSizeInKb: number;
@@ -1655,6 +1656,7 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1655
1656
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1656
1657
  extensions: string[];
1657
1658
  fileTypes: import("./types.js").MittwaldAPIV2.Components.Schemas.FileFileType[];
1659
+ maxNameLength: number;
1658
1660
  maxSizeInBytes: number;
1659
1661
  maxSizeInKB: number;
1660
1662
  maxSizeInKb: number;
@@ -1945,6 +1947,12 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
1945
1947
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1946
1948
  "x-access-token"?: string | undefined;
1947
1949
  } | undefined;
1950
+ queryParameters?: {
1951
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1952
+ limit?: number | undefined;
1953
+ skip?: number | undefined;
1954
+ page?: number | undefined;
1955
+ } | undefined;
1948
1956
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SignupApiToken[]>;
1949
1957
  /** Get your stored ssh-keys. */
1950
1958
  listSshKeys: (conf?: {
@@ -1952,6 +1960,12 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
1952
1960
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1953
1961
  "x-access-token"?: string | undefined;
1954
1962
  } | undefined;
1963
+ queryParameters?: {
1964
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1965
+ limit?: number | undefined;
1966
+ skip?: number | undefined;
1967
+ page?: number | undefined;
1968
+ } | undefined;
1955
1969
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
1956
1970
  sshKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SignupSshKey[] | undefined;
1957
1971
  }>;
@@ -2074,6 +2088,12 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
2074
2088
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2075
2089
  "x-access-token"?: string | undefined;
2076
2090
  } | undefined;
2091
+ queryParameters?: {
2092
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2093
+ limit?: number | undefined;
2094
+ skip?: number | undefined;
2095
+ page?: number | undefined;
2096
+ } | undefined;
2077
2097
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SignupUserSession[]>;
2078
2098
  /** Obtain authorization from the resource owner. */
2079
2099
  oauthGetAuthorization: (conf: {
@@ -12764,6 +12764,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12764
12764
  [x: string]: unknown;
12765
12765
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
12766
12766
  [x: string]: unknown;
12767
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
12768
+ [x: string]: unknown;
12767
12769
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
12768
12770
  headers?: Partial<{
12769
12771
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -12784,6 +12786,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12784
12786
  [x: string]: unknown;
12785
12787
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
12786
12788
  [x: string]: unknown;
12789
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
12790
+ [x: string]: unknown;
12787
12791
  }, 429, "application/json">>>;
12788
12792
  /** Check the replacement of a Certificate. */
12789
12793
  sslCheckReplaceCertificate: (request: {
@@ -16014,10 +16018,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16014
16018
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
16015
16019
  "x-access-token"?: string | undefined;
16016
16020
  } | undefined;
16021
+ queryParameters?: {
16022
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
16023
+ limit?: number | undefined;
16024
+ skip?: number | undefined;
16025
+ page?: number | undefined;
16026
+ } | undefined;
16017
16027
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
16018
16028
  headers?: Partial<{
16019
16029
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
16020
16030
  }>;
16031
+ } & {
16032
+ queryParameters: {
16033
+ limit?: number | undefined;
16034
+ skip?: number | undefined;
16035
+ page?: number | undefined;
16036
+ } & Partial<{
16037
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
16038
+ }>;
16021
16039
  } & {
16022
16040
  headers: {
16023
16041
  "x-access-token"?: string | undefined;
@@ -16030,6 +16048,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16030
16048
  headers?: Partial<{
16031
16049
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
16032
16050
  }>;
16051
+ } & {
16052
+ queryParameters: {
16053
+ limit?: number | undefined;
16054
+ skip?: number | undefined;
16055
+ page?: number | undefined;
16056
+ } & Partial<{
16057
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
16058
+ }>;
16033
16059
  } & {
16034
16060
  headers: {
16035
16061
  "x-access-token"?: string | undefined;
@@ -16163,10 +16189,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16163
16189
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
16164
16190
  "x-access-token"?: string | undefined;
16165
16191
  } | undefined;
16192
+ queryParameters?: {
16193
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
16194
+ limit?: number | undefined;
16195
+ skip?: number | undefined;
16196
+ page?: number | undefined;
16197
+ } | undefined;
16166
16198
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
16167
16199
  headers?: Partial<{
16168
16200
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
16169
16201
  }>;
16202
+ } & {
16203
+ queryParameters: {
16204
+ limit?: number | undefined;
16205
+ skip?: number | undefined;
16206
+ page?: number | undefined;
16207
+ } & Partial<{
16208
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
16209
+ }>;
16170
16210
  } & {
16171
16211
  headers: {
16172
16212
  "x-access-token"?: string | undefined;
@@ -16181,6 +16221,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16181
16221
  headers?: Partial<{
16182
16222
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
16183
16223
  }>;
16224
+ } & {
16225
+ queryParameters: {
16226
+ limit?: number | undefined;
16227
+ skip?: number | undefined;
16228
+ page?: number | undefined;
16229
+ } & Partial<{
16230
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
16231
+ }>;
16184
16232
  } & {
16185
16233
  headers: {
16186
16234
  "x-access-token"?: string | undefined;
@@ -17247,10 +17295,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
17247
17295
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
17248
17296
  "x-access-token"?: string | undefined;
17249
17297
  } | undefined;
17298
+ queryParameters?: {
17299
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
17300
+ limit?: number | undefined;
17301
+ skip?: number | undefined;
17302
+ page?: number | undefined;
17303
+ } | undefined;
17250
17304
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
17251
17305
  headers?: Partial<{
17252
17306
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
17253
17307
  }>;
17308
+ } & {
17309
+ queryParameters: {
17310
+ limit?: number | undefined;
17311
+ skip?: number | undefined;
17312
+ page?: number | undefined;
17313
+ } & Partial<{
17314
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
17315
+ }>;
17254
17316
  } & {
17255
17317
  headers: {
17256
17318
  "x-access-token"?: string | undefined;
@@ -17263,6 +17325,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
17263
17325
  headers?: Partial<{
17264
17326
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
17265
17327
  }>;
17328
+ } & {
17329
+ queryParameters: {
17330
+ limit?: number | undefined;
17331
+ skip?: number | undefined;
17332
+ page?: number | undefined;
17333
+ } & Partial<{
17334
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
17335
+ }>;
17266
17336
  } & {
17267
17337
  headers: {
17268
17338
  "x-access-token"?: string | undefined;
@@ -18154,6 +18224,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18154
18224
  }, import("@mittwald/api-client-commons").Response<{
18155
18225
  extensions: string[];
18156
18226
  fileTypes: import("./types.js").MittwaldAPIV2.Components.Schemas.FileFileType[];
18227
+ maxNameLength: number;
18157
18228
  maxSizeInBytes: number;
18158
18229
  maxSizeInKB: number;
18159
18230
  maxSizeInKb: number;
@@ -18189,6 +18260,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18189
18260
  }, import("@mittwald/api-client-commons").Response<{
18190
18261
  extensions: string[];
18191
18262
  fileTypes: import("./types.js").MittwaldAPIV2.Components.Schemas.FileFileType[];
18263
+ maxNameLength: number;
18192
18264
  maxSizeInBytes: number;
18193
18265
  maxSizeInKB: number;
18194
18266
  maxSizeInKb: number;
@@ -18231,6 +18303,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18231
18303
  }, import("@mittwald/api-client-commons").Response<{
18232
18304
  extensions: string[];
18233
18305
  fileTypes: import("./types.js").MittwaldAPIV2.Components.Schemas.FileFileType[];
18306
+ maxNameLength: number;
18234
18307
  maxSizeInBytes: number;
18235
18308
  maxSizeInKB: number;
18236
18309
  maxSizeInKb: number;
@@ -18264,6 +18337,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18264
18337
  }, import("@mittwald/api-client-commons").Response<{
18265
18338
  extensions: string[];
18266
18339
  fileTypes: import("./types.js").MittwaldAPIV2.Components.Schemas.FileFileType[];
18340
+ maxNameLength: number;
18267
18341
  maxSizeInBytes: number;
18268
18342
  maxSizeInKB: number;
18269
18343
  maxSizeInKb: number;
@@ -400,7 +400,7 @@ export declare const ingressIngressVerifyOwnership: OpenAPIOperation<RequestType
400
400
  /** List Ingresses compatible with a certificate. */
401
401
  export declare const ingressListIngressesCompatibleWithCertificate: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsListIngressesCompatibleWithCertificate.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsListIngressesCompatibleWithCertificate.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsListIngressesCompatibleWithCertificate.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsListIngressesCompatibleWithCertificate.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsListIngressesCompatibleWithCertificate.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsListIngressesCompatibleWithCertificate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsListIngressesCompatibleWithCertificate.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsListIngressesCompatibleWithCertificate.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsListIngressesCompatibleWithCertificate.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
402
402
  /** Request the ACME certificate issuance of an Ingress. */
403
- export declare const ingressRequestIngressAcmeCertificateIssuance: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
403
+ export declare const ingressRequestIngressAcmeCertificateIssuance: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
404
404
  /** Get details of an Invoice. */
405
405
  export declare const invoiceDetail: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2InvoicesInvoiceId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2InvoicesInvoiceId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2InvoicesInvoiceId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2InvoicesInvoiceId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2InvoicesInvoiceId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2InvoicesInvoiceId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2InvoicesInvoiceId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2InvoicesInvoiceId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
406
406
  /** Get InvoiceSettings of a Customer. */
@@ -2773,6 +2773,7 @@ export declare namespace MittwaldAPIV2 {
2773
2773
  interface FileFileUploadRules {
2774
2774
  extensions: string[];
2775
2775
  fileTypes: MittwaldAPIV2.Components.Schemas.FileFileType[];
2776
+ maxNameLength: number;
2776
2777
  maxSizeInBytes: number;
2777
2778
  /**
2778
2779
  * @deprecated
@@ -14028,6 +14029,13 @@ export declare namespace MittwaldAPIV2 {
14028
14029
  }
14029
14030
  }
14030
14031
  }
14032
+ namespace $412 {
14033
+ namespace Content {
14034
+ interface ApplicationJson {
14035
+ [k: string]: unknown;
14036
+ }
14037
+ }
14038
+ }
14031
14039
  namespace $429 {
14032
14040
  namespace Content {
14033
14041
  interface ApplicationJson {
@@ -19600,7 +19608,11 @@ export declare namespace MittwaldAPIV2 {
19600
19608
  namespace Parameters {
19601
19609
  type Path = {};
19602
19610
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
19603
- type Query = {};
19611
+ type Query = {
19612
+ limit?: number;
19613
+ skip?: number;
19614
+ page?: number;
19615
+ };
19604
19616
  }
19605
19617
  namespace Responses {
19606
19618
  namespace $200 {
@@ -19748,7 +19760,11 @@ export declare namespace MittwaldAPIV2 {
19748
19760
  namespace Parameters {
19749
19761
  type Path = {};
19750
19762
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
19751
- type Query = {};
19763
+ type Query = {
19764
+ limit?: number;
19765
+ skip?: number;
19766
+ page?: number;
19767
+ };
19752
19768
  }
19753
19769
  namespace Responses {
19754
19770
  namespace $200 {
@@ -20594,7 +20610,11 @@ export declare namespace MittwaldAPIV2 {
20594
20610
  namespace Parameters {
20595
20611
  type Path = {};
20596
20612
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
20597
- type Query = {};
20613
+ type Query = {
20614
+ limit?: number;
20615
+ skip?: number;
20616
+ page?: number;
20617
+ };
20598
20618
  }
20599
20619
  namespace Responses {
20600
20620
  namespace $200 {
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.122.0';
1
+ export declare const MittwaldAPIClientVersion = '4.124.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.123.0",
3
+ "version": "4.125.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",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "bcbe0972147f6228406ddde3458d8b2f33929bf6"
83
+ "gitHead": "6cce9a66cb963965317468ff88686e730078eb03"
84
84
  }