@mittwald/api-client 4.275.0 → 4.277.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.
@@ -112,6 +112,8 @@ const buildContractApi = (baseClient) => ({
112
112
  orderListCustomerOrders: new ApiCallAsyncResourceFactory(descriptors.orderListCustomerOrders, baseClient.contract.orderListCustomerOrders).getApiResource,
113
113
  /** Get list of Orders of a Project. */
114
114
  orderListProjectOrders: new ApiCallAsyncResourceFactory(descriptors.orderListProjectOrders, baseClient.contract.orderListProjectOrders).getApiResource,
115
+ /** Return the AI Hosting Contract for the given Customer. */
116
+ getDetailOfContractByAiHosting: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByAiHosting, baseClient.contract.getDetailOfContractByAiHosting).getApiResource,
115
117
  });
116
118
  const buildMarketplaceApi = (baseClient) => ({
117
119
  /** Get a Contributor. */
@@ -202,6 +202,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
202
202
  orderPreviewOrder: this.requestFunctionFactory(descriptors.orderPreviewOrder),
203
203
  /** Preview TariffChange. */
204
204
  orderPreviewTariffChange: this.requestFunctionFactory(descriptors.orderPreviewTariffChange),
205
+ /** Return the AI Hosting Contract for the given Customer. */
206
+ getDetailOfContractByAiHosting: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByAiHosting),
205
207
  };
206
208
  /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
207
209
  marketplace = {
@@ -2626,3 +2626,9 @@ export const verificationVerifyCompany = {
2626
2626
  method: "POST",
2627
2627
  operationId: "verification-verify-company",
2628
2628
  };
2629
+ /** Return the AI Hosting Contract for the given Customer. */
2630
+ export const contractGetDetailOfContractByAiHosting = {
2631
+ path: "/v2/customers/{customerId}/ai-hosting/contract",
2632
+ method: "GET",
2633
+ operationId: "contract-get-detail-of-contract-by-ai-hosting",
2634
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.274.0';
1
+ export const MittwaldAPIClientVersion = '4.276.0';
@@ -901,6 +901,21 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
901
901
  templateNames?: string[] | undefined;
902
902
  } | undefined;
903
903
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
904
+ /** Return the AI Hosting Contract for the given Customer. */
905
+ getDetailOfContractByAiHosting: (conf: {
906
+ customerId: string;
907
+ headers?: {
908
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
909
+ "x-access-token"?: string | undefined;
910
+ } | undefined;
911
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
912
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
913
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
914
+ contractId: string;
915
+ contractNumber: string;
916
+ customerId: string;
917
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
918
+ }>;
904
919
  };
905
920
  declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
906
921
  /** Get a Contributor. */
@@ -6428,6 +6428,68 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6428
6428
  }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
6429
6429
  [x: string]: unknown;
6430
6430
  }, 429, "application/json">>>;
6431
+ /** Return the AI Hosting Contract for the given Customer. */
6432
+ getDetailOfContractByAiHosting: (request: {
6433
+ customerId: string;
6434
+ headers?: {
6435
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6436
+ "x-access-token"?: string | undefined;
6437
+ } | undefined;
6438
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6439
+ headers?: Partial<{
6440
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6441
+ }>;
6442
+ } & {
6443
+ pathParameters: {
6444
+ customerId: string;
6445
+ };
6446
+ } & {
6447
+ headers: {
6448
+ "x-access-token"?: string | undefined;
6449
+ } & Partial<{
6450
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6451
+ }>;
6452
+ }, import("@mittwald/api-client-commons").Response<{
6453
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
6454
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
6455
+ contractId: string;
6456
+ contractNumber: string;
6457
+ customerId: string;
6458
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
6459
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6460
+ [x: string]: unknown;
6461
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6462
+ [x: string]: unknown;
6463
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6464
+ [x: string]: unknown;
6465
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6466
+ headers?: Partial<{
6467
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6468
+ }>;
6469
+ } & {
6470
+ pathParameters: {
6471
+ customerId: string;
6472
+ };
6473
+ } & {
6474
+ headers: {
6475
+ "x-access-token"?: string | undefined;
6476
+ } & Partial<{
6477
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6478
+ }>;
6479
+ }, import("@mittwald/api-client-commons").Response<{
6480
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
6481
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
6482
+ contractId: string;
6483
+ contractNumber: string;
6484
+ customerId: string;
6485
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
6486
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6487
+ [x: string]: unknown;
6488
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6489
+ [x: string]: unknown;
6490
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6491
+ [x: string]: unknown;
6492
+ }, 429, "application/json">>>;
6431
6493
  };
