@mittwald/api-client 4.402.0 → 4.403.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.
@@ -104,6 +104,8 @@ const buildContainerApi = (baseClient) => ({
104
104
  listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
105
105
  /** List Volumes belonging to a Project. */
106
106
  listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
107
+ /** Get a Container Template icon. */
108
+ getTemplateIcon: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateIcon, baseClient.container.getTemplateIcon).getApiResource,
107
109
  });
108
110
  const buildContractApi = (baseClient) => ({
109
111
  /** Return the BaseItem of the Contract with the given ID. */
@@ -194,6 +194,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
194
194
  startService: this.requestFunctionFactory(descriptors.containerStartService),
195
195
  /** Stop a started Service. */
196
196
  stopService: this.requestFunctionFactory(descriptors.containerStopService),
197
+ /** Get a Container Template icon. */
198
+ getTemplateIcon: this.requestFunctionFactory(descriptors.containerGetTemplateIcon),
197
199
  };
198
200
  /** The contract API allows you to manage your contracts and orders */
199
201
  contract = {
@@ -2830,3 +2830,9 @@ export const verificationVerifyCompany = {
2830
2830
  method: "POST",
2831
2831
  operationId: "verification-verify-company",
2832
2832
  };
2833
+ /** Get a Container Template icon. */
2834
+ export const containerGetTemplateIcon = {
2835
+ path: "/v2/container-templates/{templateId}/icon",
2836
+ method: "GET",
2837
+ operationId: "container-get-template-icon",
2838
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.401.0';
1
+ export const MittwaldAPIClientVersion = '4.402.0';
@@ -697,7 +697,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
697
697
  value: string;
698
698
  }[];
699
699
  } | undefined;
700
- icon: string;
700
+ iconUrl: string;
701
701
  id: string;
702
702
  license?: {
703
703
  link?: string;
@@ -799,6 +799,13 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
799
799
  page?: number | undefined;
800
800
  } | undefined;
801
801
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
802
+ /** Get a Container Template icon. */
803
+ getTemplateIcon: (conf: {
804
+ templateId: string;
805
+ headers?: {
806
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
807
+ } | undefined;
808
+ }) => import("@mittwald/react-use-promise").AsyncResource<string>;
802
809
  };
803
810
  declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
804
811
  /** Return the BaseItem of the Contract with the given ID. */
@@ -5124,7 +5124,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5124
5124
  value: string;
5125
5125
  }[];
5126
5126
  } | undefined;
5127
- icon: string;
5127
+ iconUrl: string;
5128
5128
  id: string;
5129
5129
  license?: {
5130
5130
  link?: string;
@@ -5183,7 +5183,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5183
5183
  value: string;
5184
5184
  }[];
5185
5185
  } | undefined;
5186
- icon: string;
5186
+ iconUrl: string;
5187
5187
  id: string;
5188
5188
  license?: {
5189
5189
  link?: string;
@@ -6073,6 +6073,53 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6073
6073
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6074
6074
  [x: string]: unknown;
6075
6075
  }, 500, "application/json">>>;
6076
+ /** Get a Container Template icon. */
6077
+ getTemplateIcon: (request: {
6078
+ templateId: string;
6079
+ headers?: {
6080
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6081
+ } | undefined;
6082
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6083
+ headers?: Partial<{
6084
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6085
+ }>;
6086
+ } & {
6087
+ pathParameters: {
6088
+ templateId: string;
6089
+ };
6090
+ }, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<string, 200, "image/jpeg"> | import("@mittwald/api-client-commons").Response<string, 200, "image/png"> | import("@mittwald/api-client-commons").Response<string, 200, "image/svg+xml"> | import("@mittwald/api-client-commons").Response<{
6091
+ [x: string]: unknown;
6092
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6093
+ [x: string]: unknown;
6094
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6095
+ [x: string]: unknown;
6096
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6097
+ [x: string]: unknown;
6098
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6099
+ [x: string]: unknown;
6100
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6101
+ [x: string]: unknown;
6102
+ }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6103
+ headers?: Partial<{
6104
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6105
+ }>;
6106
+ } & {
6107
+ pathParameters: {
6108
+ templateId: string;
6109
+ };
6110
+ }, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<string, 200, "image/jpeg"> | import("@mittwald/api-client-commons").Response<string, 200, "image/png"> | import("@mittwald/api-client-commons").Response<string, 200, "image/svg+xml"> | import("@mittwald/api-client-commons").Response<{
6111
+ [x: string]: unknown;
6112
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6113
+ [x: string]: unknown;
6114
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6115
+ [x: string]: unknown;
6116
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6117
+ [x: string]: unknown;
6118
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6119
+ [x: string]: unknown;
6120
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6121
+ [x: string]: unknown;
6122
+ }, 503, "application/json">>>;
6076
6123
  };
6077
6124
  /** The contract API allows you to manage your contracts and orders */
6078
6125
  readonly contract: {
@@ -25609,6 +25656,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25609
25656
  [x: string]: unknown;
25610
25657
  }, 406, "application/json"> | import("@mittwald/api-client-commons").Response<{
25611
25658
  [x: string]: unknown;
25659
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
25660
+ [x: string]: unknown;
25612
25661
  }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
25613
25662
  [x: string]: unknown;
25614
25663
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -25643,6 +25692,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25643
25692
  [x: string]: unknown;
