@opusdns/api 0.145.0 → 0.147.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": "^0.19.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "0.145.0",
6
+ "version": "0.147.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -1743,7 +1743,6 @@ export const EVENT_TYPE = {
1743
1743
  DELETION: "DELETION",
1744
1744
  INBOUND_TRANSFER: "INBOUND_TRANSFER",
1745
1745
  OUTBOUND_TRANSFER: "OUTBOUND_TRANSFER",
1746
- VERIFICATION: "VERIFICATION",
1747
1746
  } as const satisfies Record<string, EventType>;
1748
1747
 
1749
1748
  /**
@@ -1773,8 +1772,7 @@ export const EVENT_TYPE_VALUES = [
1773
1772
  'MODIFICATION',
1774
1773
  'DELETION',
1775
1774
  'INBOUND_TRANSFER',
1776
- 'OUTBOUND_TRANSFER',
1777
- 'VERIFICATION'
1775
+ 'OUTBOUND_TRANSFER'
1778
1776
  ] as const satisfies [string, ...string[]] | EventType[];
1779
1777
 
1780
1778
  /**
package/src/openapi.yaml CHANGED
@@ -2267,8 +2267,6 @@ components:
2267
2267
  - type: 'null'
2268
2268
  description: Reason for restoring the domain
2269
2269
  title: Reason
2270
- required:
2271
- - reason
2272
2270
  title: DomainRestoreRequest
2273
2271
  type: object
2274
2272
  DomainRestoreResponse:
@@ -3124,7 +3122,6 @@ components:
3124
3122
  - DELETION
3125
3123
  - INBOUND_TRANSFER
3126
3124
  - OUTBOUND_TRANSFER
3127
- - VERIFICATION
3128
3125
  title: EventType
3129
3126
  type: string
3130
3127
  GeneralAvailabilityBase:
@@ -6505,7 +6502,7 @@ info:
6505
6502
  '
6506
6503
  summary: OpusDNS - your gateway to a seamless domain management experience.
6507
6504
  title: OpusDNS API
6508
- version: 2026-01-08-225132
6505
+ version: 2026-01-09-080734
6509
6506
  x-logo:
6510
6507
  altText: OpusDNS API Reference
6511
6508
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -3238,7 +3238,7 @@ export interface components {
3238
3238
  * Reason
3239
3239
  * @description Reason for restoring the domain
3240
3240
  */
3241
- reason: string | null;
3241
+ reason?: string | null;
3242
3242
  };
3243
3243
  /** DomainRestoreResponse */
3244
3244
  DomainRestoreResponse: {
@@ -3828,7 +3828,7 @@ export interface components {
3828
3828
  * EventType
3829
3829
  * @enum {string}
3830
3830
  */
3831
- EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "VERIFICATION";
3831
+ EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER";
3832
3832
  /** GeneralAvailabilityBase */
3833
3833
  GeneralAvailabilityBase: {
3834
3834
  /**