@opusdns/api 1.165.0 → 1.166.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.5.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.165.0",
6
+ "version": "1.166.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -123,7 +123,6 @@ import type {
123
123
  VerificationDeadlineType,
124
124
  VerificationType,
125
125
  WhitelabelBrandingTier,
126
- WhitelabelDnsCheckReason,
127
126
  WhitelabelOnboardingFailureCode,
128
127
  WhitelabelOnboardingFailureType,
129
128
  WhitelabelOnboardingStatus,
@@ -2325,20 +2324,6 @@ export const WHITELABEL_BRANDING_TIER_VALUES = [
2325
2324
  'plus',
2326
2325
  ] as const satisfies ReadonlyArray<WhitelabelBrandingTier>;
2327
2326
 
2328
- export const WHITELABEL_DNS_CHECK_REASON = {
2329
- VERIFIED: "verified",
2330
- MISSING: "missing",
2331
- MISMATCH: "mismatch",
2332
- DNS_ERROR: "dns_error",
2333
- } as const satisfies Record<string, WhitelabelDnsCheckReason>;
2334
-
2335
- export const WHITELABEL_DNS_CHECK_REASON_VALUES = [
2336
- 'verified',
2337
- 'missing',
2338
- 'mismatch',
2339
- 'dns_error',
2340
- ] as const satisfies ReadonlyArray<WhitelabelDnsCheckReason>;
2341
-
2342
2327
  export const WHITELABEL_ONBOARDING_FAILURE_CODE = {
2343
2328
  ZONE_NOT_OWNED: "zone_not_owned",
2344
2329
  DELEGATION_MISSING: "delegation_missing",
@@ -149,7 +149,6 @@ export const VANITY_NAMESERVER_SETS_BY_SET_ID_ZONES_ENDPOINT = '/v1/vanity-names
149
149
  export const WHITELABEL_BRANDING_ENDPOINT = '/v1/whitelabel-branding';
150
150
  export const WHITELABEL_BRANDING_ASSETS_ENDPOINT = '/v1/whitelabel-branding/assets';
151
151
  export const WHITELABEL_BRANDING_ASSETS_BY_ASSET_ID_ENDPOINT = '/v1/whitelabel-branding/assets/{asset_id}';
152
- export const WHITELABEL_BRANDING_DNS_CHECK_ENDPOINT = '/v1/whitelabel-branding/dns-check';
153
152
  export const WHITELABEL_BRANDING_DOCUMENT_ENDPOINT = '/v1/whitelabel-branding/document';
154
153
  export const WHITELABEL_BRANDING_EMAIL_PREVIEW_ENDPOINT = '/v1/whitelabel-branding/email/preview';
155
154
  export const WHITELABEL_BRANDING_EMAIL_TEMPLATES_ENDPOINT = '/v1/whitelabel-branding/email/templates';
@@ -309,7 +308,6 @@ export type Endpoint =
309
308
  | typeof WHITELABEL_BRANDING_ENDPOINT
310
309
  | typeof WHITELABEL_BRANDING_ASSETS_ENDPOINT
311
310
  | typeof WHITELABEL_BRANDING_ASSETS_BY_ASSET_ID_ENDPOINT
312
- | typeof WHITELABEL_BRANDING_DNS_CHECK_ENDPOINT
313
311
  | typeof WHITELABEL_BRANDING_DOCUMENT_ENDPOINT
314
312
  | typeof WHITELABEL_BRANDING_EMAIL_PREVIEW_ENDPOINT
315
313
  | typeof WHITELABEL_BRANDING_EMAIL_TEMPLATES_ENDPOINT
@@ -446,8 +446,6 @@ import type {
446
446
  WhitelabelBrandingPatch,
447
447
  WhitelabelBrandingRecheck,
448
448
  WhitelabelBranding,
449
- WhitelabelDnsCheckItem,
450
- WhitelabelDnsCheck,
451
449
  WhitelabelPlusCreate,
452
450
  WhitelabelSubscriptionInfo,
453
451
  WhitelabelUpgradeToPlus,
@@ -6066,32 +6064,6 @@ export const KEYS_WHITELABEL_BRANDING = [
6066
6064
  KEY_WHITELABEL_BRANDING_WHITELABEL_BRANDING_ID,
6067
6065
  ] as const satisfies (keyof WhitelabelBranding)[];
6068
6066
 
6069
- export const KEY_WHITELABEL_DNS_CHECK_ITEM_EXPECTED = 'expected' satisfies keyof WhitelabelDnsCheckItem;
6070
- export const KEY_WHITELABEL_DNS_CHECK_ITEM_NAME = 'name' satisfies keyof WhitelabelDnsCheckItem;
6071
- export const KEY_WHITELABEL_DNS_CHECK_ITEM_OBSERVED = 'observed' satisfies keyof WhitelabelDnsCheckItem;
6072
- export const KEY_WHITELABEL_DNS_CHECK_ITEM_OK = 'ok' satisfies keyof WhitelabelDnsCheckItem;
6073
- export const KEY_WHITELABEL_DNS_CHECK_ITEM_REASON = 'reason' satisfies keyof WhitelabelDnsCheckItem;
6074
- export const KEY_WHITELABEL_DNS_CHECK_ITEM_REQUIRED = 'required' satisfies keyof WhitelabelDnsCheckItem;
6075
- export const KEY_WHITELABEL_DNS_CHECK_ITEM_TYPE = 'type' satisfies keyof WhitelabelDnsCheckItem;
6076
-
6077
- export const KEYS_WHITELABEL_DNS_CHECK_ITEM = [
6078
- KEY_WHITELABEL_DNS_CHECK_ITEM_EXPECTED,
6079
- KEY_WHITELABEL_DNS_CHECK_ITEM_NAME,
6080
- KEY_WHITELABEL_DNS_CHECK_ITEM_OBSERVED,
6081
- KEY_WHITELABEL_DNS_CHECK_ITEM_OK,
6082
- KEY_WHITELABEL_DNS_CHECK_ITEM_REASON,
6083
- KEY_WHITELABEL_DNS_CHECK_ITEM_REQUIRED,
6084
- KEY_WHITELABEL_DNS_CHECK_ITEM_TYPE,
6085
- ] as const satisfies (keyof WhitelabelDnsCheckItem)[];
6086
-
6087
- export const KEY_WHITELABEL_DNS_CHECK_CHECKS = 'checks' satisfies keyof WhitelabelDnsCheck;
6088
- export const KEY_WHITELABEL_DNS_CHECK_READY = 'ready' satisfies keyof WhitelabelDnsCheck;
6089
-
6090
- export const KEYS_WHITELABEL_DNS_CHECK = [
6091
- KEY_WHITELABEL_DNS_CHECK_CHECKS,
6092
- KEY_WHITELABEL_DNS_CHECK_READY,
6093
- ] as const satisfies (keyof WhitelabelDnsCheck)[];
6094
-
6095
6067
  export const KEY_WHITELABEL_PLUS_CREATE_AUTH_SUBDOMAIN = 'auth_subdomain' satisfies keyof WhitelabelPlusCreate;
6096
6068
  export const KEY_WHITELABEL_PLUS_CREATE_CREATE_ZONE = 'create_zone' satisfies keyof WhitelabelPlusCreate;
6097
6069
  export const KEY_WHITELABEL_PLUS_CREATE_DASHBOARD_SUBDOMAIN = 'dashboard_subdomain' satisfies keyof WhitelabelPlusCreate;
@@ -152,7 +152,6 @@ import {
152
152
  VANITY_NAMESERVER_SETS_ENDPOINT,
153
153
  WHITELABEL_BRANDING_ASSETS_BY_ASSET_ID_ENDPOINT,
154
154
  WHITELABEL_BRANDING_ASSETS_ENDPOINT,
155
- WHITELABEL_BRANDING_DNS_CHECK_ENDPOINT,
156
155
  WHITELABEL_BRANDING_DOCUMENT_ENDPOINT,
157
156
  WHITELABEL_BRANDING_EMAIL_PREVIEW_ENDPOINT,
158
157
  WHITELABEL_BRANDING_EMAIL_TEMPLATES_ENDPOINT,
@@ -1278,13 +1277,6 @@ export const REQUIRED_PERMISSIONS = {
1278
1277
  patch: [],
1279
1278
  delete: [],
1280
1279
  },
1281
- [WHITELABEL_BRANDING_DNS_CHECK_ENDPOINT]: {
1282
- get: [PUBLIC_PERMISSION.WHITELABEL_BRANDING_READ],
1283
- post: [],
1284
- put: [],
1285
- patch: [],
1286
- delete: [],
1287
- },
1288
1280
  [WHITELABEL_BRANDING_DOCUMENT_ENDPOINT]: {
1289
1281
  get: [PUBLIC_PERMISSION.WHITELABEL_BRANDING_READ],
1290
1282
  post: [PUBLIC_PERMISSION.WHITELABEL_BRANDING_MANAGE],
@@ -1203,9 +1203,6 @@ export type DELETE_WhitelabelBrandingAssetsByAssetId_Request = {
1203
1203
  };
1204
1204
  export type DELETE_WhitelabelBrandingAssetsByAssetId_Request_Path = DELETE_WhitelabelBrandingAssetsByAssetId_Request['parameters']['path'];
1205
1205
 
1206
- export type GET_WhitelabelBrandingDnsCheck_Request = {
1207
- };
1208
-
1209
1206
  export type GET_WhitelabelBrandingDocument_Request = {
1210
1207
  };
1211
1208
 
@@ -120,7 +120,6 @@ import type {
120
120
  VanityNameserverSetSummaryDTO,
121
121
  VanityNsCheckRes,
122
122
  WhitelabelBranding,
123
- WhitelabelDnsCheck,
124
123
  } from './schemas';
125
124
 
126
125
  export type DELETE_AiConciergeConversationsByConversationId_Response = DELETE_AiConciergeConversationsByConversationId_Response_401 | DELETE_AiConciergeConversationsByConversationId_Response_404 | DELETE_AiConciergeConversationsByConversationId_Response_422 | DELETE_AiConciergeConversationsByConversationId_Response_502;
@@ -888,11 +887,6 @@ export type GET_WhitelabelBrandingAssets_Response = GET_WhitelabelBrandingAssets
888
887
  export type GET_WhitelabelBrandingAssets_Response_200 = ListBrandingAssets;
889
888
  export type GET_WhitelabelBrandingAssets_Response_422 = HTTPValidationError;
890
889
 
891
- export type GET_WhitelabelBrandingDnsCheck_Response = GET_WhitelabelBrandingDnsCheck_Response_200 | GET_WhitelabelBrandingDnsCheck_Response_422;
892
-
893
- export type GET_WhitelabelBrandingDnsCheck_Response_200 = WhitelabelDnsCheck;
894
- export type GET_WhitelabelBrandingDnsCheck_Response_422 = HTTPValidationError;
895
-
896
890
  export type GET_WhitelabelBrandingDocument_Response = GET_WhitelabelBrandingDocument_Response_200 | GET_WhitelabelBrandingDocument_Response_422;
897
891
 
898
892
  export type GET_WhitelabelBrandingDocument_Response_200 = BrandingDocument;
@@ -594,9 +594,6 @@ export type WhitelabelBrandingPatch = components['schemas']['WhitelabelBrandingP
594
594
  export type WhitelabelBrandingRecheck = components['schemas']['WhitelabelBrandingRecheck'];
595
595
  export type WhitelabelBranding = components['schemas']['WhitelabelBrandingResponse'];
596
596
  export type WhitelabelBrandingTier = components['schemas']['WhitelabelBrandingTier'];
597
- export type WhitelabelDnsCheckItem = components['schemas']['WhitelabelDnsCheckItem'];
598
- export type WhitelabelDnsCheckReason = components['schemas']['WhitelabelDnsCheckReason'];
599
- export type WhitelabelDnsCheck = components['schemas']['WhitelabelDnsCheckResponse'];
600
597
  export type WhitelabelOnboardingFailureCode = components['schemas']['WhitelabelOnboardingFailureCode'];
601
598
  export type WhitelabelOnboardingFailureType = components['schemas']['WhitelabelOnboardingFailureType'];
602
599
  export type WhitelabelOnboardingStatus = components['schemas']['WhitelabelOnboardingStatus'];
package/src/openapi.yaml CHANGED
@@ -15715,64 +15715,6 @@ components:
15715
15715
  - plus
15716
15716
  title: WhitelabelBrandingTier
15717
15717
  type: string
15718
- WhitelabelDnsCheckItem:
15719
- properties:
15720
- expected:
15721
- items:
15722
- type: string
15723
- title: Expected
15724
- type: array
15725
- name:
15726
- title: Name
15727
- type: string
15728
- observed:
15729
- items:
15730
- type: string
15731
- title: Observed
15732
- type: array
15733
- ok:
15734
- title: Ok
15735
- type: boolean
15736
- reason:
15737
- $ref: '#/components/schemas/WhitelabelDnsCheckReason'
15738
- required:
15739
- default: true
15740
- title: Required
15741
- type: boolean
15742
- type:
15743
- $ref: '#/components/schemas/DnsRrsetType'
15744
- required:
15745
- - name
15746
- - type
15747
- - expected
15748
- - observed
15749
- - ok
15750
- - reason
15751
- title: WhitelabelDnsCheckItem
15752
- type: object
15753
- WhitelabelDnsCheckReason:
15754
- enum:
15755
- - verified
15756
- - missing
15757
- - mismatch
15758
- - dns_error
15759
- title: WhitelabelDnsCheckReason
15760
- type: string
15761
- WhitelabelDnsCheckResponse:
15762
- properties:
15763
- checks:
15764
- items:
15765
- $ref: '#/components/schemas/WhitelabelDnsCheckItem'
15766
- title: Checks
15767
- type: array
15768
- ready:
15769
- title: Ready
15770
- type: boolean
15771
- required:
15772
- - ready
15773
- - checks
15774
- title: WhitelabelDnsCheckResponse
15775
- type: object
15776
15718
  WhitelabelOnboardingFailureCode:
15777
15719
  description: 'Stable, frontend-facing reason a terminal onboarding failure happened.
15778
15720
  The free-text
@@ -16485,7 +16427,7 @@ info:
16485
16427
  \n\n"
16486
16428
  summary: OpusDNS - your gateway to a seamless domain management experience.
16487
16429
  title: OpusDNS API
16488
- version: 2026-09-10-085639
16430
+ version: 2026-09-10-090448
16489
16431
  x-logo:
16490
16432
  altText: OpusDNS API Reference
16491
16433
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -34374,33 +34316,6 @@ paths:
34374
34316
  - whitelabel
34375
34317
  x-required-permissions:
34376
34318
  - whitelabel_branding:manage
34377
- /v1/whitelabel-branding/dns-check:
34378
- get:
34379
- operationId: check_whitelabel_dns_v1_whitelabel_branding_dns_check_get
34380
- parameters:
34381
- - $ref: '#/components/parameters/DatetimeFormatHeader'
34382
- responses:
34383
- '200':
34384
- content:
34385
- application/json:
34386
- schema:
34387
- $ref: '#/components/schemas/WhitelabelDnsCheckResponse'
34388
- description: Successful Response
34389
- '422':
34390
- content:
34391
- application/problem+json:
34392
- schema:
34393
- $ref: '#/components/schemas/HTTPValidationError'
34394
- description: Validation Error
34395
- security:
34396
- - OAuth2PasswordBearer: []
34397
- - APIKeyHeader: []
34398
- summary: Check whether the whitelabel's DNS (delegation + serving records) resolves
34399
- yet
34400
- tags:
34401
- - whitelabel
34402
- x-required-permissions:
34403
- - whitelabel_branding:read
34404
34319
  /v1/whitelabel-branding/document:
34405
34320
  get:
34406
34321
  operationId: get_whitelabel_document_v1_whitelabel_branding_document_get
package/src/schema.d.ts CHANGED
@@ -3067,23 +3067,6 @@ export interface paths {
3067
3067
  patch?: never;
3068
3068
  trace?: never;
3069
3069
  };
3070
- "/v1/whitelabel-branding/dns-check": {
3071
- parameters: {
3072
- query?: never;
3073
- header?: never;
3074
- path?: never;
3075
- cookie?: never;
3076
- };
3077
- /** Check whether the whitelabel's DNS (delegation + serving records) resolves yet */
3078
- get: operations["check_whitelabel_dns_v1_whitelabel_branding_dns_check_get"];
3079
- put?: never;
3080
- post?: never;
3081
- delete?: never;
3082
- options?: never;
3083
- head?: never;
3084
- patch?: never;
3085
- trace?: never;
3086
- };
3087
3070
  "/v1/whitelabel-branding/document": {
3088
3071
  parameters: {
3089
3072
  query?: never;
@@ -13594,36 +13577,6 @@ export interface components {
13594
13577
  * @enum {string}
13595
13578
  */
13596
13579
  WhitelabelBrandingTier: "base" | "plus";
13597
- /** WhitelabelDnsCheckItem */
13598
- WhitelabelDnsCheckItem: {
13599
- /** Expected */
13600
- expected: string[];
13601
- /** Name */
13602
- name: string;
13603
- /** Observed */
13604
- observed: string[];
13605
- /** Ok */
13606
- ok: boolean;
13607
- reason: components["schemas"]["WhitelabelDnsCheckReason"];
13608
- /**
13609
- * Required
13610
- * @default true
13611
- */
13612
- required: boolean;
13613
- type: components["schemas"]["DnsRrsetType"];
13614
- };
13615
- /**
13616
- * WhitelabelDnsCheckReason
13617
- * @enum {string}
13618
- */
13619
- WhitelabelDnsCheckReason: "verified" | "missing" | "mismatch" | "dns_error";
13620
- /** WhitelabelDnsCheckResponse */
13621
- WhitelabelDnsCheckResponse: {
13622
- /** Checks */
13623
- checks: components["schemas"]["WhitelabelDnsCheckItem"][];
13624
- /** Ready */
13625
- ready: boolean;
13626
- };
13627
13580
  /**
13628
13581
  * WhitelabelOnboardingFailureCode
13629
13582
  * @description Stable, frontend-facing reason a terminal onboarding failure happened. The free-text
@@ -28786,41 +28739,6 @@ export interface operations {
28786
28739
  };
28787
28740
  };
28788
28741
  };
28789
- check_whitelabel_dns_v1_whitelabel_branding_dns_check_get: {
28790
- parameters: {
28791
- query?: never;
28792
- header?: {
28793
- /**
28794
- * @description Opt in to RFC 3339 datetime serialization. When set to `rfc3339`, response datetimes are normalized to UTC and serialized with a `Z` suffix. This is opt-in until the announced default cutover date, after which RFC 3339 becomes the default and this header is accepted as a no-op. Any other value or omission uses the current default serialization.
28795
- * @example rfc3339
28796
- */
28797
- "X-Datetime-Format"?: components["parameters"]["DatetimeFormatHeader"];
28798
- };
28799
- path?: never;
28800
- cookie?: never;
28801
- };
28802
- requestBody?: never;
28803
- responses: {
28804
- /** @description Successful Response */
28805
- 200: {
28806
- headers: {
28807
- [name: string]: unknown;
28808
- };
28809
- content: {
28810
- "application/json": components["schemas"]["WhitelabelDnsCheckResponse"];
28811
- };
28812
- };
28813
- /** @description Validation Error */
28814
- 422: {
28815
- headers: {
28816
- [name: string]: unknown;
28817
- };
28818
- content: {
28819
- "application/problem+json": components["schemas"]["HTTPValidationError"];
28820
- };
28821
- };
28822
- };
28823
- };
28824
28742
  get_whitelabel_document_v1_whitelabel_branding_document_get: {
28825
28743
  parameters: {
28826
28744
  query?: never;