6432
6494
  /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
6433
6495
  readonly marketplace: {
@@ -10625,6 +10687,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10625
10687
  globalCustomerConsequence: "NONE" | "INFO" | "CONFIRM_REQUIRED";
10626
10688
  variantConsequences: {
10627
10689
  consequence?: "NONE" | "INFO" | "CONFIRM_REQUIRED";
10690
+ deletionDeadline?: string;
10628
10691
  variantKey?: string;
10629
10692
  }[];
10630
10693
  };
@@ -10669,6 +10732,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10669
10732
  globalCustomerConsequence: "NONE" | "INFO" | "CONFIRM_REQUIRED";
10670
10733
  variantConsequences: {
10671
10734
  consequence?: "NONE" | "INFO" | "CONFIRM_REQUIRED";
10735
+ deletionDeadline?: string;
10672
10736
  variantKey?: string;
10673
10737
  }[];
10674
10738
  };
@@ -27641,6 +27705,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
27641
27705
  jwt: string;
27642
27706
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
27643
27707
  [x: string]: unknown;
27708
+ }, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
27709
+ [x: string]: unknown;
27644
27710
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
27645
27711
  [x: string]: unknown;
27646
27712
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -27667,6 +27733,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
27667
27733
  jwt: string;
27668
27734
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
27669
27735
  [x: string]: unknown;
27736
+ }, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
27737
+ [x: string]: unknown;
27670
27738
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
27671
27739
  [x: string]: unknown;
27672
27740
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -688,7 +688,7 @@ export declare const projectFileSystemGetDiskUsage: OpenAPIOperation<RequestType
688
688
  /** Get a Project file's content. */
689
689
  export declare const projectFileSystemGetFileContent: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$200.Content.ApplicationOctetStream>, 200, "application/octet-stream"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
690
690
  /** Get a Project's file/filesystem authorization token. */
691
- export declare const projectFileSystemGetJwt: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json">>;
691
+ export declare const projectFileSystemGetJwt: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json">>;
692
692
  /** Get a Project file's information. */
693
693
  export declare const projectFileSystemListFiles: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFiles.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
694
694
  /** Get a licence of a project. */
@@ -879,3 +879,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
879
879
  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.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
880
880
  /** Check if a company exists. */
881
881
  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.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
882
+ /** Return the AI Hosting Contract for the given Customer. */
883
+ export declare const contractGetDetailOfContractByAiHosting: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1754,6 +1754,10 @@ export declare namespace MittwaldAPIV2 {
1754
1754
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1755
1755
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1756
1756
  }
1757
+ namespace ContractGetDetailOfContractByAiHosting {
1758
+ type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByAiHosting>;
1759
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByAiHosting, TStatus>;
1760
+ }
1757
1761
  }
