@opusdns/api 1.186.0 → 1.188.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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "@opusdns/api-spec-ts-generator": "^1.6.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.186.0",
6
+ "version": "1.188.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
package/src/openapi.yaml CHANGED
@@ -17057,7 +17057,7 @@ info:
17057
17057
  \n\n"
17058
17058
  summary: OpusDNS - your gateway to a seamless domain management experience.
17059
17059
  title: OpusDNS API
17060
- version: 2026-09-17-172444
17060
+ version: 2026-09-20-175357
17061
17061
  x-logo:
17062
17062
  altText: OpusDNS API Reference
17063
17063
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -27068,7 +27068,17 @@ paths:
27068
27068
  will be updated; all other fields will remain unchanged. <br>
27069
27069
 
27070
27070
  Providing `clientTransferProhibited` as a status will set the `transfer_lock`
27071
- property'
27071
+ property. <br>
27072
+
27073
+ `transfer_lock` is read-only and cannot be set here: send it in the request
27074
+ body and it is
27075
+
27076
+ ignored, leaving the lock unchanged. Use `status_changes` to release a lock
27077
+ before a
27078
+
27079
+ transfer out, for example
27080
+
27081
+ `{"status_changes": {"remove": ["clientTransferProhibited"]}}`.'
27072
27082
  operationId: update_domain_v1_domains__domain_reference__patch
27073
27083
  parameters:
27074
27084
  - in: path
@@ -30000,10 +30010,18 @@ paths:
30000
30010
  idempotency_key: scheduled-create-001
30001
30011
  payload:
30002
30012
  contacts:
30003
- admin: contact_01kc433yvre99af2wasxhtpswf
30004
- billing: contact_01kc433yvre99af2wasxhtpswf
30005
- registrant: contact_01kc433yvre99af2wasxhtpswf
30006
- tech: contact_01kc433yvre99af2wasxhtpswf
30013
+ admin:
30014
+ - attributes: {}
30015
+ contact_id: contact_01kc433yvre99af2wasxhtpswf
30016
+ billing:
30017
+ - attributes: {}
30018
+ contact_id: contact_01kc433yvre99af2wasxhtpswf
30019
+ registrant:
30020
+ - attributes: {}
30021
+ contact_id: contact_01kc433yvre99af2wasxhtpswf
30022
+ tech:
30023
+ - attributes: {}
30024
+ contact_id: contact_01kc433yvre99af2wasxhtpswf
30007
30025
  create_zone: false
30008
30026
  name: scheduled-example.com
30009
30027
  period:
@@ -30040,10 +30058,18 @@ paths:
30040
30058
  idempotency_key: create-example-com-001
30041
30059
  payload:
30042
30060
  contacts:
30043
- admin: contact_01kc433yvre99af2wasxhtpswf
30044
- billing: contact_01kc433yvre99af2wasxhtpswf
30045
- registrant: contact_01kc433yvre99af2wasxhtpswf
30046
- tech: contact_01kc433yvre99af2wasxhtpswf
30061
+ admin:
30062
+ - attributes: {}
30063
+ contact_id: contact_01kc433yvre99af2wasxhtpswf
30064
+ billing:
30065
+ - attributes: {}
30066
+ contact_id: contact_01kc433yvre99af2wasxhtpswf
30067
+ registrant:
30068
+ - attributes: {}
30069
+ contact_id: contact_01kc433yvre99af2wasxhtpswf
30070
+ tech:
30071
+ - attributes: {}
30072
+ contact_id: contact_01kc433yvre99af2wasxhtpswf
30047
30073
  create_zone: false
30048
30074
  name: example.com
30049
30075
  nameservers:
package/src/schema.d.ts CHANGED
@@ -1527,7 +1527,11 @@ export interface paths {
1527
1527
  * Update a domain
1528
1528
  * @description Updates various attributes of an existing domain. Only the fields provided in the request
1529
1529
  * will be updated; all other fields will remain unchanged. <br>
1530
- * Providing `clientTransferProhibited` as a status will set the `transfer_lock` property
1530
+ * Providing `clientTransferProhibited` as a status will set the `transfer_lock` property. <br>
1531
+ * `transfer_lock` is read-only and cannot be set here: send it in the request body and it is
1532
+ * ignored, leaving the lock unchanged. Use `status_changes` to release a lock before a
1533
+ * transfer out, for example
1534
+ * `{"status_changes": {"remove": ["clientTransferProhibited"]}}`.
1531
1535
  */
1532
1536
  patch: operations["update_domain_v1_domains__domain_reference__patch"];
1533
1537
  trace?: never;