@opusdns/api 1.133.0 → 1.135.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.133.0",
6
+ "version": "1.135.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -982,6 +982,7 @@ export const EVENT_TYPE = {
982
982
  VANITY_NS_SUSPENSION: "VANITY_NS_SUSPENSION",
983
983
  VANITY_NS_RESTORATION: "VANITY_NS_RESTORATION",
984
984
  VANITY_NS_TERMINATION: "VANITY_NS_TERMINATION",
985
+ CLONE: "CLONE",
985
986
  } as const satisfies Record<string, EventType>;
986
987
 
987
988
  export const EVENT_TYPE_VALUES = [
@@ -999,6 +1000,7 @@ export const EVENT_TYPE_VALUES = [
999
1000
  'VANITY_NS_SUSPENSION',
1000
1001
  'VANITY_NS_RESTORATION',
1001
1002
  'VANITY_NS_TERMINATION',
1003
+ 'CLONE',
1002
1004
  ] as const satisfies ReadonlyArray<EventType>;
1003
1005
 
1004
1006
  export const EVENT_VERSION = {
package/src/openapi.yaml CHANGED
@@ -7845,6 +7845,7 @@ components:
7845
7845
  - VANITY_NS_SUSPENSION
7846
7846
  - VANITY_NS_RESTORATION
7847
7847
  - VANITY_NS_TERMINATION
7848
+ - CLONE
7848
7849
  title: EventType
7849
7850
  type: string
7850
7851
  EventVersion:
@@ -15736,7 +15737,7 @@ info:
15736
15737
  \n\n"
15737
15738
  summary: OpusDNS - your gateway to a seamless domain management experience.
15738
15739
  title: OpusDNS API
15739
- version: 2026-08-25-080032
15740
+ version: 2026-08-25-200103
15740
15741
  x-logo:
15741
15742
  altText: OpusDNS API Reference
15742
15743
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -23418,7 +23419,7 @@ paths:
23418
23419
  schema:
23419
23420
  anyOf:
23420
23421
  - items:
23421
- pattern: ^[a-zA-Z]+(\.[a-zA-Z]+)*$
23422
+ pattern: ^[a-zA-Z0-9]+(?:[.-]+[a-zA-Z0-9]+)*$
23422
23423
  type: string
23423
23424
  type: array
23424
23425
  - type: 'null'
package/src/schema.d.ts CHANGED
@@ -8141,7 +8141,7 @@ export interface components {
8141
8141
  * EventType
8142
8142
  * @enum {string}
8143
8143
  */
8144
- EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "TRANSIT" | "WITHDRAW" | "VERIFICATION" | "BALANCE" | "VANITY_NS_PROVISION" | "VANITY_NS_SUSPENSION" | "VANITY_NS_RESTORATION" | "VANITY_NS_TERMINATION";
8144
+ EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "TRANSIT" | "WITHDRAW" | "VERIFICATION" | "BALANCE" | "VANITY_NS_PROVISION" | "VANITY_NS_SUSPENSION" | "VANITY_NS_RESTORATION" | "VANITY_NS_TERMINATION" | "CLONE";
8145
8145
  /**
8146
8146
  * EventVersion
8147
8147
  * @enum {string}