@mittwald/api-client 0.0.0-development-49bfc51-20260120 → 0.0.0-development-4248bfc-20260120

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.
@@ -321,6 +321,12 @@ const buildLeadFyndrApi = (baseClient) => ({
321
321
  /** Get all unlocked leads. Organisation can unlock leads. */
322
322
  leadfyndrListUnlockedLeads: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListUnlockedLeads, baseClient.leadFyndr.leadfyndrListUnlockedLeads).getApiResource,
323
323
  });
324
+ const buildLicenseApi = (baseClient) => ({
325
+ /** Get a license. */
326
+ getLicense: new ApiCallAsyncResourceFactory(descriptors.licenseGetLicense, baseClient.license.getLicense).getApiResource,
327
+ /** List Licenses belonging to a Project. */
328
+ listLicensesForProject: new ApiCallAsyncResourceFactory(descriptors.licenseListLicensesForProject, baseClient.license.listLicensesForProject).getApiResource,
329
+ });
324
330
  const buildMailApi = (baseClient) => ({
325
331
  /** List DeliveryBoxes belonging to a Project. */
326
332
  listDeliveryBoxes: new ApiCallAsyncResourceFactory(descriptors.mailListDeliveryBoxes, baseClient.mail.listDeliveryBoxes).getApiResource,
@@ -476,6 +482,8 @@ export class MittwaldAPIV2ClientReact {
476
482
  file;
477
483
  /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
478
484
  leadFyndr;
485
+ /** The license API allows you to manage your paid licenses. */
486
+ license;
479
487
  /** The mail API allows you to manage your mail accounts. */
480
488
  mail;
481
489
  /** API endpoints that are not related to any specific API domain */
@@ -507,6 +515,7 @@ export class MittwaldAPIV2ClientReact {
507
515
  this.domain = buildDomainApi(baseClient);
508
516
  this.file = buildFileApi(baseClient);
509
517
  this.leadFyndr = buildLeadFyndrApi(baseClient);
518
+ this.license = buildLicenseApi(baseClient);
510
519
  this.mail = buildMailApi(baseClient);
511
520
  this.misc = buildMiscApi(baseClient);
512
521
  this.notification = buildNotificationApi(baseClient);
@@ -418,7 +418,7 @@ export class MittwaldAPIV2Client extends ApiClientBase {
418
418
  getExecutionAnalysis: this.requestFunctionFactory(descriptors.cronjobGetExecutionAnalysis),
419
419
  /** Get a CronjobExecution. */
420
420
  getExecution: this.requestFunctionFactory(descriptors.cronjobGetExecution),
421
- /** Update a Cronjob's app id. */
421
+ /** Update a Cronjob's app installation id. */
422
422
  updateCronjobAppId: this.requestFunctionFactory(descriptors.cronjobUpdateCronjobAppId),
423
423
  };
424
424
  /** The customer API allows you to manage your own organizations and users. */
@@ -849,6 +849,17 @@ export class MittwaldAPIV2Client extends ApiClientBase {
849
849
  /** Removes a reservation on a unlocked lead for the given customerId. */
850
850
  leadfyndrRemoveUnlockedLeadReservation: this.requestFunctionFactory(descriptors.leadfyndrRemoveUnlockedLeadReservation),
851
851
  };
852
+ /** The license API allows you to manage your paid licenses. */
853
+ license = {
854
+ /** Get a license. */
855
+ getLicense: this.requestFunctionFactory(descriptors.licenseGetLicense),
856
+ /** List Licenses belonging to a Project. */
857
+ listLicensesForProject: this.requestFunctionFactory(descriptors.licenseListLicensesForProject),
858
+ /** rotate a License's key, i.e. revoke the old and generate a new one. */
859
+ rotateLicenseKey: this.requestFunctionFactory(descriptors.licenseRotateLicenseKey),
860
+ /** Validate a License's key for a project. */
861
+ validateLicenseKeyForProject: this.requestFunctionFactory(descriptors.licenseValidateLicenseKeyForProject),
862
+ };
852
863
  /** API endpoints that are not related to any specific API domain */
853
864
  misc = {
854
865
  /** List valid time zones. */
@@ -808,9 +808,9 @@ export const cronjobGetExecution = {
808
808
  method: "GET",
809
809
  operationId: "cronjob-get-execution",
810
810
  };
811
- /** Update a Cronjob's app id. */
811
+ /** Update a Cronjob's app installation id. */
812
812
  export const cronjobUpdateCronjobAppId = {
813
- path: "/v2/cronjobs/{cronjobId}/app-id",
813
+ path: "/v2/cronjobs/{cronjobId}/app-installation-id",
814
814
  method: "PATCH",
815
815
  operationId: "cronjob-update-cronjob-app-id",
816
816
  };
@@ -1780,29 +1780,29 @@ export const leadfyndrRemoveUnlockedLeadReservation = {
1780
1780
  method: "DELETE",
1781
1781
  operationId: "leadfyndr-remove-unlocked-lead-reservation",
1782
1782
  };
1783
- /** Get a Licence. */
1784
- export const licenceGetLicence = {
1785
- path: "/v2/licences/{licenceId}",
1783
+ /** Get a license. */
1784
+ export const licenseGetLicense = {
1785
+ path: "/v2/licenses/{licenseId}",
1786
1786
  method: "GET",
1787
- operationId: "licence-get-licence",
1787
+ operationId: "license-get-license",
1788
1788
  };
1789
- /** List Licences belonging to a Project. */
1790
- export const licenceListLicencesForProject = {
1791
- path: "/v2/projects/{projectId}/licences",
1789
+ /** List Licenses belonging to a Project. */
1790
+ export const licenseListLicensesForProject = {
1791
+ path: "/v2/projects/{projectId}/licenses",
1792
1792
  method: "GET",
1793
- operationId: "licence-list-licences-for-project",
1793
+ operationId: "license-list-licenses-for-project",
1794
1794
  };
1795
- /** rotate a Licence's key, i.e. revoke the old and generate a new one. */
1796
- export const licenceRotateLicenceKey = {
1797
- path: "/v2/licences/{licenceId}/actions/rotate-licence-key",
1795
+ /** rotate a License's key, i.e. revoke the old and generate a new one. */
1796
+ export const licenseRotateLicenseKey = {
1797
+ path: "/v2/licenses/{licenseId}/actions/rotate-license-key",
1798
1798
  method: "POST",
1799
- operationId: "licence-rotate-licence-key",
1799
+ operationId: "license-rotate-license-key",
1800
1800
  };
1801
- /** Validate a Licence's key for a project. */
1802
- export const licenceValidateLicenceKeyForProject = {
1803
- path: "/v2/projects/{projectId}/actions/validate-licence-key",
1801
+ /** Validate a License's key for a project. */
1802
+ export const licenseValidateLicenseKeyForProject = {
1803
+ path: "/v2/projects/{projectId}/actions/validate-license-key",
1804
1804
  method: "POST",
1805
- operationId: "licence-validate-licence-key-for-project",
1805
+ operationId: "license-validate-license-key-for-project",
1806
1806
  };
1807
1807
  /** List DeliveryBoxes belonging to a Project. */
1808
1808
  export const mailListDeliveryBoxes = {
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '0.0.0-development-f31be48-20260120';
1
+ export const MittwaldAPIClientVersion = '0.0.0-development-4ad1a23-20260120';
@@ -1581,6 +1581,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1581
1581
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1582
1582
  active: boolean;
1583
1583
  appId: string;
1584
+ appInstallationId?: string | undefined;
1584
1585
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
1585
1586
  createdAt: string;
1586
1587
  description: string;
@@ -2504,6 +2505,39 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2504
2505
  totalCount: number;
2505
2506
  }>;
2506
2507
  };
2508
+ declare const buildLicenseApi: (baseClient: MittwaldAPIV2Client) => {
2509
+ /** Get a license. */
2510
+ getLicense: (conf: {
2511
+ licenseId: string;
2512
+ headers?: {
2513
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2514
+ "x-access-token"?: string | undefined;
2515
+ } | undefined;
2516
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2517
+ aggregateReference: import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseAggregateReference;
2518
+ description: string;
2519
+ expiryDate?: string | undefined;
2520
+ id: string;
2521
+ keyReference?: (import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseKey | import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseExternalKey) | undefined;
2522
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseKind;
2523
+ meta: import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseMeta;
2524
+ volume?: number | undefined;
2525
+ }>;
2526
+ /** List Licenses belonging to a Project. */
2527
+ listLicensesForProject: (conf: {
2528
+ projectId: string;
2529
+ headers?: {
2530
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2531
+ "x-access-token"?: string | undefined;
2532
+ } | undefined;
2533
+ queryParameters?: {
2534
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2535
+ limit?: number | undefined;
2536
+ skip?: number | undefined;
2537
+ page?: number | undefined;
2538
+ } | undefined;
2539
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseLicense[]>;
2540
+ };
2507
2541
  declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2508
2542
  /** List DeliveryBoxes belonging to a Project. */
2509
2543
  listDeliveryBoxes: (conf: {
@@ -3494,6 +3528,8 @@ export declare class MittwaldAPIV2ClientReact {
3494
3528
  readonly file: ReturnType<typeof buildFileApi>;
3495
3529
  /** The lead fyndr api allow you to manage you leads and your fyndr profile. */
3496
3530
  readonly leadFyndr: ReturnType<typeof buildLeadFyndrApi>;
3531
+ /** The license API allows you to manage your paid licenses. */
3532
+ readonly license: ReturnType<typeof buildLicenseApi>;
3497
3533
  /** The mail API allows you to manage your mail accounts. */
3498
3534
  readonly mail: ReturnType<typeof buildMailApi>;
3499
3535
  /** API endpoints that are not related to any specific API domain */
@@ -6964,11 +6964,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6964
6964
  requestsPerMinute: number;
6965
6965
  useFreeTrial?: boolean | undefined;
6966
6966
  } | {
6967
- licenceType: "typo3";
6968
- mayorVersion: number;
6967
+ licenseType: "typo3";
6968
+ majorVersion: number;
6969
6969
  projectId: string;
6970
6970
  } | undefined;
6971
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "licence" | undefined;
6971
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
6972
6972
  } | undefined;
6973
6973
  headers?: {
6974
6974
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -6976,8 +6976,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6976
6976
  } | undefined;
6977
6977
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6978
6978
  data: {
6979
- orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLicenceOrder) | undefined;
6980
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "licence" | undefined;
6979
+ orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLicenseOrder) | undefined;
6980
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
6981
6981
  };
6982
6982
  } & {
6983
6983
  headers?: Partial<{
@@ -6999,8 +6999,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6999
6999
  [x: string]: unknown;
7000
7000
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7001
7001
  data: {
7002
- orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLicenceOrder) | undefined;
7003
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "licence" | undefined;
7002
+ orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLicenseOrder) | undefined;
7003
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
7004
7004
  };
7005
7005
  } & {
7006
7006
  headers?: Partial<{
@@ -7340,18 +7340,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7340
7340
  monthlyTokens: number;
7341
7341
  requestsPerMinute: number;
7342
7342
  } | {
7343
- licenceType: "typo3";
7344
- mayorVersion: number;
7343
+ licenseType: "typo3";
7344
+ majorVersion: number;
7345
7345
  } | undefined;
7346
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "licence" | undefined;
7346
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
7347
7347
  } | undefined;
7348
7348
  headers?: {
7349
7349
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7350
7350
  } | undefined;
7351
7351
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7352
7352
  data: {
7353
- orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLicenceOrderPreview) | undefined;
7354
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "licence" | undefined;
7353
+ orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLicenseOrderPreview) | undefined;
7354
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
7355
7355
  };
7356
7356
  } & {
7357
7357
  headers?: Partial<{
@@ -7365,8 +7365,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7365
7365
  [x: string]: unknown;
7366
7366
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7367
7367
  data: {
7368
- orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLicenceOrderPreview) | undefined;
7369
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "licence" | undefined;
7368
+ orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLicenseOrderPreview) | undefined;
7369
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
7370
7370
  };
7371
7371
  } & {
7372
7372
  headers?: Partial<{
@@ -12714,6 +12714,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12714
12714
  };
12715
12715
  interval: string;
12716
12716
  timeout: number;
12717
+ appInstallationId?: string | undefined;
12717
12718
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
12718
12719
  email?: string | undefined;
12719
12720
  failedExecutionAlertThreshold?: number | undefined;
@@ -12728,6 +12729,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12728
12729
  data: {
12729
12730
  active: boolean;
12730
12731
  appId: string;
12732
+ appInstallationId?: string | undefined;
12731
12733
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
12732
12734
  description: string;
12733
12735
  destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
@@ -12763,6 +12765,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12763
12765
  data: {
12764
12766
  active: boolean;
12765
12767
  appId: string;
12768
+ appInstallationId?: string | undefined;
12766
12769
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
12767
12770
  description: string;
12768
12771
  destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
@@ -12948,6 +12951,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12948
12951
  }, import("@mittwald/api-client-commons").Response<{
12949
12952
  active: boolean;
12950
12953
  appId: string;
12954
+ appInstallationId?: string | undefined;
12951
12955
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
12952
12956
  createdAt: string;
12953
12957
  description: string;
@@ -12984,6 +12988,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12984
12988
  }, import("@mittwald/api-client-commons").Response<{
12985
12989
  active: boolean;
12986
12990
  appId: string;
12991
+ appInstallationId?: string | undefined;
12987
12992
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
12988
12993
  createdAt: string;
12989
12994
  description: string;
@@ -13295,10 +13300,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13295
13300
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
13296
13301
  [x: string]: unknown;
13297
13302
  }, 429, "application/json">>>;
13298
- /** Update a Cronjob's app id. */
13303
+ /** Update a Cronjob's app installation id. */
13299
13304
  updateCronjobAppId: (request: {
13300
13305
  data: {
13301
13306
  appId: string;
13307
+ appInstallationId?: string | undefined;
13302
13308
  };
13303
13309
  cronjobId: string;
13304
13310
  headers?: {
@@ -13308,6 +13314,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13308
13314
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
13309
13315
  data: {
13310
13316
  appId: string;
13317
+ appInstallationId?: string | undefined;
13311
13318
  };
13312
13319
  } & {
13313
13320
  pathParameters: {
@@ -13332,6 +13339,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13332
13339
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
13333
13340
  data: {
13334
13341
  appId: string;
13342
+ appInstallationId?: string | undefined;
13335
13343
  };
13336
13344
  } & {
13337
13345
  pathParameters: {
@@ -25904,6 +25912,306 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25904
25912
  [x: string]: unknown;
25905
25913
  }, 429, "application/json">>>;
25906
25914
  };
25915
+ /** The license API allows you to manage your paid licenses. */
25916
+ readonly license: {
25917
+ /** Get a license. */
25918
+ getLicense: (request: {
25919
+ licenseId: string;
25920
+ headers?: {
25921
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
25922
+ "x-access-token"?: string | undefined;
25923
+ } | undefined;
25924
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
25925
+ headers?: Partial<{
25926
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25927
+ }>;
25928
+ } & {
25929
+ pathParameters: {
25930
+ licenseId: string;
25931
+ };
25932
+ } & {
25933
+ headers: {
25934
+ "x-access-token"?: string | undefined;
25935
+ } & Partial<{
25936
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25937
+ }>;
25938
+ }, import("@mittwald/api-client-commons").Response<{
25939
+ aggregateReference: import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseAggregateReference;
25940
+ description: string;
25941
+ expiryDate?: string | undefined;
25942
+ id: string;
25943
+ keyReference?: (import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseKey | import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseExternalKey) | undefined;
25944
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseKind;
25945
+ meta: import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseMeta;
25946
+ volume?: number | undefined;
25947
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
25948
+ [x: string]: unknown;
25949
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
25950
+ [x: string]: unknown;
25951
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
25952
+ [x: string]: unknown;
25953
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
25954
+ [x: string]: unknown;
25955
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
25956
+ headers?: Partial<{
25957
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25958
+ }>;
25959
+ } & {
25960
+ pathParameters: {
25961
+ licenseId: string;
25962
+ };
25963
+ } & {
25964
+ headers: {
25965
+ "x-access-token"?: string | undefined;
25966
+ } & Partial<{
25967
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25968
+ }>;
25969
+ }, import("@mittwald/api-client-commons").Response<{
25970
+ aggregateReference: import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseAggregateReference;
25971
+ description: string;
25972
+ expiryDate?: string | undefined;
25973
+ id: string;
25974
+ keyReference?: (import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseKey | import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseExternalKey) | undefined;
25975
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseKind;
25976
+ meta: import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseMeta;
25977
+ volume?: number | undefined;
25978
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
25979
+ [x: string]: unknown;
25980
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
25981
+ [x: string]: unknown;
25982
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
25983
+ [x: string]: unknown;
25984
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
25985
+ [x: string]: unknown;
25986
+ }, 500, "application/json">>>;
25987
+ /** List Licenses belonging to a Project. */
25988
+ listLicensesForProject: (request: {
25989
+ projectId: string;
25990
+ headers?: {
25991
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
25992
+ "x-access-token"?: string | undefined;
25993
+ } | undefined;
25994
+ queryParameters?: {
25995
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
25996
+ limit?: number | undefined;
25997
+ skip?: number | undefined;
25998
+ page?: number | undefined;
25999
+ } | undefined;
26000
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
26001
+ headers?: Partial<{
26002
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26003
+ }>;
26004
+ } & {
26005
+ pathParameters: {
26006
+ projectId: string;
26007
+ };
26008
+ } & {
26009
+ queryParameters: {
26010
+ limit?: number | undefined;
26011
+ skip?: number | undefined;
26012
+ page?: number | undefined;
26013
+ } & Partial<{
26014
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26015
+ }>;
26016
+ } & {
26017
+ headers: {
26018
+ "x-access-token"?: string | undefined;
26019
+ } & Partial<{
26020
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26021
+ }>;
26022
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseLicense[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26023
+ [x: string]: unknown;
26024
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
26025
+ [x: string]: unknown;
26026
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
26027
+ [x: string]: unknown;
26028
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
26029
+ [x: string]: unknown;
26030
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
26031
+ headers?: Partial<{
26032
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26033
+ }>;
26034
+ } & {
26035
+ pathParameters: {
26036
+ projectId: string;
26037
+ };
26038
+ } & {
26039
+ queryParameters: {
26040
+ limit?: number | undefined;
26041
+ skip?: number | undefined;
26042
+ page?: number | undefined;
26043
+ } & Partial<{
26044
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26045
+ }>;
26046
+ } & {
26047
+ headers: {
26048
+ "x-access-token"?: string | undefined;
26049
+ } & Partial<{
26050
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26051
+ }>;
26052
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseLicense[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26053
+ [x: string]: unknown;
26054
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
26055
+ [x: string]: unknown;
26056
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
26057
+ [x: string]: unknown;
26058
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
26059
+ [x: string]: unknown;
26060
+ }, 500, "application/json">>>;
26061
+ /** rotate a License's key, i.e. revoke the old and generate a new one. */
26062
+ rotateLicenseKey: (request: {
26063
+ licenseId: string;
26064
+ data?: {
26065
+ externalKey?: string | undefined;
26066
+ } | undefined;
26067
+ headers?: {
26068
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
26069
+ "x-access-token"?: string | undefined;
26070
+ } | undefined;
26071
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
26072
+ data: {
26073
+ externalKey?: string | undefined;
26074
+ };
26075
+ } & {
26076
+ pathParameters: {
26077
+ licenseId: string;
26078
+ };
26079
+ } & {
26080
+ headers?: Partial<{
26081
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26082
+ }>;
26083
+ } & {
26084
+ headers: {
26085
+ "x-access-token"?: string | undefined;
26086
+ } & Partial<{
26087
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26088
+ }>;
26089
+ }, import("@mittwald/api-client-commons").Response<{
26090
+ keyReference?: (import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseKey | import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseExternalKey) | undefined;
26091
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26092
+ [x: string]: unknown;
26093
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
26094
+ [x: string]: unknown;
26095
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
26096
+ [x: string]: unknown;
26097
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
26098
+ [x: string]: unknown;
26099
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
26100
+ [x: string]: unknown;
26101
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
26102
+ [x: string]: unknown;
26103
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
26104
+ data: {
26105
+ externalKey?: string | undefined;
26106
+ };
26107
+ } & {
26108
+ pathParameters: {
26109
+ licenseId: string;
26110
+ };
26111
+ } & {
26112
+ headers?: Partial<{
26113
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26114
+ }>;
26115
+ } & {
26116
+ headers: {
26117
+ "x-access-token"?: string | undefined;
26118
+ } & Partial<{
26119
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26120
+ }>;
26121
+ }, import("@mittwald/api-client-commons").Response<{
26122
+ keyReference?: (import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseKey | import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseExternalKey) | undefined;
26123
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26124
+ [x: string]: unknown;
26125
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
26126
+ [x: string]: unknown;
26127
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
26128
+ [x: string]: unknown;
26129
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
26130
+ [x: string]: unknown;
26131
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
26132
+ [x: string]: unknown;
26133
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
26134
+ [x: string]: unknown;
26135
+ }, 500, "application/json">>>;
26136
+ /** Validate a License's key for a project. */
26137
+ validateLicenseKeyForProject: (request: {
26138
+ data: {
26139
+ key: string;
26140
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseKind;
26141
+ };
26142
+ projectId: string;
26143
+ headers?: {
26144
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
26145
+ "x-access-token"?: string | undefined;
26146
+ } | undefined;
26147
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
26148
+ data: {
26149
+ key: string;
26150
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseKind;
26151
+ };
26152
+ } & {
26153
+ pathParameters: {
26154
+ projectId: string;
26155
+ };
26156
+ } & {
26157
+ headers?: Partial<{
26158
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26159
+ }>;
26160
+ } & {
26161
+ headers: {
26162
+ "x-access-token"?: string | undefined;
26163
+ } & Partial<{
26164
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26165
+ }>;
26166
+ }, import("@mittwald/api-client-commons").Response<{
26167
+ valid: boolean;
26168
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26169
+ [x: string]: unknown;
26170
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
26171
+ [x: string]: unknown;
26172
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
26173
+ [x: string]: unknown;
26174
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
26175
+ [x: string]: unknown;
26176
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
26177
+ [x: string]: unknown;
26178
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
26179
+ [x: string]: unknown;
26180
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
26181
+ data: {
26182
+ key: string;
26183
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.LicenseKind;
26184
+ };
26185
+ } & {
26186
+ pathParameters: {
26187
+ projectId: string;
26188
+ };
26189
+ } & {
26190
+ headers?: Partial<{
26191
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26192
+ }>;
26193
+ } & {
26194
+ headers: {
26195
+ "x-access-token"?: string | undefined;
26196
+ } & Partial<{
26197
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26198
+ }>;
26199
+ }, import("@mittwald/api-client-commons").Response<{
26200
+ valid: boolean;
26201
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26202
+ [x: string]: unknown;
26203
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
26204
+ [x: string]: unknown;
26205
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
26206
+ [x: string]: unknown;
26207
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
26208
+ [x: string]: unknown;
26209
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
26210
+ [x: string]: unknown;
26211
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
26212
+ [x: string]: unknown;
26213
+ }, 500, "application/json">>>;
26214
+ };
25907
26215
  /** API endpoints that are not related to any specific API domain */
25908
26216
  readonly misc: {
25909
26217
  /** List valid time zones. */
@@ -273,8 +273,8 @@ export declare const cronjobUpdateCronjob: OpenAPIOperation<RequestType<Simplify
273
273
  export declare const cronjobGetExecutionAnalysis: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
274
274
  /** Get a CronjobExecution. */
275
275
  export declare const cronjobGetExecution: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
276
- /** Update a Cronjob's app id. */
277
- export declare const cronjobUpdateCronjobAppId: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
276
+ /** Update a Cronjob's app installation id. */
277
+ export declare const cronjobUpdateCronjobAppId: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
278
278
  /** Accept a CustomerInvite. */
279
279
  export declare const customerAcceptCustomerInvite: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
280
280
  /** List Invites belonging to a Customer. */
@@ -597,14 +597,14 @@ export declare const leadfyndrListUnlockedLeads: OpenAPIOperation<RequestType<Si
597
597
  export declare const leadfyndrReserveUnlockedLead: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
598
598
  /** Removes a reservation on a unlocked lead for the given customerId. */
599
599
  export declare const leadfyndrRemoveUnlockedLeadReservation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
600
- /** Get a Licence. */
601
- export declare const licenceGetLicence: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
602
- /** List Licences belonging to a Project. */
603
- export declare const licenceListLicencesForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicences.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicences.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicences.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicences.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicences.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicences.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicences.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicences.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicences.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
604
- /** rotate a Licence's key, i.e. revoke the old and generate a new one. */
605
- export declare const licenceRotateLicenceKey: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceIdActionsRotateLicenceKey.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceIdActionsRotateLicenceKey.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceIdActionsRotateLicenceKey.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceIdActionsRotateLicenceKey.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceIdActionsRotateLicenceKey.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceIdActionsRotateLicenceKey.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceIdActionsRotateLicenceKey.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceIdActionsRotateLicenceKey.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceIdActionsRotateLicenceKey.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceIdActionsRotateLicenceKey.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceIdActionsRotateLicenceKey.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicencesLicenceIdActionsRotateLicenceKey.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
606
- /** Validate a Licence's key for a project. */
607
- export declare const licenceValidateLicenceKeyForProject: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenceKey.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenceKey.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenceKey.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenceKey.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenceKey.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenceKey.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenceKey.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenceKey.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenceKey.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenceKey.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenceKey.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenceKey.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
600
+ /** Get a license. */
601
+ export declare const licenseGetLicense: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
602
+ /** List Licenses belonging to a Project. */
603
+ export declare const licenseListLicensesForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
604
+ /** rotate a License's key, i.e. revoke the old and generate a new one. */
605
+ export declare const licenseRotateLicenseKey: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateLicenseKey.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateLicenseKey.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateLicenseKey.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateLicenseKey.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateLicenseKey.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateLicenseKey.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateLicenseKey.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateLicenseKey.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateLicenseKey.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateLicenseKey.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateLicenseKey.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdActionsRotateLicenseKey.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
606
+ /** Validate a License's key for a project. */
607
+ export declare const licenseValidateLicenseKeyForProject: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActionsValidateLicenseKey.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
608
608
  /** List DeliveryBoxes belonging to a Project. */
609
609
  export declare const mailListDeliveryBoxes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
610
610
  /** Create a DeliveryBox. */
@@ -1190,21 +1190,21 @@ export declare namespace MittwaldAPIV2 {
1190
1190
  type RequestData = InferredRequestData<typeof descriptors.leadfyndrRemoveUnlockedLeadReservation>;
1191
1191
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrRemoveUnlockedLeadReservation, TStatus>;
1192
1192
  }
1193
- namespace LicenceGetLicence {
1194
- type RequestData = InferredRequestData<typeof descriptors.licenceGetLicence>;
1195
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenceGetLicence, TStatus>;
1193
+ namespace LicenseGetLicense {
1194
+ type RequestData = InferredRequestData<typeof descriptors.licenseGetLicense>;
1195
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseGetLicense, TStatus>;
1196
1196
  }
1197
- namespace LicenceListLicencesForProject {
1198
- type RequestData = InferredRequestData<typeof descriptors.licenceListLicencesForProject>;
1199
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenceListLicencesForProject, TStatus>;
1197
+ namespace LicenseListLicensesForProject {
1198
+ type RequestData = InferredRequestData<typeof descriptors.licenseListLicensesForProject>;
1199
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseListLicensesForProject, TStatus>;
1200
1200
  }
1201
- namespace LicenceRotateLicenceKey {
1202
- type RequestData = InferredRequestData<typeof descriptors.licenceRotateLicenceKey>;
1203
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenceRotateLicenceKey, TStatus>;
1201
+ namespace LicenseRotateLicenseKey {
1202
+ type RequestData = InferredRequestData<typeof descriptors.licenseRotateLicenseKey>;
1203
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseRotateLicenseKey, TStatus>;
1204
1204
  }
1205
- namespace LicenceValidateLicenceKeyForProject {
1206
- type RequestData = InferredRequestData<typeof descriptors.licenceValidateLicenceKeyForProject>;
1207
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenceValidateLicenceKeyForProject, TStatus>;
1205
+ namespace LicenseValidateLicenseKeyForProject {
1206
+ type RequestData = InferredRequestData<typeof descriptors.licenseValidateLicenseKeyForProject>;
1207
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseValidateLicenseKeyForProject, TStatus>;
1208
1208
  }
1209
1209
  namespace MailListDeliveryBoxes {
1210
1210
  type RequestData = InferredRequestData<typeof descriptors.mailListDeliveryBoxes>;
@@ -3007,7 +3007,12 @@ export declare namespace MittwaldAPIV2 {
3007
3007
  type CronjobConcurrencyPolicy = "allow" | "forbid" | "replace";
3008
3008
  interface CronjobCronjob {
3009
3009
  active: boolean;
3010
+ /**
3011
+ * @deprecated
3012
+ * DEPRECATED: Use 'appInstallationId' instead. This field will be removed in a future version.
3013
+ */
3010
3014
  appId: string;
3015
+ appInstallationId?: string;
3011
3016
  concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
3012
3017
  createdAt: string;
3013
3018
  description: string;
@@ -3055,7 +3060,12 @@ export declare namespace MittwaldAPIV2 {
3055
3060
  type CronjobCronjobExecutionSortOrder = "oldestFirst" | "newestFirst" | "slowestFirst" | "fastestFirst";
3056
3061
  interface CronjobCronjobRequest {
3057
3062
  active: boolean;
3063
+ /**
3064
+ * @deprecated
3065
+ * DEPRECATED: Use 'appInstallationId' instead. This field will be removed in a future version.
3066
+ */
3058
3067
  appId: string;
3068
+ appInstallationId?: string;
3059
3069
  concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
3060
3070
  description: string;
3061
3071
  destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
@@ -4381,36 +4391,36 @@ export declare namespace MittwaldAPIV2 {
4381
4391
  interface LeadfyndrUser {
4382
4392
  userId: string;
4383
4393
  }
4384
- interface LicenceAggregateReference {
4394
+ interface LicenseAggregateReference {
4385
4395
  aggregate: "project";
4386
4396
  domain: "project";
4387
4397
  id: string;
4388
4398
  }
4389
- interface LicenceAppVersionMeta {
4399
+ interface LicenseAppVersionMeta {
4390
4400
  description: string;
4391
4401
  }
4392
- interface LicenceExternalKey {
4402
+ interface LicenseExternalKey {
4393
4403
  externalKey: string;
4394
4404
  }
4395
- interface LicenceKey {
4405
+ interface LicenseKey {
4396
4406
  key: string;
4397
4407
  }
4398
- interface LicenceKeyResponse {
4399
- keyReference?: MittwaldAPIV2.Components.Schemas.LicenceKey | MittwaldAPIV2.Components.Schemas.LicenceExternalKey;
4408
+ interface LicenseKeyResponse {
4409
+ keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
4400
4410
  }
4401
- type LicenceKind = "typo3-elts";
4402
- interface LicenceLicence {
4403
- aggregateReference: MittwaldAPIV2.Components.Schemas.LicenceAggregateReference;
4411
+ type LicenseKind = "typo3-elts";
4412
+ interface LicenseLicense {
4413
+ aggregateReference: MittwaldAPIV2.Components.Schemas.LicenseAggregateReference;
4404
4414
  description: string;
4405
4415
  expiryDate?: string;
4406
4416
  id: string;
4407
- keyReference?: MittwaldAPIV2.Components.Schemas.LicenceKey | MittwaldAPIV2.Components.Schemas.LicenceExternalKey;
4408
- kind: MittwaldAPIV2.Components.Schemas.LicenceKind;
4409
- meta: MittwaldAPIV2.Components.Schemas.LicenceMeta;
4417
+ keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
4418
+ kind: MittwaldAPIV2.Components.Schemas.LicenseKind;
4419
+ meta: MittwaldAPIV2.Components.Schemas.LicenseMeta;
4410
4420
  volume?: number;
4411
4421
  }
4412
- interface LicenceMeta {
4413
- appVersion?: MittwaldAPIV2.Components.Schemas.LicenceAppVersionMeta;
4422
+ interface LicenseMeta {
4423
+ appVersion?: MittwaldAPIV2.Components.Schemas.LicenseAppVersionMeta;
4414
4424
  }
4415
4425
  interface MailCreateMailAddress {
4416
4426
  address: string;
@@ -4957,6 +4967,21 @@ export declare namespace MittwaldAPIV2 {
4957
4967
  reservationLimit: number;
4958
4968
  unlockLimit: number;
4959
4969
  }
4970
+ type OrderLicenseOrderPreview = {
4971
+ licenseType: "typo3";
4972
+ /**
4973
+ * The major version for which a license should be purchased.
4974
+ */
4975
+ majorVersion: number;
4976
+ };
4977
+ type OrderLicenseOrder = {
4978
+ licenseType: "typo3";
4979
+ /**
4980
+ * The major version for which a license should be purchased.
4981
+ */
4982
+ majorVersion: number;
4983
+ projectId: string;
4984
+ };
4960
4985
  interface OrderMachineTypeSpec {
4961
4986
  machineType?: string;
4962
4987
  }
@@ -5006,6 +5031,9 @@ export declare namespace MittwaldAPIV2 {
5006
5031
  interface OrderLeadFyndrOrderPreviewResponse {
5007
5032
  totalPrice: number;
5008
5033
  }
5034
+ interface OrderLicenseOrderPreviewResponse {
5035
+ totalPrice: number;
5036
+ }
5009
5037
  interface OrderDomainOrderPreviewResponse {
5010
5038
  /**
5011
5039
  * Contract duration in months.
@@ -5770,30 +5798,6 @@ export declare namespace MittwaldAPIV2 {
5770
5798
  }
5771
5799
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
5772
5800
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
5773
- /**
5774
- * Software Licences
5775
- */
5776
- type OrderLicenceOrder = {
5777
- licenceType: "typo3";
5778
- /**
5779
- * The mayor version for which a licence should be purchased.
5780
- */
5781
- mayorVersion: number;
5782
- projectId: string;
5783
- };
5784
- /**
5785
- * Software Licences
5786
- */
5787
- type OrderLicenceOrderPreview = {
5788
- licenceType: "typo3";
5789
- /**
5790
- * The mayor version for which a licence should be purchased.
5791
- */
5792
- mayorVersion: number;
5793
- };
5794
- interface OrderLicenceOrderPreviewResponse {
5795
- totalPrice: number;
5796
- }
5797
5801
  interface CommonsAddress {
5798
5802
  street: string;
5799
5803
  houseNumber: string;
@@ -12991,14 +12995,19 @@ export declare namespace MittwaldAPIV2 {
12991
12995
  }
12992
12996
  }
12993
12997
  }
12994
- namespace V2CronjobsCronjobIdAppId {
12998
+ namespace V2CronjobsCronjobIdAppInstallationId {
12995
12999
  namespace Patch {
12996
13000
  namespace Parameters {
12997
13001
  type Path = {
12998
13002
  cronjobId: string;
12999
13003
  };
13000
13004
  interface RequestBody {
13005
+ /**
13006
+ * @deprecated
13007
+ * DEPRECATED: Use 'appInstallationId' instead. This field will be removed in a future version.
13008
+ */
13001
13009
  appId: string;
13010
+ appInstallationId?: string;
13002
13011
  }
13003
13012
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
13004
13013
  type Query = {};
@@ -21335,11 +21344,11 @@ export declare namespace MittwaldAPIV2 {
21335
21344
  }
21336
21345
  }
21337
21346
  }
21338
- namespace V2LicencesLicenceId {
21347
+ namespace V2LicensesLicenseId {
21339
21348
  namespace Get {
21340
21349
  namespace Parameters {
21341
21350
  type Path = {
21342
- licenceId: string;
21351
+ licenseId: string;
21343
21352
  };
21344
21353
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
21345
21354
  type Query = {};
@@ -21347,7 +21356,7 @@ export declare namespace MittwaldAPIV2 {
21347
21356
  namespace Responses {
21348
21357
  namespace $200 {
21349
21358
  namespace Content {
21350
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenceLicence;
21359
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenseLicense;
21351
21360
  }
21352
21361
  }
21353
21362
  namespace $400 {
@@ -21388,7 +21397,7 @@ export declare namespace MittwaldAPIV2 {
21388
21397
  }
21389
21398
  }
21390
21399
  }
21391
- namespace V2ProjectsProjectIdLicences {
21400
+ namespace V2ProjectsProjectIdLicenses {
21392
21401
  namespace Get {
21393
21402
  namespace Parameters {
21394
21403
  type Path = {
@@ -21404,7 +21413,7 @@ export declare namespace MittwaldAPIV2 {
21404
21413
  namespace Responses {
21405
21414
  namespace $200 {
21406
21415
  namespace Content {
21407
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenceLicence[];
21416
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenseLicense[];
21408
21417
  }
21409
21418
  }
21410
21419
  namespace $400 {
@@ -21445,11 +21454,11 @@ export declare namespace MittwaldAPIV2 {
21445
21454
  }
21446
21455
  }
21447
21456
  }
21448
- namespace V2LicencesLicenceIdActionsRotateLicenceKey {
21457
+ namespace V2LicensesLicenseIdActionsRotateLicenseKey {
21449
21458
  namespace Post {
21450
21459
  namespace Parameters {
21451
21460
  type Path = {
21452
- licenceId: string;
21461
+ licenseId: string;
21453
21462
  };
21454
21463
  /**
21455
21464
  * Optional reference to a file containing the new key if it was not procured via mittwald.
@@ -21463,7 +21472,7 @@ export declare namespace MittwaldAPIV2 {
21463
21472
  namespace Responses {
21464
21473
  namespace $200 {
21465
21474
  namespace Content {
21466
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenceKeyResponse;
21475
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenseKeyResponse;
21467
21476
  }
21468
21477
  }
21469
21478
  namespace $400 {
@@ -21518,18 +21527,18 @@ export declare namespace MittwaldAPIV2 {
21518
21527
  }
21519
21528
  }
21520
21529
  }
21521
- namespace V2ProjectsProjectIdActionsValidateLicenceKey {
21530
+ namespace V2ProjectsProjectIdActionsValidateLicenseKey {
21522
21531
  namespace Post {
21523
21532
  namespace Parameters {
21524
21533
  type Path = {
21525
21534
  projectId: string;
21526
21535
  };
21527
21536
  /**
21528
- * The Licence key to validate.
21537
+ * The License key to validate.
21529
21538
  */
21530
21539
  interface RequestBody {
21531
21540
  key: string;
21532
- kind: MittwaldAPIV2.Components.Schemas.LicenceKind;
21541
+ kind: MittwaldAPIV2.Components.Schemas.LicenseKind;
21533
21542
  }
21534
21543
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
21535
21544
  type Query = {};
@@ -23318,8 +23327,8 @@ export declare namespace MittwaldAPIV2 {
23318
23327
  namespace Parameters {
23319
23328
  type Path = {};
23320
23329
  interface RequestBody {
23321
- orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | MittwaldAPIV2.Components.Schemas.OrderServerOrder | MittwaldAPIV2.Components.Schemas.OrderDomainOrder | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder | MittwaldAPIV2.Components.Schemas.OrderLicenceOrder;
23322
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "licence";
23330
+ orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | MittwaldAPIV2.Components.Schemas.OrderServerOrder | MittwaldAPIV2.Components.Schemas.OrderDomainOrder | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder | MittwaldAPIV2.Components.Schemas.OrderLicenseOrder;
23331
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license";
23323
23332
  }
23324
23333
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
23325
23334
  type Query = {};
@@ -23521,8 +23530,8 @@ export declare namespace MittwaldAPIV2 {
23521
23530
  namespace Parameters {
23522
23531
  type Path = {};
23523
23532
  interface RequestBody {
23524
- orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLicenceOrderPreview;
23525
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "licence";
23533
+ orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLicenseOrderPreview;
23534
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license";
23526
23535
  }
23527
23536
  type Header = {};
23528
23537
  type Query = {};
@@ -23530,7 +23539,7 @@ export declare namespace MittwaldAPIV2 {
23530
23539
  namespace Responses {
23531
23540
  namespace $200 {
23532
23541
  namespace Content {
23533
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLicenceOrderPreviewResponse;
23542
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLicenseOrderPreviewResponse;
23534
23543
  }
23535
23544
  }
23536
23545
  namespace $400 {
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '0.0.0-development-f31be48-20260120';
1
+ export declare const MittwaldAPIClientVersion = '0.0.0-development-4ad1a23-20260120';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "0.0.0-development-49bfc51-20260120",
3
+ "version": "0.0.0-development-4248bfc-20260120",
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-49bfc51-20260120",
49
+ "@mittwald/api-client-commons": "^0.0.0-development-4248bfc-20260120",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^0.0.0-development-49bfc51-20260120",
53
+ "@mittwald/api-code-generator": "^0.0.0-development-4248bfc-20260120",
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": "042ca89d14d5fb598c73287f762043c1d93b6575"
83
+ "gitHead": "cb63bc3a1266cc4740f3317a27037226d925e2b5"
84
84
  }