@mittwald/api-client 4.414.0 → 4.415.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.
- package/dist/esm/generated/v2/client-react.js +6 -6
- package/dist/esm/generated/v2/client.js +8 -8
- package/dist/esm/generated/v2/descriptors.js +24 -24
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +26 -26
- package/dist/types/generated/v2/client.d.ts +162 -162
- package/dist/types/generated/v2/descriptors.d.ts +8 -8
- package/dist/types/generated/v2/types.d.ts +347 -331
- package/dist/types/generated/v3-next/types.d.ts +17 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -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 {
|
|
@@ -7008,6 +7010,19 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
7008
7010
|
appInstallation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
7009
7011
|
};
|
|
7010
7012
|
}
|
|
7013
|
+
/**
|
|
7014
|
+
* 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.
|
|
7015
|
+
*/
|
|
7016
|
+
interface DeMittwaldDomainmigrationOwnerContactIssue {
|
|
7017
|
+
/**
|
|
7018
|
+
* The affected owner contact field, e.g. street, name, zip.
|
|
7019
|
+
*/
|
|
7020
|
+
field: string;
|
|
7021
|
+
/**
|
|
7022
|
+
* 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).
|
|
7023
|
+
*/
|
|
7024
|
+
schemaTitle?: string;
|
|
7025
|
+
}
|
|
7011
7026
|
interface DeMittwaldCommonsAddress {
|
|
7012
7027
|
street: string;
|
|
7013
7028
|
houseNumber: string;
|
|
@@ -31628,5 +31643,6 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31628
31643
|
}
|
|
31629
31644
|
}
|
|
31630
31645
|
}
|
|
31646
|
+
namespace V3NextContainerTemplatesTemplateIdIcon { }
|
|
31631
31647
|
}
|
|
31632
31648
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.414.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.415.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.
|
|
75
|
+
"@mittwald/api-client-commons": "^4.415.0",
|
|
76
76
|
"browser-or-node": "^3.0.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@mittwald/api-code-generator": "^4.
|
|
79
|
+
"@mittwald/api-code-generator": "^4.415.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": "
|
|
109
|
+
"gitHead": "0ede486ea82c679fac8d617dadf1ed70c2a19b49"
|
|
110
110
|
}
|