25644
25693
  }, 406, "application/json"> | import("@mittwald/api-client-commons").Response<{
25645
25694
  [x: string]: unknown;
25695
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
25696
+ [x: string]: unknown;
25646
25697
  }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
25647
25698
  [x: string]: unknown;
25648
25699
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -570,7 +570,7 @@ export declare const extensionSetExtensionPublishedState: OpenAPIOperation<Reque
570
570
  /** Creates or Updates Pricing for an Extension. */
571
571
  export declare const extensionUpdateExtensionPricing: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
572
572
  /** Create a File. */
573
- export declare const fileCreateFile: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$406.Content.ApplicationJson>, 406, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$422.Content.ApplicationJson>, 422, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
573
+ export declare const fileCreateFile: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$406.Content.ApplicationJson>, 406, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$422.Content.ApplicationJson>, 422, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
574
574
  /** Get a File's meta. */
575
575
  export declare const fileGetFileMeta: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$422.Content.ApplicationJson>, 422, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
576
576
  /** Get a FileUploadToken's rules. */
@@ -947,3 +947,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
947
947
  export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
948
948
  /** Check if a company exists. */
949
949
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
950
+ /** Get a Container Template icon. */
951
+ export declare const containerGetTemplateIcon: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ApplicationOctetStream>, 200, "application/octet-stream"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ImageJpeg>, 200, "image/jpeg"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ImagePng>, 200, "image/png"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ImageSvgXml>, 200, "image/svg+xml"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1890,6 +1890,10 @@ export declare namespace MittwaldAPIV2 {
1890
1890
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1891
1891
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1892
1892
  }
1893
+ namespace ContainerGetTemplateIcon {
1894
+ type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateIcon>;
1895
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateIcon, TStatus>;
1896
+ }
1893
1897
  }
1894
1898
  namespace Components {
1895
1899
  namespace Schemas {
@@ -2891,7 +2895,7 @@ export declare namespace MittwaldAPIV2 {
2891
2895
  value: string;
2892
2896
  }[];
2893
2897
  };
2894
- icon: string;
2898
+ iconUrl: string;
2895
2899
  id: string;
2896
2900
  license?: {
2897
2901
  link?: string;
@@ -21690,6 +21694,13 @@ export declare namespace MittwaldAPIV2 {
21690
21694
  }
21691
21695
  }
21692
21696
  }
21697
+ namespace $409 {
21698
+ namespace Content {
21699
+ interface ApplicationJson {
21700
+ [k: string]: unknown;
21701
+ }
21702
+ }
21703
+ }
21693
21704
  namespace $422 {
21694
21705
  namespace Content {
21695
21706
  interface ApplicationJson {
@@ -31380,5 +31391,75 @@ export declare namespace MittwaldAPIV2 {
31380
31391
  }
31381
31392
  }
31382
31393
  }
31394
+ namespace V2ContainerTemplatesTemplateIdIcon {
31395
+ namespace Get {
31396
+ namespace Parameters {
31397
+ type Path = {
31398
+ templateId: string;
31399
+ };
31400
+ type Header = {};
31401
+ type Query = {};
31402
+ }
31403
+ namespace Responses {
31404
+ namespace $200 {
31405
+ namespace Content {
31406
+ type ApplicationOctetStream = string;
31407
+ type ImageJpeg = string;
31408
+ type ImagePng = string;
31409
+ type ImageSvgXml = string;
31410
+ }
31411
+ }
31412
+ namespace $400 {
31413
+ namespace Content {
31414
+ interface ApplicationJson {
31415
+ [k: string]: unknown;
31416
+ }
31417
+ }
31418
+ }
31419
+ namespace $403 {
31420
+ namespace Content {
31421
+ interface ApplicationJson {
31422
+ [k: string]: unknown;
31423
+ }
31424
+ }
31425
+ }
31426
+ namespace $404 {
31427
+ namespace Content {
31428
+ interface ApplicationJson {
31429
+ [k: string]: unknown;
31430
+ }
31431
+ }
31432
+ }
31433
+ namespace $429 {
31434
+ namespace Content {
31435
+ interface ApplicationJson {
31436
+ [k: string]: unknown;
31437
+ }
31438
+ }
31439
+ }
31440
+ namespace $500 {
31441
+ namespace Content {
31442
+ interface ApplicationJson {
31443
+ [k: string]: unknown;
31444
+ }
31445
+ }
31446
+ }
31447
+ namespace $503 {
31448
+ namespace Content {
31449
+ interface ApplicationJson {
31450
+ [k: string]: unknown;
31451
+ }
31452
+ }
31453
+ }
31454
+ namespace Default {
31455
+ namespace Content {
31456
+ interface ApplicationJson {
31457
+ [k: string]: unknown;
31458
+ }
31459
+ }
31460
+ }
31461
+ }
31462
+ }
31463
+ }
31383
31464
  }
31384
31465
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.401.0';
1
+ export declare const MittwaldAPIClientVersion = '4.402.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.402.0",
3
+ "version": "4.403.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.402.0",
49
+ "@mittwald/api-client-commons": "^4.403.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.402.0",
53
+ "@mittwald/api-code-generator": "^4.403.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": "464f50a655726a08086e59d8c23f55374258e389"
83
+ "gitHead": "3955acf2402dfb1d79193c174cd99b94a6b5a723"
84
84
  }