@mittwald/api-client 4.414.0 → 4.416.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.413.0';
1
+ export const MittwaldAPIClientVersion = '4.415.0';
@@ -1405,6 +1405,8 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1405
1405
  published: boolean;
1406
1406
  requestedChanges?: {
1407
1407
  context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
1408
+ purgeScopes?: boolean;
1409
+ purgeWebhookUrls?: boolean;
1408
1410
  scopes?: string[];
1409
1411
  webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
1410
1412
  } | undefined;
@@ -10487,6 +10487,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10487
10487
  published: boolean;
10488
10488
  requestedChanges?: {
10489
10489
  context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
10490
+ purgeScopes?: boolean;
10491
+ purgeWebhookUrls?: boolean;
10490
10492
  scopes?: string[];
10491
10493
  webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
10492
10494
  } | undefined;
@@ -10547,6 +10549,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10547
10549
  published: boolean;
10548
10550
  requestedChanges?: {
10549
10551
  context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
10552
+ purgeScopes?: boolean;
10553
+ purgeWebhookUrls?: boolean;
10550
10554
  scopes?: string[];
10551
10555
  webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
10552
10556
  } | undefined;
@@ -10748,6 +10752,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10748
10752
  published: boolean;
10749
10753
  requestedChanges?: {
10750
10754
  context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
10755
+ purgeScopes?: boolean;
10756
+ purgeWebhookUrls?: boolean;
10751
10757
  scopes?: string[];
10752
10758
  webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
10753
10759
  } | undefined;
@@ -10829,6 +10835,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10829
10835
  published: boolean;
10830
10836
  requestedChanges?: {
10831
10837
  context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
10838
+ purgeScopes?: boolean;
10839
+ purgeWebhookUrls?: boolean;
10832
10840
  scopes?: string[];
10833
10841
  webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
10834
10842
  } | undefined;
@@ -3993,8 +3993,9 @@ export declare namespace MittwaldAPIV2 {
3993
3993
  * * `insufficientState`: the COAB data is incomplete (e.g. missing registrar, price or owner) or the domain is still reserved at the registry.
3994
3994
  * * `contractDateOutOfRange`: the COAB contract's next-period date is in the past or more than two years in the future.
3995
3995
  * * `invalidDomainName`: the COAB domain name does not match the `idn-naked-domain` format we accept.
3996
+ * * `ownerContactInvalid`: the domain's owner contact data (Inhaberdaten) failed validation at the registry/domain-service (invalid characters, or a TLD-specific contact-schema rule such as no consecutive whitespaces), so the migration is rejected. `ownerContactIssues` on the domain carries the affected field(s)/rule(s).
3996
3997
  */
3997
- type DomainmigrationDomainNotMigratableReason = "needEpp" | "tldNotSupported" | "tldNotMigratable" | "premiumDomain" | "registrarNotSupported" | "notOrderable" | "insufficientState" | "contractDateOutOfRange" | "invalidDomainName";
3998
+ type DomainmigrationDomainNotMigratableReason = "needEpp" | "tldNotSupported" | "tldNotMigratable" | "premiumDomain" | "registrarNotSupported" | "notOrderable" | "insufficientState" | "contractDateOutOfRange" | "invalidDomainName" | "ownerContactInvalid";
3998
3999
  /**
3999
4000
  * A non-migratable-domain failure: one selected domain cannot be migrated. type is always domainNotMigratable, path is the affected domain, and context.reason carries the typed reason code.
4000
4001
  */
@@ -4036,6 +4037,7 @@ export declare namespace MittwaldAPIV2 {
4036
4037
  hostname: string;
4037
4038
  issues: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainNotMigratableReason[];
4038
4039
  migratable: false;
4040
+ ownerContactIssues: MittwaldAPIV2.Components.Schemas.DomainmigrationOwnerContactIssue[];
4039
4041
  warnings?: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarning[];
4040
4042
  }
4041
4043
  interface DomainmigrationSubdomain {
@@ -4431,6 +4433,8 @@ export declare namespace MittwaldAPIV2 {
4431
4433
  published: boolean;
4432
4434
  requestedChanges?: {
4433
4435
  context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
4436
+ purgeScopes?: boolean;
4437
+ purgeWebhookUrls?: boolean;
4434
4438
  scopes?: string[];
4435
4439
  webhookUrls?: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
4436
4440
  };
@@ -7004,6 +7008,19 @@ export declare namespace MittwaldAPIV2 {
7004
7008
  appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
7005
7009
  };
7006
7010
  }
7011
+ /**
7012
+ * One invalid owner contact field behind an ownerContactInvalid issue. A consumer can show a generic 'owner contact invalid' message and append a field-/rule-specific hint via translation.
7013
+ */
7014
+ interface DomainmigrationOwnerContactIssue {
7015
+ /**
7016
+ * The affected owner contact field, e.g. street, name, zip.
7017
+ */
7018
+ field: string;
7019
+ /**
7020
+ * Stable title of the violated contact-schema rule - a translation key for consumers. Absent for the general character validation, which has no such rule title (hence optional).
7021
+ */
7022
+ schemaTitle?: string;
7023
+ }
7007
7024
  interface CommonsAddress {
7008
7025
  street: string;
7009
7026
  houseNumber: string;
@@ -31704,5 +31721,6 @@ export declare namespace MittwaldAPIV2 {
31704
31721
  }
31705
31722
  }
31706
31723
  }
31724
+ namespace V2ContainerTemplatesTemplateIdIcon { }
31707
31725
  }
