@opusdns/api 1.131.0 → 1.132.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/helpers/keys.ts +2 -0
- package/src/openapi.yaml +11 -1
- package/src/schema.d.ts +7 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -2726,6 +2726,7 @@ export const KEYS_DOMAIN_STATUSES_BASE = [
|
|
|
2726
2726
|
|
|
2727
2727
|
export const KEY_DOMAIN_SUMMARY_DATA_BY_ORGANIZATION = 'by_organization' satisfies keyof DomainSummaryData;
|
|
2728
2728
|
export const KEY_DOMAIN_SUMMARY_DATA_BY_STATUS = 'by_status' satisfies keyof DomainSummaryData;
|
|
2729
|
+
export const KEY_DOMAIN_SUMMARY_DATA_BY_STATUS_TAG = 'by_status_tag' satisfies keyof DomainSummaryData;
|
|
2729
2730
|
export const KEY_DOMAIN_SUMMARY_DATA_BY_TLD = 'by_tld' satisfies keyof DomainSummaryData;
|
|
2730
2731
|
export const KEY_DOMAIN_SUMMARY_DATA_EXPIRING_SOON = 'expiring_soon' satisfies keyof DomainSummaryData;
|
|
2731
2732
|
export const KEY_DOMAIN_SUMMARY_DATA_TOTAL_COUNT = 'total_count' satisfies keyof DomainSummaryData;
|
|
@@ -2733,6 +2734,7 @@ export const KEY_DOMAIN_SUMMARY_DATA_TOTAL_COUNT = 'total_count' satisfies keyof
|
|
|
2733
2734
|
export const KEYS_DOMAIN_SUMMARY_DATA = [
|
|
2734
2735
|
KEY_DOMAIN_SUMMARY_DATA_BY_ORGANIZATION,
|
|
2735
2736
|
KEY_DOMAIN_SUMMARY_DATA_BY_STATUS,
|
|
2737
|
+
KEY_DOMAIN_SUMMARY_DATA_BY_STATUS_TAG,
|
|
2736
2738
|
KEY_DOMAIN_SUMMARY_DATA_BY_TLD,
|
|
2737
2739
|
KEY_DOMAIN_SUMMARY_DATA_EXPIRING_SOON,
|
|
2738
2740
|
KEY_DOMAIN_SUMMARY_DATA_TOTAL_COUNT,
|
package/src/openapi.yaml
CHANGED
|
@@ -5958,6 +5958,15 @@ components:
|
|
|
5958
5958
|
description: 'Domain counts by status (status: count)'
|
|
5959
5959
|
title: By Status
|
|
5960
5960
|
type: object
|
|
5961
|
+
by_status_tag:
|
|
5962
|
+
additionalProperties:
|
|
5963
|
+
type: integer
|
|
5964
|
+
description: 'Domain counts by status tag (status_tag: count), only status
|
|
5965
|
+
tags with at least one domain'
|
|
5966
|
+
propertyNames:
|
|
5967
|
+
$ref: '#/components/schemas/StatusTagType'
|
|
5968
|
+
title: By Status Tag
|
|
5969
|
+
type: object
|
|
5961
5970
|
by_tld:
|
|
5962
5971
|
additionalProperties:
|
|
5963
5972
|
type: integer
|
|
@@ -5974,6 +5983,7 @@ components:
|
|
|
5974
5983
|
required:
|
|
5975
5984
|
- total_count
|
|
5976
5985
|
- by_status
|
|
5986
|
+
- by_status_tag
|
|
5977
5987
|
- by_tld
|
|
5978
5988
|
- by_organization
|
|
5979
5989
|
- expiring_soon
|
|
@@ -15700,7 +15710,7 @@ info:
|
|
|
15700
15710
|
\n\n"
|
|
15701
15711
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
15702
15712
|
title: OpusDNS API
|
|
15703
|
-
version: 2026-08-25-
|
|
15713
|
+
version: 2026-08-25-075629
|
|
15704
15714
|
x-logo:
|
|
15705
15715
|
altText: OpusDNS API Reference
|
|
15706
15716
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -6839,6 +6839,13 @@ export interface components {
|
|
|
6839
6839
|
by_status: {
|
|
6840
6840
|
[key: string]: number;
|
|
6841
6841
|
};
|
|
6842
|
+
/**
|
|
6843
|
+
* By Status Tag
|
|
6844
|
+
* @description Domain counts by status tag (status_tag: count), only status tags with at least one domain
|
|
6845
|
+
*/
|
|
6846
|
+
by_status_tag: {
|
|
6847
|
+
[key: string]: number;
|
|
6848
|
+
};
|
|
6842
6849
|
/**
|
|
6843
6850
|
* By Tld
|
|
6844
6851
|
* @description Domain counts by TLD (tld: count)
|