@opusdns/api 1.130.0 → 1.131.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.131.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 = {
package/src/openapi.yaml CHANGED
@@ -12981,6 +12981,7 @@ components:
12981
12981
  enum:
12982
12982
  - match_any
12983
12983
  - match_all
12984
+ - match_none
12984
12985
  title: TagFilterMode
12985
12986
  type: string
12986
12987
  TagResponse:
@@ -15699,7 +15700,7 @@ info:
15699
15700
  \n\n"
15700
15701
  summary: OpusDNS - your gateway to a seamless domain management experience.
15701
15702
  title: OpusDNS API
15702
- version: 2026-08-24-112237
15703
+ version: 2026-08-25-003145
15703
15704
  x-logo:
15704
15705
  altText: OpusDNS API Reference
15705
15706
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -11417,7 +11417,7 @@ export interface components {
11417
11417
  * TagFilterMode
11418
11418
  * @enum {string}
11419
11419
  */
11420
- TagFilterMode: "match_any" | "match_all";
11420
+ TagFilterMode: "match_any" | "match_all" | "match_none";
11421
11421
  /** TagResponse */
11422
11422
  TagResponse: {
11423
11423
  /** @description The color of the tag */