@opusdns/api 0.218.0 → 0.219.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.218.0",
6
+ "version": "0.219.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -2019,6 +2019,8 @@ export const EVENT_TYPE = {
2019
2019
  DELETION: "DELETION",
2020
2020
  INBOUND_TRANSFER: "INBOUND_TRANSFER",
2021
2021
  OUTBOUND_TRANSFER: "OUTBOUND_TRANSFER",
2022
+ TRANSIT: "TRANSIT",
2023
+ WITHDRAW: "WITHDRAW",
2022
2024
  VERIFICATION: "VERIFICATION",
2023
2025
  } as const satisfies Record<string, EventType>;
2024
2026
 
@@ -2050,6 +2052,8 @@ export const EVENT_TYPE_VALUES = [
2050
2052
  'DELETION',
2051
2053
  'INBOUND_TRANSFER',
2052
2054
  'OUTBOUND_TRANSFER',
2055
+ 'TRANSIT',
2056
+ 'WITHDRAW',
2053
2057
  'VERIFICATION'
2054
2058
  ] as const satisfies [string, ...string[]] | EventType[];
2055
2059
 
package/src/openapi.yaml CHANGED
@@ -3582,6 +3582,8 @@ components:
3582
3582
  - DELETION
3583
3583
  - INBOUND_TRANSFER
3584
3584
  - OUTBOUND_TRANSFER
3585
+ - TRANSIT
3586
+ - WITHDRAW
3585
3587
  - VERIFICATION
3586
3588
  title: EventType
3587
3589
  type: string
@@ -7310,7 +7312,7 @@ info:
7310
7312
  '
7311
7313
  summary: OpusDNS - your gateway to a seamless domain management experience.
7312
7314
  title: OpusDNS API
7313
- version: 2026-03-10-081619
7315
+ version: 2026-03-10-150732
7314
7316
  x-logo:
7315
7317
  altText: OpusDNS API Reference
7316
7318
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -4339,7 +4339,7 @@ export interface components {
4339
4339
  * EventType
4340
4340
  * @enum {string}
4341
4341
  */
4342
- EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "VERIFICATION";
4342
+ EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "TRANSIT" | "WITHDRAW" | "VERIFICATION";
4343
4343
  /**
4344
4344
  * ExecutingEntity
4345
4345
  * @enum {string}