@opusdns/api 1.150.0 → 1.151.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 +1 -1
- package/src/openapi.yaml +46 -1
- package/src/schema.d.ts +4 -0
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -16598,7 +16598,7 @@ info:
|
|
|
16598
16598
|
\n\n"
|
|
16599
16599
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16600
16600
|
title: OpusDNS API
|
|
16601
|
-
version: 2026-09-02-
|
|
16601
|
+
version: 2026-09-02-200743
|
|
16602
16602
|
x-logo:
|
|
16603
16603
|
altText: OpusDNS API Reference
|
|
16604
16604
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -24714,6 +24714,51 @@ paths:
|
|
|
24714
24714
|
description: Filter domains by registry status. Can be specified multiple
|
|
24715
24715
|
times (union of all provided values).
|
|
24716
24716
|
title: Registry Statuses
|
|
24717
|
+
- description: Filter domains held at an external registrar by the connected
|
|
24718
|
+
registrar credential they were synced from. Can be specified multiple times
|
|
24719
|
+
(union of all provided values); combined with `registrar`, both must match.
|
|
24720
|
+
Matches exactly the domains whose `registrar_credential` field carries the
|
|
24721
|
+
id, so domains OpusDNS sponsors never match.
|
|
24722
|
+
in: query
|
|
24723
|
+
name: registrar_credential_id
|
|
24724
|
+
required: false
|
|
24725
|
+
schema:
|
|
24726
|
+
anyOf:
|
|
24727
|
+
- items:
|
|
24728
|
+
examples:
|
|
24729
|
+
- registrar_credential_01h45ytscbebyvny4gc8cr8ma2
|
|
24730
|
+
format: typeid
|
|
24731
|
+
pattern: ^registrar_credential_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
24732
|
+
type: string
|
|
24733
|
+
x-typeid-prefix: registrar_credential
|
|
24734
|
+
type: array
|
|
24735
|
+
- type: 'null'
|
|
24736
|
+
description: Filter domains held at an external registrar by the connected
|
|
24737
|
+
registrar credential they were synced from. Can be specified multiple
|
|
24738
|
+
times (union of all provided values); combined with `registrar`, both
|
|
24739
|
+
must match. Matches exactly the domains whose `registrar_credential` field
|
|
24740
|
+
carries the id, so domains OpusDNS sponsors never match.
|
|
24741
|
+
title: Registrar Credential Id
|
|
24742
|
+
- description: Filter domains held at an external registrar by that registrar.
|
|
24743
|
+
Can be specified multiple times (union of all provided values); combined
|
|
24744
|
+
with `registrar_credential_id`, both must match. Matches exactly the domains
|
|
24745
|
+
whose `registrar_credential` field carries the registrar, so domains OpusDNS
|
|
24746
|
+
sponsors never match.
|
|
24747
|
+
in: query
|
|
24748
|
+
name: registrar
|
|
24749
|
+
required: false
|
|
24750
|
+
schema:
|
|
24751
|
+
anyOf:
|
|
24752
|
+
- items:
|
|
24753
|
+
$ref: '#/components/schemas/Registrar'
|
|
24754
|
+
type: array
|
|
24755
|
+
- type: 'null'
|
|
24756
|
+
description: Filter domains held at an external registrar by that registrar.
|
|
24757
|
+
Can be specified multiple times (union of all provided values); combined
|
|
24758
|
+
with `registrar_credential_id`, both must match. Matches exactly the domains
|
|
24759
|
+
whose `registrar_credential` field carries the registrar, so domains OpusDNS
|
|
24760
|
+
sponsors never match.
|
|
24761
|
+
title: Registrar
|
|
24717
24762
|
- description: Extra data to include in each result. `tags` populates the `tags`
|
|
24718
24763
|
(user tags) and `status_tags` fields, which are otherwise null; filtering
|
|
24719
24764
|
by `tag_ids` or `status_tags` alone does not populate them. `registrar_credential`
|
package/src/schema.d.ts
CHANGED
|
@@ -19836,6 +19836,10 @@ export interface operations {
|
|
|
19836
19836
|
transferred_before?: Date | null;
|
|
19837
19837
|
/** @description Filter domains by registry status. Can be specified multiple times (union of all provided values). */
|
|
19838
19838
|
registry_statuses?: string[] | null;
|
|
19839
|
+
/** @description Filter domains held at an external registrar by the connected registrar credential they were synced from. Can be specified multiple times (union of all provided values); combined with `registrar`, both must match. Matches exactly the domains whose `registrar_credential` field carries the id, so domains OpusDNS sponsors never match. */
|
|
19840
|
+
registrar_credential_id?: TypeId<"registrar_credential">[] | null;
|
|
19841
|
+
/** @description Filter domains held at an external registrar by that registrar. Can be specified multiple times (union of all provided values); combined with `registrar_credential_id`, both must match. Matches exactly the domains whose `registrar_credential` field carries the registrar, so domains OpusDNS sponsors never match. */
|
|
19842
|
+
registrar?: components["schemas"]["Registrar"][] | null;
|
|
19839
19843
|
/** @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. `registrar_credential` populates the `registrar_credential` field for domains held at an external registrar. */
|
|
19840
19844
|
include?: components["schemas"]["DomainListIncludeField"][] | null;
|
|
19841
19845
|
};
|