@@ -1752,7 +1752,12 @@ Adds (registers) a new DNSSEC DS record for a domain.
17521752``` php
17531753$client->dnsseCs->createDnssec(
17541754 'domainName',
1755- new CreateDnssecBody([]),
1755+ new CreateDnssecBody([
1756+ 'algorithm' => 1,
1757+ 'digest' => 'digest',
1758+ 'digestType' => 1,
1759+ 'keyTag' => 1,
1760+ ]),
17561761);
17571762```
17581763</dd >
@@ -1776,39 +1781,31 @@ $client->dnsseCs->createDnssec(
17761781<dl >
17771782<dd >
17781783
1779- ** $algorithm:** ` ?int `
1780-
1781- </dd >
1782- </dl >
1783-
1784- <dl >
1785- <dd >
1786-
1787- ** $digest:** ` ?string ` — Digest is a digest of the DNSKEY RR that is registered with the registry.
1784+ ** $algorithm:** ` int `
17881785
17891786</dd >
17901787</dl >
17911788
17921789<dl >
17931790<dd >
17941791
1795- ** $createDnssecBodyDomainName :** ` ? string` — The name of the domain .
1792+ ** $digest :** ` string ` — Digest is a digest of the DNSKEY RR that is registered with the registry .
17961793
17971794</dd >
17981795</dl >
17991796
18001797<dl >
18011798<dd >
18021799
1803- ** $digestType:** ` ? int`
1800+ ** $digestType:** ` int `
18041801
18051802</dd >
18061803</dl >
18071804
18081805<dl >
18091806<dd >
18101807
1811- ** $keyTag:** ` ? int`
1808+ ** $keyTag:** ` int `
18121809
18131810</dd >
18141811</dl >
@@ -2866,10 +2863,10 @@ Sets up a new URL forwarding (redirect) for a domain or subdomain. If this is th
28662863$client->urlForwardings->createUrlForwarding(
28672864 'example.com',
28682865 new CreateUrlForwardingRequest([
2869- 'body' => new UrlForwarding ([
2866+ 'body' => new UrlForwardingInput ([
28702867 'forwardsTo' => 'https://destination-site.com',
28712868 'host' => 'www',
2872- 'type' => UrlForwardingType ::Masked->value,
2869+ 'type' => UrlForwardingInputType ::Masked->value,
28732870 ]),
28742871 ]),
28752872);
@@ -2895,7 +2892,7 @@ $client->urlForwardings->createUrlForwarding(
28952892<dl >
28962893<dd >
28972894
2898- ** $request:** ` UrlForwarding `
2895+ ** $request:** ` UrlForwardingInput `
28992896
29002897</dd >
29012898</dl >
@@ -3003,9 +3000,10 @@ $client->urlForwardings->updateUrlForwarding(
30033000 'example.com',
30043001 'www.example.org',
30053002 new UpdateUrlForwardingRequest([
3006- 'body' => new UpdateUrlForwardingBody ([
3003+ 'body' => new UrlForwardingInput ([
30073004 'forwardsTo' => 'https://destination-site.com',
3008- 'type' => UrlForwardingType::Masked->value,
3005+ 'host' => 'www',
3006+ 'type' => UrlForwardingInputType::Masked->value,
30093007 ]),
30103008 ]),
30113009);
@@ -3039,7 +3037,7 @@ $client->urlForwardings->updateUrlForwarding(
30393037<dl >
30403038<dd >
30413039
3042- ** $request:** ` UpdateUrlForwardingBody `
3040+ ** $request:** ` UrlForwardingInput `
30433041
30443042</dd >
30453043</dl >
@@ -3353,9 +3351,10 @@ $client->urlForwardings->updateUrlForwardingById(
33533351 'example.com',
33543352 12345,
33553353 new UpdateUrlForwardingByIdRequest([
3356- 'body' => new UpdateUrlForwardingBody ([
3354+ 'body' => new UrlForwardingInput ([
33573355 'forwardsTo' => 'https://destination-site.com',
3358- 'type' => UrlForwardingType::Masked->value,
3356+ 'host' => 'www',
3357+ 'type' => UrlForwardingInputType::Masked->value,
33593358 ]),
33603359 ]),
33613360);
@@ -3389,7 +3388,7 @@ $client->urlForwardings->updateUrlForwardingById(
33893388<dl >
33903389<dd >
33913390
3392- ** $request:** ` UpdateUrlForwardingBody `
3391+ ** $request:** ` UrlForwardingInput `
33933392
33943393</dd >
33953394</dl >
@@ -3819,9 +3818,11 @@ Supported webhook event names:
38193818- ` domain.lock.status_change ` – domain lock added or removed.
38203819- ` domain.transfer.status_change ` – domain transfer IN to name.com; status updates while name.com is the gaining registrar.
38213820- ` domain.transfer_out.status_change ` – domain transfer OUT from name.com to another registrar; fires when the domain is removed from the account.
3822- - ` domain.transfer.internal_in ` - name.com domain transfers in to the subscribing account.
3821+ - ` domain.transfer.internal_in ` - name.com domain transfers in to the subscribing account via internal transfer.
3822+ - ` domain.transfer.internal_out ` - name.com domain transfers out of the subscribing account via internal transfer.
38233823- ` contact.verification.status_change ` - contact verification status changes (verified or unverified).
38243824- ` domain.registry.rejection ` – domain ** create** failed after asynchronous registry processing (uncommon; most creates succeed at request time).
3825+ - ` domain.expiration ` – domain has expired and entered the post-expiry grace period. This is informational only.
38253826</dd >
38263827</dl >
38273828</dd >
0 commit comments