@mittwald/api-client 0.0.0-development-13c5a2b-20250924 → 0.0.0-development-9dc255f-20250925

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.
@@ -316,6 +316,8 @@ const buildMailApi = (baseClient) => ({
316
316
  const buildMiscApi = (baseClient) => ({
317
317
  /** Get a list of currently active llm models. */
318
318
  getLlmModelsExperimental: new ApiCallAsyncResourceFactory(descriptors.miscGetLlmModelsExperimental, baseClient.misc.getLlmModelsExperimental).getApiResource,
319
+ /** List valid time zones. */
320
+ ellaneousListTimeZones: new ApiCallAsyncResourceFactory(descriptors.miscellaneousListTimeZones, baseClient.misc.ellaneousListTimeZones).getApiResource,
319
321
  });
320
322
  const buildNotificationApi = (baseClient) => ({
321
323
  /** Getting the subscription status of the subscription. */
@@ -804,6 +804,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
804
804
  verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
805
805
  /** Check if a company exists. */
806
806
  verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
807
+ /** List valid time zones. */
808
+ ellaneousListTimeZones: this.requestFunctionFactory(descriptors.miscellaneousListTimeZones),
807
809
  };
808
810
  /** The page insights API allows you to get page insights information. */
809
811
  pageInsights = {
@@ -2584,3 +2584,9 @@ export const backupRequestProjectBackupRestorePath = {
2584
2584
  method: "POST",
2585
2585
  operationId: "backup-request-project-backup-restore-path",
2586
2586
  };
2587
+ /** List valid time zones. */
2588
+ export const miscellaneousListTimeZones = {
2589
+ path: "/v2/time-zones",
2590
+ method: "GET",
2591
+ operationId: "miscellaneous-list-time-zones",
2592
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.230.0';
1
+ export const MittwaldAPIClientVersion = '4.231.0';
@@ -1027,7 +1027,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1027
1027
  domain: string;
1028
1028
  id: string;
1029
1029
  };
1030
- chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
1030
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
1031
1031
  consentedScopes: string[];
1032
1032
  contributorId: string;
1033
1033
  contributorName: string;
@@ -1134,7 +1134,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1134
1134
  domain: string;
1135
1135
  id: string;
1136
1136
  };
1137
- chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
1137
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
1138
1138
  consentedScopes: string[];
1139
1139
  contributorId: string;
1140
1140
  contributorName: string;
@@ -1165,7 +1165,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1165
1165
  domain: string;
1166
1166
  id: string;
1167
1167
  };
1168
- chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
1168
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
1169
1169
  consentedScopes: string[];
1170
1170
  contributorId: string;
1171
1171
  contributorName: string;
@@ -1437,6 +1437,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1437
1437
  nextExecutionTime?: string | undefined;
1438
1438
  projectId?: string | undefined;
1439
1439
  shortId: string;
1440
+ timeZone?: string | undefined;
1440
1441
  timeout: number;
1441
1442
  updatedAt: string;
1442
1443
  }>;
@@ -2470,6 +2471,13 @@ declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
2470
2471
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2471
2472
  } | undefined;
2472
2473
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingModel[]>;
2474
+ /** List valid time zones. */
2475
+ ellaneousListTimeZones: (conf?: {
2476
+ headers?: {
2477
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2478
+ "x-access-token"?: string | undefined;
2479
+ } | undefined;
2480
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<string[]>;
2473
2481
  };
2474
2482
  declare const buildNotificationApi: (baseClient: MittwaldAPIV2Client) => {
2475
2483
  /** Getting the subscription status of the subscription. */
@@ -8054,7 +8054,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8054
8054
  domain: string;
8055
8055
  id: string;
8056
8056
  };
8057
- chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
8057
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
8058
8058
  consentedScopes: string[];
8059
8059
  contributorId: string;
8060
8060
  contributorName: string;
@@ -8094,7 +8094,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8094
8094
  domain: string;
8095
8095
  id: string;
8096
8096
  };
8097
- chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
8097
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
8098
8098
  consentedScopes: string[];
8099
8099
  contributorId: string;
8100
8100
  contributorName: string;
@@ -9083,7 +9083,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9083
9083
  domain: string;
9084
9084
  id: string;
9085
9085
  };
9086
- chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
9086
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
9087
9087
  consentedScopes: string[];
9088
9088
  contributorId: string;
9089
9089
  contributorName: string;
@@ -9124,7 +9124,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9124
9124
  domain: string;
9125
9125
  id: string;
9126
9126
  };
9127
- chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
9127
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
9128
9128
  consentedScopes: string[];
9129
9129
  contributorId: string;
9130
9130
  contributorName: string;
@@ -9174,7 +9174,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9174
9174
  domain: string;
9175
9175
  id: string;
9176
9176
  };
9177
- chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
9177
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
9178
9178
  consentedScopes: string[];
9179
9179
  contributorId: string;
9180
9180
  contributorName: string;
@@ -9215,7 +9215,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9215
9215
  domain: string;
