@opusdns/api 1.46.0 → 1.48.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.2.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.46.0",
6
+ "version": "1.48.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -223,6 +223,7 @@ export const BILLING_TRANSACTION_PRODUCT_TYPE = {
223
223
  DOMAIN_FORWARD: "domain_forward",
224
224
  ACCOUNT_WALLET: "account_wallet",
225
225
  VANITY_NAMESERVER: "vanity_nameserver",
226
+ WHITELABEL_BRANDING: "whitelabel_branding",
226
227
  } as const satisfies Record<string, BillingTransactionProductType>;
227
228
 
228
229
  export const BILLING_TRANSACTION_PRODUCT_TYPE_VALUES = [
@@ -232,6 +233,7 @@ export const BILLING_TRANSACTION_PRODUCT_TYPE_VALUES = [
232
233
  'domain_forward',
233
234
  'account_wallet',
234
235
  'vanity_nameserver',
236
+ 'whitelabel_branding',
235
237
  ] as const satisfies ReadonlyArray<BillingTransactionProductType>;
236
238
 
237
239
  export const BILLING_TRANSACTION_SORT_FIELD = {
package/src/openapi.yaml CHANGED
@@ -163,6 +163,7 @@ components:
163
163
  - domain_forward
164
164
  - account_wallet
165
165
  - vanity_nameserver
166
+ - whitelabel_branding
166
167
  title: BillingTransactionProductType
167
168
  type: string
168
169
  BillingTransactionResponse:
@@ -11288,8 +11289,10 @@ components:
11288
11289
  title: Nameservers
11289
11290
  type: array
11290
11291
  registrar:
11292
+ anyOf:
11293
+ - type: string
11294
+ - type: 'null'
11291
11295
  title: Registrar
11292
- type: string
11293
11296
  statuses:
11294
11297
  default: []
11295
11298
  items:
@@ -11302,7 +11305,6 @@ components:
11302
11305
  - type: 'null'
11303
11306
  required:
11304
11307
  - name
11305
- - registrar
11306
11308
  title: RegistrarDomain
11307
11309
  type: object
11308
11310
  RegistrarRRSet:
@@ -13852,7 +13854,7 @@ info:
13852
13854
  \n\n"
13853
13855
  summary: OpusDNS - your gateway to a seamless domain management experience.
13854
13856
  title: OpusDNS API
13855
- version: 2026-07-06-082943
13857
+ version: 2026-07-09-112921
13856
13858
  x-logo:
13857
13859
  altText: OpusDNS API Reference
13858
13860
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -2834,7 +2834,7 @@ export interface components {
2834
2834
  * BillingTransactionProductType
2835
2835
  * @enum {string}
2836
2836
  */
2837
- BillingTransactionProductType: "domain" | "zones" | "email_forward" | "domain_forward" | "account_wallet" | "vanity_nameserver";
2837
+ BillingTransactionProductType: "domain" | "zones" | "email_forward" | "domain_forward" | "account_wallet" | "vanity_nameserver" | "whitelabel_branding";
2838
2838
  /** BillingTransactionResponse */
2839
2839
  BillingTransactionResponse: {
2840
2840
  /** @description The action performed in the transaction */
@@ -10161,7 +10161,7 @@ export interface components {
10161
10161
  */
10162
10162
  nameservers: string[];
10163
10163
  /** Registrar */
10164
- registrar: string;
10164
+ registrar?: string | null;
10165
10165
  /**
10166
10166
  * Statuses
10167
10167
  * @default []