@opusdns/api 1.81.0 → 1.83.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.81.0",
6
+ "version": "1.83.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -425,6 +425,7 @@ import type {
425
425
  Verification,
426
426
  VisitsByKeyBucket,
427
427
  WhitelabelBrandingCreate,
428
+ WhitelabelBrandingRecheck,
428
429
  WhitelabelBranding,
429
430
  WhoisBase,
430
431
  ZoneVanitySetUpdate,
@@ -5763,6 +5764,14 @@ export const KEYS_WHITELABEL_BRANDING_CREATE = [
5763
5764
  KEY_WHITELABEL_BRANDING_CREATE_PERIOD,
5764
5765
  ] as const satisfies (keyof WhitelabelBrandingCreate)[];
5765
5766
 
5767
+ export const KEY_WHITELABEL_BRANDING_RECHECK_AUTH_HOSTNAME = 'auth_hostname' satisfies keyof WhitelabelBrandingRecheck;
5768
+ export const KEY_WHITELABEL_BRANDING_RECHECK_HOSTNAME = 'hostname' satisfies keyof WhitelabelBrandingRecheck;
5769
+
5770
+ export const KEYS_WHITELABEL_BRANDING_RECHECK = [
5771
+ KEY_WHITELABEL_BRANDING_RECHECK_AUTH_HOSTNAME,
5772
+ KEY_WHITELABEL_BRANDING_RECHECK_HOSTNAME,
5773
+ ] as const satisfies (keyof WhitelabelBrandingRecheck)[];
5774
+
5766
5775
  export const KEY_WHITELABEL_BRANDING_AUTH_HOSTNAME = 'auth_hostname' satisfies keyof WhitelabelBranding;
5767
5776
  export const KEY_WHITELABEL_BRANDING_CREATED_ON = 'created_on' satisfies keyof WhitelabelBranding;
5768
5777
  export const KEY_WHITELABEL_BRANDING_FAILURE_CODE = 'failure_code' satisfies keyof WhitelabelBranding;
@@ -564,6 +564,7 @@ export type Verification = components['schemas']['VerificationResponse'];
564
564
  export type VerificationType = components['schemas']['VerificationType'];
565
565
  export type VisitsByKeyBucket = components['schemas']['VisitsByKeyBucket'];
566
566
  export type WhitelabelBrandingCreate = components['schemas']['WhitelabelBrandingCreate'];
567
+ export type WhitelabelBrandingRecheck = components['schemas']['WhitelabelBrandingRecheck'];
567
568
  export type WhitelabelBranding = components['schemas']['WhitelabelBrandingResponse'];
568
569
  export type WhitelabelOnboardingFailureCode = components['schemas']['WhitelabelOnboardingFailureCode'];
569
570
  export type WhitelabelOnboardingFailureType = components['schemas']['WhitelabelOnboardingFailureType'];
package/src/openapi.yaml CHANGED
@@ -11971,7 +11971,6 @@ components:
11971
11971
  - type: 'null'
11972
11972
  title: Registrar
11973
11973
  statuses:
11974
- default: []
11975
11974
  items:
11976
11975
  type: string
11977
11976
  title: Statuses
@@ -14389,6 +14388,31 @@ components:
14389
14388
  - period
14390
14389
  title: WhitelabelBrandingCreate
14391
14390
  type: object
14391
+ WhitelabelBrandingRecheck:
14392
+ description: 'Public recheck body. Empty = re-run onboarding against the stored
14393
+ hosts (retry after
14394
+
14395
+ fixing DNS). Both hosts present = re-point a wrong domain before re-running
14396
+ (pre-provisioning
14397
+
14398
+ only; server rejects once a Keycloak client exists).'
14399
+ properties:
14400
+ auth_hostname:
14401
+ anyOf:
14402
+ - maxLength: 255
14403
+ minLength: 1
14404
+ type: string
14405
+ - type: 'null'
14406
+ title: Auth Hostname
14407
+ hostname:
14408
+ anyOf:
14409
+ - maxLength: 255
14410
+ minLength: 1
14411
+ type: string
14412
+ - type: 'null'
14413
+ title: Hostname
14414
+ title: WhitelabelBrandingRecheck
14415
+ type: object
14392
14416
  WhitelabelBrandingResponse:
14393
14417
  description: Public read shape for an organization's whitelabel branding config.
14394
14418
  properties:
@@ -14825,7 +14849,7 @@ info:
14825
14849
  \n\n"
14826
14850
  summary: OpusDNS - your gateway to a seamless domain management experience.
14827
14851
  title: OpusDNS API
14828
- version: 2026-07-27-074918
14852
+ version: 2026-07-27-141029
14829
14853
  x-logo:
14830
14854
  altText: OpusDNS API Reference
14831
14855
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -31465,6 +31489,14 @@ paths:
31465
31489
  operationId: recheck_whitelabel_branding_v1_whitelabel_branding_recheck_post
31466
31490
  parameters:
31467
31491
  - $ref: '#/components/parameters/DatetimeFormatHeader'
31492
+ requestBody:
31493
+ content:
31494
+ application/json:
31495
+ schema:
31496
+ anyOf:
31497
+ - $ref: '#/components/schemas/WhitelabelBrandingRecheck'
31498
+ - type: 'null'
31499
+ title: Body
31468
31500
  responses:
31469
31501
  '202':
31470
31502
  content:
package/src/schema.d.ts CHANGED
@@ -10735,11 +10735,8 @@ export interface components {
10735
10735
  nameservers: components["schemas"]["RegistrarNameserver"][];
10736
10736
  /** Registrar */
10737
10737
  registrar?: string | null;
10738
- /**
10739
- * Statuses
10740
- * @default []
10741
- */
10742
- statuses: string[];
10738
+ /** Statuses */
10739
+ statuses?: string[];
10743
10740
  zone?: components["schemas"]["RegistrarZone"] | null;
10744
10741
  };
10745
10742
  /** RegistrarNameserver */
@@ -12411,6 +12408,18 @@ export interface components {
12411
12408
  /** @description Billing period for the subscription; offered: 1 month or 1 year */
12412
12409
  period: components["schemas"]["Period"];
12413
12410
  };
12411
+ /**
12412
+ * WhitelabelBrandingRecheck
12413
+ * @description Public recheck body. Empty = re-run onboarding against the stored hosts (retry after
12414
+ * fixing DNS). Both hosts present = re-point a wrong domain before re-running (pre-provisioning
12415
+ * only; server rejects once a Keycloak client exists).
12416
+ */
12417
+ WhitelabelBrandingRecheck: {
12418
+ /** Auth Hostname */
12419
+ auth_hostname?: string | null;
12420
+ /** Hostname */
12421
+ hostname?: string | null;
12422
+ };
12414
12423
  /**
12415
12424
  * WhitelabelBrandingResponse
12416
12425
  * @description Public read shape for an organization's whitelabel branding config.
@@ -26448,7 +26457,11 @@ export interface operations {
26448
26457
  path?: never;
26449
26458
  cookie?: never;
26450
26459
  };
26451
- requestBody?: never;
26460
+ requestBody?: {
26461
+ content: {
26462
+ "application/json": components["schemas"]["WhitelabelBrandingRecheck"] | null;
26463
+ };
26464
+ };
26452
26465
  responses: {
26453
26466
  /** @description Successful Response */
26454
26467
  202: {