@opusdns/api 1.130.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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "@opusdns/api-spec-ts-generator": "^1.5.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.130.0",
6
+ "version": "1.132.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -2023,11 +2023,13 @@ export const TAG_COLOR_VALUES = [
2023
2023
  export const TAG_FILTER_MODE = {
2024
2024
  MATCH_ANY: "match_any",
2025
2025
  MATCH_ALL: "match_all",
2026
+ MATCH_NONE: "match_none",
2026
2027
  } as const satisfies Record<string, TagFilterMode>;
2027
2028
 
2028
2029
  export const TAG_FILTER_MODE_VALUES = [
2029
2030
  'match_any',
2030
2031
  'match_all',
2032
+ 'match_none',
2031
2033
  ] as const satisfies ReadonlyArray<TagFilterMode>;
2032
2034
 
2033
2035
  export const TAG_SORT_FIELD = {
@@ -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
@@ -12981,6 +12991,7 @@ components:
12981
12991
  enum:
12982
12992
  - match_any
12983
12993
  - match_all
12994
+ - match_none
12984
12995
  title: TagFilterMode
12985
12996
  type: string
12986
12997
  TagResponse:
@@ -15699,7 +15710,7 @@ info:
15699
15710
  \n\n"
15700
15711
  summary: OpusDNS - your gateway to a seamless domain management experience.
15701
15712
  title: OpusDNS API
15702
- version: 2026-08-24-112237
15713
+ version: 2026-08-25-075629
15703
15714
  x-logo:
15704
15715
  altText: OpusDNS API Reference
15705
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)
@@ -11417,7 +11424,7 @@ export interface components {
11417
11424
  * TagFilterMode
11418
11425
  * @enum {string}
11419
11426
  */
11420
- TagFilterMode: "match_any" | "match_all";
11427
+ TagFilterMode: "match_any" | "match_all" | "match_none";
11421
11428
  /** TagResponse */
11422
11429
  TagResponse: {
11423
11430
  /** @description The color of the tag */