@opusdns/api 0.314.0 → 0.316.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.314.0",
6
+ "version": "0.316.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -322,6 +322,7 @@ export const BILLING_TRANSACTION_PRODUCT_TYPE = {
322
322
  EMAIL_FORWARD: "email_forward",
323
323
  DOMAIN_FORWARD: "domain_forward",
324
324
  ACCOUNT_WALLET: "account_wallet",
325
+ VANITY_NAMESERVER: "vanity_nameserver",
325
326
  } as const satisfies Record<string, BillingTransactionProductType>;
326
327
 
327
328
  /**
@@ -350,7 +351,8 @@ export const BILLING_TRANSACTION_PRODUCT_TYPE_VALUES = [
350
351
  'zones',
351
352
  'email_forward',
352
353
  'domain_forward',
353
- 'account_wallet'
354
+ 'account_wallet',
355
+ 'vanity_nameserver'
354
356
  ] as const satisfies [string, ...string[]] | BillingTransactionProductType[];
355
357
 
356
358
  /**
@@ -2381,6 +2383,7 @@ export const EVENT_OBJECT_TYPE = {
2381
2383
  CONTACT: "CONTACT",
2382
2384
  HOST: "HOST",
2383
2385
  ACCOUNT: "ACCOUNT",
2386
+ VANITY_NS_SET: "VANITY_NS_SET",
2384
2387
  RAW: "RAW",
2385
2388
  UNKNOWN: "UNKNOWN",
2386
2389
  } as const satisfies Record<string, EventObjectType>;
@@ -2411,6 +2414,7 @@ export const EVENT_OBJECT_TYPE_VALUES = [
2411
2414
  'CONTACT',
2412
2415
  'HOST',
2413
2416
  'ACCOUNT',
2417
+ 'VANITY_NS_SET',
2414
2418
  'RAW',
2415
2419
  'UNKNOWN'
2416
2420
  ] as const satisfies [string, ...string[]] | EventObjectType[];
@@ -2549,6 +2553,7 @@ export const EVENT_TYPE = {
2549
2553
  WITHDRAW: "WITHDRAW",
2550
2554
  VERIFICATION: "VERIFICATION",
2551
2555
  BALANCE: "BALANCE",
2556
+ VANITY_NS_PROVISION: "VANITY_NS_PROVISION",
2552
2557
  } as const satisfies Record<string, EventType>;
2553
2558
 
2554
2559
  /**
@@ -2582,7 +2587,8 @@ export const EVENT_TYPE_VALUES = [
2582
2587
  'TRANSIT',
2583
2588
  'WITHDRAW',
2584
2589
  'VERIFICATION',
2585
- 'BALANCE'
2590
+ 'BALANCE',
2591
+ 'VANITY_NS_PROVISION'
2586
2592
  ] as const satisfies [string, ...string[]] | EventType[];
2587
2593
 
2588
2594
  /**
package/src/openapi.yaml CHANGED
@@ -146,6 +146,7 @@ components:
146
146
  - email_forward
147
147
  - domain_forward
148
148
  - account_wallet
149
+ - vanity_nameserver
149
150
  title: BillingTransactionProductType
150
151
  type: string
151
152
  BillingTransactionResponse:
@@ -5900,6 +5901,7 @@ components:
5900
5901
  - CONTACT
5901
5902
  - HOST
5902
5903
  - ACCOUNT
5904
+ - VANITY_NS_SET
5903
5905
  - RAW
5904
5906
  - UNKNOWN
5905
5907
  title: EventObjectType
@@ -5982,6 +5984,7 @@ components:
5982
5984
  - WITHDRAW
5983
5985
  - VERIFICATION
5984
5986
  - BALANCE
5987
+ - VANITY_NS_PROVISION
5985
5988
  title: EventType
5986
5989
  type: string
5987
5990
  EventVersion:
@@ -11580,7 +11583,7 @@ info:
11580
11583
  \n\n"
11581
11584
  summary: OpusDNS - your gateway to a seamless domain management experience.
11582
11585
  title: OpusDNS API
11583
- version: 2026-05-27-143349
11586
+ version: 2026-05-29-142222
11584
11587
  x-logo:
11585
11588
  altText: OpusDNS API Reference
11586
11589
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -2566,7 +2566,7 @@ export interface components {
2566
2566
  * BillingTransactionProductType
2567
2567
  * @enum {string}
2568
2568
  */
2569
- BillingTransactionProductType: "domain" | "zones" | "email_forward" | "domain_forward" | "account_wallet";
2569
+ BillingTransactionProductType: "domain" | "zones" | "email_forward" | "domain_forward" | "account_wallet" | "vanity_nameserver";
2570
2570
  /** BillingTransactionResponse */
2571
2571
  BillingTransactionResponse: {
2572
2572
  /** @description The action performed in the transaction */
@@ -6390,7 +6390,7 @@ export interface components {
6390
6390
  * EventObjectType
6391
6391
  * @enum {string}
6392
6392
  */
6393
- EventObjectType: "DOMAIN" | "CONTACT" | "HOST" | "ACCOUNT" | "RAW" | "UNKNOWN";
6393
+ EventObjectType: "DOMAIN" | "CONTACT" | "HOST" | "ACCOUNT" | "VANITY_NS_SET" | "RAW" | "UNKNOWN";
6394
6394
  /** EventResponse */
6395
6395
  EventResponse: {
6396
6396
  /**
@@ -6440,7 +6440,7 @@ export interface components {
6440
6440
  * EventType
6441
6441
  * @enum {string}
6442
6442
  */
6443
- EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "TRANSIT" | "WITHDRAW" | "VERIFICATION" | "BALANCE";
6443
+ EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "TRANSIT" | "WITHDRAW" | "VERIFICATION" | "BALANCE" | "VANITY_NS_PROVISION";
6444
6444
  /**
6445
6445
  * EventVersion
6446
6446
  * @enum {string}