9216
9216
  id: string;
9217
9217
  };
9218
- chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
9218
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
9219
9219
  consentedScopes: string[];
9220
9220
  contributorId: string;
9221
9221
  contributorName: string;
@@ -11420,6 +11420,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11420
11420
  interval: string;
11421
11421
  timeout: number;
11422
11422
  email?: string | undefined;
11423
+ timeZone?: string | undefined;
11423
11424
  };
11424
11425
  projectId: string;
11425
11426
  headers?: {
@@ -11434,6 +11435,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11434
11435
  destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
11435
11436
  email?: string | undefined;
11436
11437
  interval: string;
11438
+ timeZone?: string | undefined;
11437
11439
  timeout: number;
11438
11440
  };
11439
11441
  } & {
@@ -11466,6 +11468,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11466
11468
  destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
11467
11469
  email?: string | undefined;
11468
11470
  interval: string;
11471
+ timeZone?: string | undefined;
11469
11472
  timeout: number;
11470
11473
  };
11471
11474
  } & {
@@ -11654,6 +11657,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11654
11657
  nextExecutionTime?: string | undefined;
11655
11658
  projectId?: string | undefined;
11656
11659
  shortId: string;
11660
+ timeZone?: string | undefined;
11657
11661
  timeout: number;
11658
11662
  updatedAt: string;
11659
11663
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -11687,6 +11691,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11687
11691
  nextExecutionTime?: string | undefined;
11688
11692
  projectId?: string | undefined;
11689
11693
  shortId: string;
11694
+ timeZone?: string | undefined;
11690
11695
  timeout: number;
11691
11696
  updatedAt: string;
11692
11697
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -20169,9 +20174,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
20169
20174
  message?: string | undefined;
20170
20175
  validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
20171
20176
  }, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
20172
- errors?: {}[] | undefined;
20173
- message?: string | undefined;
20174
- }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
20175
20177
  [x: string]: unknown;
20176
20178
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
20177
20179
  data: {
@@ -20195,9 +20197,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
20195
20197
  message?: string | undefined;
20196
20198
  validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
20197
20199
  }, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
20198
- errors?: {}[] | undefined;
20199
- message?: string | undefined;
20200
- }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
20201
20200
  [x: string]: unknown;
20202
20201
  }, 429, "application/json">>>;
20203
20202
  /** Authenticate an user with an access token retrieval key. */
@@ -24187,6 +24186,37 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24187
24186
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24188
24187
  [x: string]: unknown;
24189
24188
  }, 429, "application/json">>>;
24189
+ /** List valid time zones. */
24190
+ ellaneousListTimeZones: (request?: {
24191
+ headers?: {
24192
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
24193
+ "x-access-token"?: string | undefined;
24194
+ } | undefined;
24195
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
24196
+ headers?: Partial<{
24197
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24198
+ }>;
24199
+ } & {
24200
+ headers: {
24201
+ "x-access-token"?: string | undefined;
24202
+ } & Partial<{
24203
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24204
+ }>;
24205
+ }, import("@mittwald/api-client-commons").Response<string[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24206
+ [x: string]: unknown;
24207
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
24208
+ headers?: Partial<{
24209
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24210
+ }>;
24211
+ } & {
24212
+ headers: {
24213
+ "x-access-token"?: string | undefined;
24214
+ } & Partial<{
24215
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24216
+ }>;
24217
+ }, import("@mittwald/api-client-commons").Response<string[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24218
+ [x: string]: unknown;
24219
+ }, 429, "application/json">>>;
24190
24220
  };
24191
24221
  /** The page insights API allows you to get page insights information. */
24192
24222
  readonly pageInsights: {
@@ -758,7 +758,7 @@ export declare const userRemovePhoneNumber: OpenAPIOperation<RequestType<Simplif
758
758
  /** Validate your second factor. */
759
759
  export declare const userAuthenticateMfa: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AuthenticateMfa.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AuthenticateMfa.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AuthenticateMfa.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AuthenticateMfa.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateMfa.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateMfa.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateMfa.Post.Responses.$408.Content.ApplicationJson>, 408, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateMfa.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateMfa.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
760
760
  /** Authenticate yourself to get an access token. */
761
- export declare const userAuthenticate: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$202.Content.ApplicationJson>, 202, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$422.Content.ApplicationJson>, 422, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
761
+ export declare const userAuthenticate: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$202.Content.ApplicationJson>, 202, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
762
762
  /** Authenticate an user with an access token retrieval key. */
763
763
  export declare const userAuthenticateWithAccessTokenRetrievalKey: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AuthenticateTokenRetrievalKey.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AuthenticateTokenRetrievalKey.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AuthenticateTokenRetrievalKey.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AuthenticateTokenRetrievalKey.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateTokenRetrievalKey.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateTokenRetrievalKey.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateTokenRetrievalKey.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AuthenticateTokenRetrievalKey.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
764
764
  /** Get your verified Email-Address. */
@@ -865,3 +865,5 @@ export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Sim
865
865
  export declare const backupGetProjectBackupToc: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPaths.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPaths.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPaths.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPaths.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPaths.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPaths.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPaths.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPaths.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPaths.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPaths.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
866
866
  /** Restore a ProjectBackup's path. */
867
867
  export declare const backupRequestProjectBackupRestorePath: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
868
+ /** List valid time zones. */
869
+ export declare const miscellaneousListTimeZones: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2TimeZones.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2TimeZones.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2TimeZones.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2TimeZones.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2TimeZones.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2TimeZones.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1726,6 +1726,10 @@ export declare namespace MittwaldAPIV2 {
1726
1726
  type RequestData = InferredRequestData<typeof descriptors.backupRequestProjectBackupRestorePath>;
1727
1727
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupRequestProjectBackupRestorePath, TStatus>;
1728
1728
  }
1729
+ namespace MiscellaneousListTimeZones {
1730
+ type RequestData = InferredRequestData<typeof descriptors.miscellaneousListTimeZones>;
1731
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.miscellaneousListTimeZones, TStatus>;
1732
+ }
1729
1733
  }
