@opusdns/api 1.81.0 → 1.82.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.82.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
@@ -14389,6 +14389,31 @@ components:
14389
14389
  - period
14390
14390
  title: WhitelabelBrandingCreate
14391
14391
  type: object
14392
+ WhitelabelBrandingRecheck:
14393
+ description: 'Public recheck body. Empty = re-run onboarding against the stored
14394
+ hosts (retry after
14395
+
14396
+ fixing DNS). Both hosts present = re-point a wrong domain before re-running
14397
+ (pre-provisioning
14398
+
14399
+ only; server rejects once a Keycloak client exists).'
14400
+ properties:
14401
+ auth_hostname:
14402
+ anyOf:
14403
+ - maxLength: 255
14404
+ minLength: 1
14405
+ type: string
14406
+ - type: 'null'
14407
+ title: Auth Hostname
14408
+ hostname:
14409
+ anyOf:
14410
+ - maxLength: 255
14411
+ minLength: 1
14412
+ type: string
14413
+ - type: 'null'
14414
+ title: Hostname
14415
+ title: WhitelabelBrandingRecheck
14416
+ type: object
14392
14417
  WhitelabelBrandingResponse:
14393
14418
  description: Public read shape for an organization's whitelabel branding config.
14394
14419
  properties:
@@ -14825,7 +14850,7 @@ info:
14825
14850
  \n\n"
14826
14851
  summary: OpusDNS - your gateway to a seamless domain management experience.
14827
14852
  title: OpusDNS API
14828
- version: 2026-07-27-074918
14853
+ version: 2026-07-27-084121
14829
14854
  x-logo:
14830
14855
  altText: OpusDNS API Reference
14831
14856
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -31465,6 +31490,14 @@ paths:
31465
31490
  operationId: recheck_whitelabel_branding_v1_whitelabel_branding_recheck_post
31466
31491
  parameters:
31467
31492
  - $ref: '#/components/parameters/DatetimeFormatHeader'
31493
+ requestBody:
31494
+ content:
31495
+ application/json:
31496
+ schema:
31497
+ anyOf:
31498
+ - $ref: '#/components/schemas/WhitelabelBrandingRecheck'
31499
+ - type: 'null'
31500
+ title: Body
31468
31501
  responses:
31469
31502
  '202':
31470
31503
  content:
package/src/schema.d.ts CHANGED
@@ -12411,6 +12411,18 @@ export interface components {
12411
12411
  /** @description Billing period for the subscription; offered: 1 month or 1 year */
12412
12412
  period: components["schemas"]["Period"];
12413
12413
  };
12414
+ /**
12415
+ * WhitelabelBrandingRecheck
12416
+ * @description Public recheck body. Empty = re-run onboarding against the stored hosts (retry after
12417
+ * fixing DNS). Both hosts present = re-point a wrong domain before re-running (pre-provisioning
12418
+ * only; server rejects once a Keycloak client exists).
12419
+ */
12420
+ WhitelabelBrandingRecheck: {
12421
+ /** Auth Hostname */
12422
+ auth_hostname?: string | null;
12423
+ /** Hostname */
12424
+ hostname?: string | null;
12425
+ };
12414
12426
  /**
12415
12427
  * WhitelabelBrandingResponse
12416
12428
  * @description Public read shape for an organization's whitelabel branding config.
@@ -26448,7 +26460,11 @@ export interface operations {
26448
26460
  path?: never;
26449
26461
  cookie?: never;
26450
26462
  };
26451
- requestBody?: never;
26463
+ requestBody?: {
26464
+ content: {
26465
+ "application/json": components["schemas"]["WhitelabelBrandingRecheck"] | null;
26466
+ };
26467
+ };
26452
26468
  responses: {
26453
26469
  /** @description Successful Response */
26454
26470
  202: {