31708
31726
  }
@@ -1405,6 +1405,8 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV3NextClient) => {
1405
1405
  published: boolean;
1406
1406
  requestedChanges?: {
1407
1407
  context?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceContext;
1408
+ purgeScopes?: boolean;
1409
+ purgeWebhookUrls?: boolean;
1408
1410
  scopes?: string[];
1409
1411
  webhookUrls?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceWebhookUrls | {};
1410
1412
  } | undefined;
@@ -10487,6 +10487,8 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
10487
10487
  published: boolean;
10488
10488
  requestedChanges?: {
10489
10489
  context?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceContext;
10490
+ purgeScopes?: boolean;
10491
+ purgeWebhookUrls?: boolean;
10490
10492
  scopes?: string[];
10491
10493
  webhookUrls?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceWebhookUrls | {};
10492
10494
  } | undefined;
@@ -10547,6 +10549,8 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
10547
10549
  published: boolean;
10548
10550
  requestedChanges?: {
10549
10551
  context?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceContext;
10552
+ purgeScopes?: boolean;
10553
+ purgeWebhookUrls?: boolean;
10550
10554
  scopes?: string[];
10551
10555
  webhookUrls?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceWebhookUrls | {};
10552
10556
  } | undefined;
@@ -10748,6 +10752,8 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
10748
10752
  published: boolean;
10749
10753
  requestedChanges?: {
10750
10754
  context?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceContext;
10755
+ purgeScopes?: boolean;
10756
+ purgeWebhookUrls?: boolean;
10751
10757
  scopes?: string[];
10752
10758
  webhookUrls?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceWebhookUrls | {};
10753
10759
  } | undefined;
@@ -10829,6 +10835,8 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
10829
10835
  published: boolean;
10830
10836
  requestedChanges?: {
10831
10837
  context?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceContext;
10838
+ purgeScopes?: boolean;
10839
+ purgeWebhookUrls?: boolean;
10832
10840
  scopes?: string[];
10833
10841
  webhookUrls?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceWebhookUrls | {};
10834
10842
  } | undefined;
@@ -3993,8 +3993,9 @@ export declare namespace MittwaldAPIV3Next {
3993
3993
  * * `insufficientState`: the COAB data is incomplete (e.g. missing registrar, price or owner) or the domain is still reserved at the registry.
3994
3994
  * * `contractDateOutOfRange`: the COAB contract's next-period date is in the past or more than two years in the future.
3995
3995
  * * `invalidDomainName`: the COAB domain name does not match the `idn-naked-domain` format we accept.
3996
+ * * `ownerContactInvalid`: the domain's owner contact data (Inhaberdaten) failed validation at the registry/domain-service (invalid characters, or a TLD-specific contact-schema rule such as no consecutive whitespaces), so the migration is rejected. `ownerContactIssues` on the domain carries the affected field(s)/rule(s).
3996
3997
  */
3997
- type DeMittwaldDomainmigrationDomainNotMigratableReason = "needEpp" | "tldNotSupported" | "tldNotMigratable" | "premiumDomain" | "registrarNotSupported" | "notOrderable" | "insufficientState" | "contractDateOutOfRange" | "invalidDomainName";
3998
+ type DeMittwaldDomainmigrationDomainNotMigratableReason = "needEpp" | "tldNotSupported" | "tldNotMigratable" | "premiumDomain" | "registrarNotSupported" | "notOrderable" | "insufficientState" | "contractDateOutOfRange" | "invalidDomainName" | "ownerContactInvalid";
3998
3999
  /**
3999
4000
  * A non-migratable-domain failure: one selected domain cannot be migrated. type is always domainNotMigratable, path is the affected domain, and context.reason carries the typed reason code.
4000
4001
  */
@@ -4036,6 +4037,7 @@ export declare namespace MittwaldAPIV3Next {
4036
4037
  hostname: string;
4037
4038
  issues: MittwaldAPIV3Next.Components.Schemas.DeMittwaldDomainmigrationDomainNotMigratableReason[];
4038
4039
  migratable: false;
4040
+ ownerContactIssues: MittwaldAPIV3Next.Components.Schemas.DeMittwaldDomainmigrationOwnerContactIssue[];
4039
4041
  warnings?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldDomainmigrationDomainMigrationWarning[];
4040
4042
  }
4041
4043
  interface DeMittwaldDomainmigrationSubdomain {
@@ -4433,6 +4435,8 @@ export declare namespace MittwaldAPIV3Next {
4433
4435
  published: boolean;
4434
4436
  requestedChanges?: {
4435
4437
  context?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceContext;
4438
+ purgeScopes?: boolean;
4439
+ purgeWebhookUrls?: boolean;
4436
4440
  scopes?: string[];
4437
4441
  webhookUrls?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceWebhookUrls | {};
4438
4442
  };
@@ -6944,15 +6948,15 @@ export declare namespace MittwaldAPIV3Next {
6944
6948
  domain: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
6945
6949
  };
6946
6950
  }
6947
- interface DeMittwaldContainerTemplateStatsListResponse {
6948
- category?: string;
6949
- templates?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateStatsResponse[];
6950
- }
6951
6951
  interface DeMittwaldContainerTemplateStatsResponse {
6952
6952
  id: string;
6953
6953
  installations: number;
6954
6954
  installations30Days: number;
6955
6955
  }
6956
+ interface DeMittwaldContainerTemplateStatsListResponse {
6957
+ category?: string;
6958
+ templates?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateStatsResponse[];
6959
+ }
6956
6960
  interface DeMittwaldMailsystemRateLimit {
6957
6961
  id: string;
6958
6962
  rateLimit: number;
@@ -7008,6 +7012,19 @@ export declare namespace MittwaldAPIV3Next {
7008
7012
  appInstallation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
7009
7013
  };
7010
7014
  }
7015
+ /**
7016
+ * One invalid owner contact field behind an ownerContactInvalid issue. A consumer can show a generic 'owner contact invalid' message and append a field-/rule-specific hint via translation.
7017
+ */
7018
+ interface DeMittwaldDomainmigrationOwnerContactIssue {
7019
+ /**
7020
+ * The affected owner contact field, e.g. street, name, zip.
7021
+ */
7022
+ field: string;
7023
+ /**
7024
+ * Stable title of the violated contact-schema rule - a translation key for consumers. Absent for the general character validation, which has no such rule title (hence optional).
7025
+ */
7026
+ schemaTitle?: string;
7027
+ }
7011
7028
  interface DeMittwaldCommonsAddress {
7012
7029
  street: string;
7013
7030
  houseNumber: string;
@@ -31628,5 +31645,6 @@ export declare namespace MittwaldAPIV3Next {
31628
31645
  }
31629
31646
  }
31630
31647
  }
31648
+ namespace V3NextContainerTemplatesTemplateIdIcon { }
31631
31649
  }
31632
31650
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.413.0';
1
+ export declare const MittwaldAPIClientVersion = '4.415.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.414.0",
3
+ "version": "4.416.0",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -72,11 +72,11 @@
72
72
  "test:compile": "run tsc --noEmit"
73
73
  },
74
74
  "dependencies": {
75
- "@mittwald/api-client-commons": "^4.414.0",
75
+ "@mittwald/api-client-commons": "^4.416.0",
76
76
  "browser-or-node": "^3.0.0"
77
77
  },
78
78
  "devDependencies": {
79
- "@mittwald/api-code-generator": "^4.414.0",
79
+ "@mittwald/api-code-generator": "^4.416.0",
80
80
  "@mittwald/react-use-promise": "^2.6.2",
81
81
  "@types/node": "^22.18.11",
82
82
  "@types/react": "^18.3.26",
@@ -106,5 +106,5 @@
106
106
  "optional": true
107
107
  }
108
108
  },
109
- "gitHead": "7a13fbc8cff620ed1081628a6d77cbd1aed40a23"
109
+ "gitHead": "193cc023b99fe7cdd5599db311a673e0c694d08b"
110
110
  }