1758
1762
  namespace Components {
1759
1763
  namespace Schemas {
@@ -2141,6 +2145,10 @@ export declare namespace MittwaldAPIV2 {
2141
2145
  variantName?: string;
2142
2146
  }
2143
2147
  interface ExtensionVariant {
2148
+ /**
2149
+ * deadline for scheduled deletion of extension variant
2150
+ */
2151
+ deletionDeadline?: string;
2144
2152
  /**
2145
2153
  * Description of Variant.
2146
2154
  */
@@ -2156,6 +2164,10 @@ export declare namespace MittwaldAPIV2 {
2156
2164
  * stop extension variant from being booked
2157
2165
  */
2158
2166
  isBookingStopped?: boolean;
2167
+ /**
2168
+ * deletion of extension variant is scheduled
2169
+ */
2170
+ isDeletionScheduled?: boolean;
2159
2171
  /**
2160
2172
  * Key that needs to be unique in Variant.
2161
2173
  */
@@ -3586,11 +3598,13 @@ export declare namespace MittwaldAPIV2 {
3586
3598
  * A price plan with (multiple) variants, including different prices for different included service descriptions
3587
3599
  */
3588
3600
  type MarketplaceMonthlyPricePlanStrategy = {
3601
+ deletionDeadline?: string;
3589
3602
  description?: string;
3590
3603
  /**
3591
3604
  * If a variant is no longer bookable the existing extension instances will not be removed but no new ones can be created.
3592
3605
  */
3593
3606
  isBookingStopped: boolean;
3607
+ isDeletionScheduled: boolean;
3594
3608
  key: string;
3595
3609
  name?: string;
3596
3610
  /**
@@ -18270,6 +18284,10 @@ export declare namespace MittwaldAPIV2 {
18270
18284
  *
18271
18285
  */
18272
18286
  consequence?: "NONE" | "INFO" | "CONFIRM_REQUIRED";
18287
+ /**
18288
+ * The date the variant will ne deleted
18289
+ */
18290
+ deletionDeadline?: string;
18273
18291
  /**
18274
18292
  * The key of the variant of the Extension.
18275
18293
  */
@@ -23389,6 +23407,13 @@ export declare namespace MittwaldAPIV2 {
23389
23407
  type ApplicationJson = MittwaldAPIV2.Components.Schemas.ProjectFsApiJwt;
23390
23408
  }
23391
23409
  }
23410
+ namespace $401 {
23411
+ namespace Content {
23412
+ interface ApplicationJson {
23413
+ [k: string]: unknown;
23414
+ }
23415
+ }
23416
+ }
23392
23417
  namespace $403 {
23393
23418
  namespace Content {
23394
23419
  interface ApplicationJson {
@@ -27971,5 +27996,51 @@ export declare namespace MittwaldAPIV2 {
27971
27996
  }
27972
27997
  }
27973
27998
  }
27999
+ namespace V2CustomersCustomerIdAiHostingContract {
28000
+ namespace Get {
28001
+ namespace Parameters {
28002
+ type Path = {
28003
+ customerId: string;
28004
+ };
28005
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
28006
+ type Query = {};
28007
+ }
28008
+ namespace Responses {
28009
+ namespace $200 {
28010
+ namespace Content {
28011
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
28012
+ }
28013
+ }
28014
+ namespace $400 {
28015
+ namespace Content {
28016
+ interface ApplicationJson {
28017
+ [k: string]: unknown;
28018
+ }
28019
+ }
28020
+ }
28021
+ namespace $404 {
28022
+ namespace Content {
28023
+ interface ApplicationJson {
28024
+ [k: string]: unknown;
28025
+ }
28026
+ }
28027
+ }
28028
+ namespace $429 {
28029
+ namespace Content {
28030
+ interface ApplicationJson {
28031
+ [k: string]: unknown;
28032
+ }
28033
+ }
28034
+ }
28035
+ namespace Default {
28036
+ namespace Content {
28037
+ interface ApplicationJson {
28038
+ [k: string]: unknown;
28039
+ }
28040
+ }
28041
+ }
28042
+ }
28043
+ }
28044
+ }
27974
28045
  }
27975
28046
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.274.0';
1
+ export declare const MittwaldAPIClientVersion = '4.276.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.275.0",
3
+ "version": "4.277.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.275.0",
49
+ "@mittwald/api-client-commons": "^4.277.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.275.0",
53
+ "@mittwald/api-code-generator": "^4.277.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": "cb71d8ac7d06c2df84a65c3b1062f649dd1d18d9"
83
+ "gitHead": "d36234e412445ccdf832a502c96f42ce5fa9b500"
84
84
  }