@opusdns/api 1.118.0 → 1.119.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.118.0",
6
+ "version": "1.119.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -1179,6 +1179,9 @@ export type GET_WhitelabelBrandingEmailTemplates_Request = {
1179
1179
  export type POST_WhitelabelBrandingRecheck_Request = {
1180
1180
  };
1181
1181
 
1182
+ export type POST_WhitelabelBrandingRestore_Request = {
1183
+ };
1184
+
1182
1185
  export type POST_WhitelabelBrandingTier_Request = {
1183
1186
  requestBody: WhitelabelUpgradeToPlus;
1184
1187
  };
@@ -1423,6 +1423,11 @@ export type POST_WhitelabelBrandingRecheck_Response = POST_WhitelabelBrandingRec
1423
1423
  export type POST_WhitelabelBrandingRecheck_Response_202 = WhitelabelBranding;
1424
1424
  export type POST_WhitelabelBrandingRecheck_Response_422 = HTTPValidationError;
1425
1425
 
1426
+ export type POST_WhitelabelBrandingRestore_Response = POST_WhitelabelBrandingRestore_Response_200 | POST_WhitelabelBrandingRestore_Response_422;
1427
+
1428
+ export type POST_WhitelabelBrandingRestore_Response_200 = WhitelabelBranding;
1429
+ export type POST_WhitelabelBrandingRestore_Response_422 = HTTPValidationError;
1430
+
1426
1431
  export type POST_WhitelabelBrandingTier_Response = POST_WhitelabelBrandingTier_Response_202 | POST_WhitelabelBrandingTier_Response_422;
1427
1432
 
1428
1433
  export type POST_WhitelabelBrandingTier_Response_202 = ProductCreateRes;
package/src/openapi.yaml CHANGED
@@ -15534,7 +15534,7 @@ info:
15534
15534
  \n\n"
15535
15535
  summary: OpusDNS - your gateway to a seamless domain management experience.
15536
15536
  title: OpusDNS API
15537
- version: 2026-08-18-083654
15537
+ version: 2026-08-18-090726
15538
15538
  x-logo:
15539
15539
  altText: OpusDNS API Reference
15540
15540
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -32774,6 +32774,33 @@ paths:
32774
32774
  - whitelabel
32775
32775
  x-required-permissions:
32776
32776
  - whitelabel_branding:manage
32777
+ /v1/whitelabel-branding/restore:
32778
+ post:
32779
+ operationId: restore_whitelabel_branding_v1_whitelabel_branding_restore_post
32780
+ parameters:
32781
+ - $ref: '#/components/parameters/DatetimeFormatHeader'
32782
+ responses:
32783
+ '200':
32784
+ content:
32785
+ application/json:
32786
+ schema:
32787
+ $ref: '#/components/schemas/WhitelabelBrandingResponse'
32788
+ description: Successful Response
32789
+ '422':
32790
+ content:
32791
+ application/problem+json:
32792
+ schema:
32793
+ $ref: '#/components/schemas/HTTPValidationError'
32794
+ description: Validation Error
32795
+ security:
32796
+ - OAuth2PasswordBearer: []
32797
+ - APIKeyHeader: []
32798
+ summary: Restore a terminated whitelabel (re-enable and reprovision from the
32799
+ preserved state)
32800
+ tags:
32801
+ - whitelabel
32802
+ x-required-permissions:
32803
+ - whitelabel_branding:manage
32777
32804
  /v1/whitelabel-branding/tier:
32778
32805
  post:
32779
32806
  operationId: upgrade_whitelabel_to_plus_v1_whitelabel_branding_tier_post
package/src/schema.d.ts CHANGED
@@ -2998,6 +2998,23 @@ export interface paths {
2998
2998
  patch?: never;
2999
2999
  trace?: never;
3000
3000
  };
3001
+ "/v1/whitelabel-branding/restore": {
3002
+ parameters: {
3003
+ query?: never;
3004
+ header?: never;
3005
+ path?: never;
3006
+ cookie?: never;
3007
+ };
3008
+ get?: never;
3009
+ put?: never;
3010
+ /** Restore a terminated whitelabel (re-enable and reprovision from the preserved state) */
3011
+ post: operations["restore_whitelabel_branding_v1_whitelabel_branding_restore_post"];
3012
+ delete?: never;
3013
+ options?: never;
3014
+ head?: never;
3015
+ patch?: never;
3016
+ trace?: never;
3017
+ };
3001
3018
  "/v1/whitelabel-branding/tier": {
3002
3019
  parameters: {
3003
3020
  query?: never;
@@ -27487,6 +27504,41 @@ export interface operations {
27487
27504
  };
27488
27505
  };
27489
27506
  };
27507
+ restore_whitelabel_branding_v1_whitelabel_branding_restore_post: {
27508
+ parameters: {
27509
+ query?: never;
27510
+ header?: {
27511
+ /**
27512
+ * @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.
27513
+ * @example rfc3339
27514
+ */
27515
+ "X-Datetime-Format"?: components["parameters"]["DatetimeFormatHeader"];
27516
+ };
27517
+ path?: never;
27518
+ cookie?: never;
27519
+ };
27520
+ requestBody?: never;
27521
+ responses: {
27522
+ /** @description Successful Response */
27523
+ 200: {
27524
+ headers: {
27525
+ [name: string]: unknown;
27526
+ };
27527
+ content: {
27528
+ "application/json": components["schemas"]["WhitelabelBrandingResponse"];
27529
+ };
27530
+ };
27531
+ /** @description Validation Error */
27532
+ 422: {
27533
+ headers: {
27534
+ [name: string]: unknown;
27535
+ };
27536
+ content: {
27537
+ "application/problem+json": components["schemas"]["HTTPValidationError"];
27538
+ };
27539
+ };
27540
+ };
27541
+ };
27490
27542
  upgrade_whitelabel_to_plus_v1_whitelabel_branding_tier_post: {
27491
27543
  parameters: {
27492
27544
  query?: never;