@opusdns/api 1.187.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.187.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-20-153128
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
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;