@opusdns/api 1.108.0 → 1.109.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.2.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.108.0",
6
+ "version": "1.109.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
@@ -5492,8 +5492,8 @@ components:
5492
5492
  $ref: '#/components/schemas/StatusTagResponse'
5493
5493
  type: array
5494
5494
  - type: 'null'
5495
- description: Status tags assigned to this domain. Only included when ?include=tags
5496
- is specified.
5495
+ description: Status tags assigned to this domain. Null unless `include=tags`
5496
+ is requested.
5497
5497
  title: Status Tags
5498
5498
  tags:
5499
5499
  anyOf:
@@ -5501,8 +5501,8 @@ components:
5501
5501
  $ref: '#/components/schemas/TagEnrichedResponse'
5502
5502
  type: array
5503
5503
  - type: 'null'
5504
- description: User tags assigned to this domain. Only included when ?include=tags
5505
- is specified.
5504
+ description: User tags assigned to this domain. Null unless `include=tags`
5505
+ is requested.
5506
5506
  title: Tags
5507
5507
  tld:
5508
5508
  description: The top level domain of the domain
@@ -15169,7 +15169,7 @@ info:
15169
15169
  \n\n"
15170
15170
  summary: OpusDNS - your gateway to a seamless domain management experience.
15171
15171
  title: OpusDNS API
15172
- version: 2026-08-10-192446
15172
+ version: 2026-08-12-074946
15173
15173
  x-logo:
15174
15174
  altText: OpusDNS API Reference
15175
15175
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -22833,7 +22833,7 @@ paths:
22833
22833
  - domain_search
22834
22834
  /v1/domains:
22835
22835
  get:
22836
- description: Retrieves a paginated list of all active domains
22836
+ description: Retrieves a paginated list of all active domains.
22837
22837
  operationId: get_domains_v1_domains_get
22838
22838
  parameters:
22839
22839
  - in: query
@@ -23088,8 +23088,9 @@ paths:
23088
23088
  description: Filter domains by registry status. Can be specified multiple
23089
23089
  times (union of all provided values).
23090
23090
  title: Registry Statuses
23091
- - description: Include additional data in the response. Can be specified multiple
23092
- times.
23091
+ - description: Extra data to include in each result. `tags` populates the `tags`
23092
+ (user tags) and `status_tags` fields, which are otherwise null; filtering
23093
+ by `tag_ids` or `status_tags` alone does not populate them.
23093
23094
  in: query
23094
23095
  name: include
23095
23096
  required: false
@@ -23099,8 +23100,9 @@ paths:
23099
23100
  $ref: '#/components/schemas/DomainListIncludeField'
23100
23101
  type: array
23101
23102
  - type: 'null'
23102
- description: Include additional data in the response. Can be specified multiple
23103
- times.
23103
+ description: Extra data to include in each result. `tags` populates the
23104
+ `tags` (user tags) and `status_tags` fields, which are otherwise null;
23105
+ filtering by `tag_ids` or `status_tags` alone does not populate them.
23104
23106
  title: Include
23105
23107
  - $ref: '#/components/parameters/DatetimeFormatHeader'
23106
23108
  responses:
@@ -24502,7 +24504,7 @@ paths:
24502
24504
  x-required-permissions:
24503
24505
  - domains:delete
24504
24506
  get:
24505
- description: Retrieves a single active domain by either its name or id
24507
+ description: Retrieves a single active domain by either its name or id.
24506
24508
  operationId: get_domain_v1_domains__domain_reference__get
24507
24509
  parameters:
24508
24510
  - in: path
@@ -24518,7 +24520,9 @@ paths:
24518
24520
  x-typeid-prefix: domain
24519
24521
  - type: string
24520
24522
  title: Domain Reference
24521
- - description: Include additional data in the response.
24523
+ - description: Extra data to include in the response. `tags` populates the `tags`
24524
+ and `status_tags` fields, which are otherwise null. `renewal_price` resolves
24525
+ the domain's renewal price.
24522
24526
  in: query
24523
24527
  name: include
24524
24528
  required: false
@@ -24528,7 +24532,9 @@ paths:
24528
24532
  $ref: '#/components/schemas/DomainIncludeField'
24529
24533
  type: array
24530
24534
  - type: 'null'
24531
- description: Include additional data in the response.
24535
+ description: Extra data to include in the response. `tags` populates the
24536
+ `tags` and `status_tags` fields, which are otherwise null. `renewal_price`
24537
+ resolves the domain's renewal price.
24532
24538
  title: Include
24533
24539
  - $ref: '#/components/parameters/DatetimeFormatHeader'
24534
24540
  responses:
package/src/schema.d.ts CHANGED
@@ -1083,7 +1083,7 @@ export interface paths {
1083
1083
  };
1084
1084
  /**
1085
1085
  * List all domains
1086
- * @description Retrieves a paginated list of all active domains
1086
+ * @description Retrieves a paginated list of all active domains.
1087
1087
  */
1088
1088
  get: operations["get_domains_v1_domains_get"];
1089
1089
  put?: never;
@@ -1419,7 +1419,7 @@ export interface paths {
1419
1419
  };
1420
1420
  /**
1421
1421
  * Retrieve a domain
1422
- * @description Retrieves a single active domain by either its name or id
1422
+ * @description Retrieves a single active domain by either its name or id.
1423
1423
  */
1424
1424
  get: operations["get_domain_v1_domains__domain_reference__get"];
1425
1425
  put?: never;
@@ -6539,12 +6539,12 @@ export interface components {
6539
6539
  sld: string;
6540
6540
  /**
6541
6541
  * Status Tags
6542
- * @description Status tags assigned to this domain. Only included when ?include=tags is specified.
6542
+ * @description Status tags assigned to this domain. Null unless `include=tags` is requested.
6543
6543
  */
6544
6544
  status_tags?: components["schemas"]["StatusTagResponse"][] | null;
6545
6545
  /**
6546
6546
  * Tags
6547
- * @description User tags assigned to this domain. Only included when ?include=tags is specified.
6547
+ * @description User tags assigned to this domain. Null unless `include=tags` is requested.
6548
6548
  */
6549
6549
  tags?: components["schemas"]["TagEnrichedResponse"][] | null;
6550
6550
  /**
@@ -18903,7 +18903,7 @@ export interface operations {
18903
18903
  transferred_before?: Date | null;
18904
18904
  /** @description Filter domains by registry status. Can be specified multiple times (union of all provided values). */
18905
18905
  registry_statuses?: string[] | null;
18906
- /** @description Include additional data in the response. Can be specified multiple times. */
18906
+ /** @description Extra data to include in each result. `tags` populates the `tags` (user tags) and `status_tags` fields, which are otherwise null; filtering by `tag_ids` or `status_tags` alone does not populate them. */
18907
18907
  include?: components["schemas"]["DomainListIncludeField"][] | null;
18908
18908
  };
18909
18909
  header?: {
@@ -20187,7 +20187,7 @@ export interface operations {
20187
20187
  get_domain_v1_domains__domain_reference__get: {
20188
20188
  parameters: {
20189
20189
  query?: {
20190
- /** @description Include additional data in the response. */
20190
+ /** @description Extra data to include in the response. `tags` populates the `tags` and `status_tags` fields, which are otherwise null. `renewal_price` resolves the domain's renewal price. */
20191
20191
  include?: components["schemas"]["DomainIncludeField"][] | null;
20192
20192
  };
20193
20193
  header?: {