1730
1734
  namespace Components {
1731
1735
  namespace Schemas {
@@ -2722,6 +2726,7 @@ export declare namespace MittwaldAPIV2 {
2722
2726
  nextExecutionTime?: string;
2723
2727
  projectId?: string;
2724
2728
  shortId: string;
2729
+ timeZone?: string;
2725
2730
  timeout: number;
2726
2731
  updatedAt: string;
2727
2732
  }
@@ -2757,6 +2762,7 @@ export declare namespace MittwaldAPIV2 {
2757
2762
  destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
2758
2763
  email?: string;
2759
2764
  interval: string;
2765
+ timeZone?: string;
2760
2766
  timeout: number;
2761
2767
  }
2762
2768
  interface CronjobCronjobUrl {
@@ -3300,7 +3306,7 @@ export declare namespace MittwaldAPIV2 {
3300
3306
  domain: string;
3301
3307
  id: string;
3302
3308
  };
3303
- chargeability: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
3309
+ chargeability?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
3304
3310
  consentedScopes: string[];
3305
3311
  contributorId: string;
3306
3312
  contributorName: string;
@@ -3320,7 +3326,6 @@ export declare namespace MittwaldAPIV2 {
3320
3326
  interface MarketplaceExtensionInstanceChargeability {
3321
3327
  isChargeable: boolean;
3322
3328
  reasons: {
3323
- isNonChargeableCustomer?: boolean;
3324
3329
  isOwnExtension: boolean;
3325
3330
  };
3326
3331
  }
@@ -24856,14 +24861,6 @@ export declare namespace MittwaldAPIV2 {
24856
24861
  type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
24857
24862
  }
24858
24863
  }
24859
- namespace $422 {
24860
- namespace Content {
24861
- interface ApplicationJson {
24862
- errors?: {}[];
24863
- message?: string;
24864
- }
24865
- }
24866
- }
24867
24864
  namespace $429 {
24868
24865
  namespace Content {
24869
24866
  interface ApplicationJson {
@@ -27301,5 +27298,35 @@ export declare namespace MittwaldAPIV2 {
27301
27298
  }
27302
27299
  }
27303
27300
  }
27301
+ namespace V2TimeZones {
27302
+ namespace Get {
27303
+ namespace Parameters {
27304
+ type Path = {};
27305
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
27306
+ type Query = {};
27307
+ }
27308
+ namespace Responses {
27309
+ namespace $200 {
27310
+ namespace Content {
27311
+ type ApplicationJson = string[];
27312
+ }
27313
+ }
27314
+ namespace $429 {
27315
+ namespace Content {
27316
+ interface ApplicationJson {
27317
+ [k: string]: unknown;
27318
+ }
27319
+ }
27320
+ }
27321
+ namespace Default {
27322
+ namespace Content {
27323
+ interface ApplicationJson {
27324
+ [k: string]: unknown;
27325
+ }
27326
+ }
27327
+ }
27328
+ }
27329
+ }
27330
+ }
27304
27331
  }
27305
27332
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.230.0';
1
+ export declare const MittwaldAPIClientVersion = '4.231.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "0.0.0-development-13c5a2b-20250924",
3
+ "version": "0.0.0-development-9dc255f-20250925",
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": "^0.0.0-development-13c5a2b-20250924",
49
+ "@mittwald/api-client-commons": "^0.0.0-development-9dc255f-20250925",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^0.0.0-development-13c5a2b-20250924",
53
+ "@mittwald/api-code-generator": "^0.0.0-development-9dc255f-20250925",
54
54
  "@mittwald/react-use-promise": "^2.6.0",
55
55
  "@types/node": "^22.10.1",
56
56
  "@types/react": "^18.3.14",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "173dfd7c4270fd0502289a7dfdae72b15e6090b3"
83
+ "gitHead": "bdf7f674e88cd501fd9341478e5679dc91d9cdd5"
84
84
  }