@opusdns/api 0.172.0 → 0.173.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 +1 -1
- package/src/helpers/keys.ts +25 -0
- package/src/openapi.yaml +12 -1
- package/src/schema.d.ts +2 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -6775,6 +6775,30 @@ export const KEY_DOMAIN_FORWARD_HTTP: keyof DomainForward = 'http';
|
|
|
6775
6775
|
* @see {@link KEYS_DOMAIN_FORWARD} - Array of all keys for this type
|
|
6776
6776
|
*/
|
|
6777
6777
|
export const KEY_DOMAIN_FORWARD_HTTPS: keyof DomainForward = 'https';
|
|
6778
|
+
/**
|
|
6779
|
+
* Parking Id
|
|
6780
|
+
*
|
|
6781
|
+
*
|
|
6782
|
+
*
|
|
6783
|
+
*
|
|
6784
|
+
* @remarks
|
|
6785
|
+
* This key constant provides type-safe access to the `parking_id` property of DomainForward objects.
|
|
6786
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6787
|
+
*
|
|
6788
|
+
* @example
|
|
6789
|
+
* ```typescript
|
|
6790
|
+
* // Direct property access
|
|
6791
|
+
* const value = domainforward[KEY_DOMAIN_FORWARD_PARKING_ID];
|
|
6792
|
+
*
|
|
6793
|
+
* // Dynamic property access
|
|
6794
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PARKING_ID;
|
|
6795
|
+
* const value = domainforward[propertyName];
|
|
6796
|
+
* ```
|
|
6797
|
+
*
|
|
6798
|
+
* @see {@link DomainForward} - The TypeScript type definition
|
|
6799
|
+
* @see {@link KEYS_DOMAIN_FORWARD} - Array of all keys for this type
|
|
6800
|
+
*/
|
|
6801
|
+
export const KEY_DOMAIN_FORWARD_PARKING_ID: keyof DomainForward = 'parking_id';
|
|
6778
6802
|
/**
|
|
6779
6803
|
* Updated On
|
|
6780
6804
|
*
|
|
@@ -6827,6 +6851,7 @@ export const KEYS_DOMAIN_FORWARD = [
|
|
|
6827
6851
|
KEY_DOMAIN_FORWARD_HOSTNAME,
|
|
6828
6852
|
KEY_DOMAIN_FORWARD_HTTP,
|
|
6829
6853
|
KEY_DOMAIN_FORWARD_HTTPS,
|
|
6854
|
+
KEY_DOMAIN_FORWARD_PARKING_ID,
|
|
6830
6855
|
KEY_DOMAIN_FORWARD_UPDATED_ON,
|
|
6831
6856
|
] as const satisfies (keyof DomainForward)[];
|
|
6832
6857
|
|
package/src/openapi.yaml
CHANGED
|
@@ -1621,6 +1621,16 @@ components:
|
|
|
1621
1621
|
anyOf:
|
|
1622
1622
|
- $ref: '#/components/schemas/DomainForwardProtocolSetResponse'
|
|
1623
1623
|
- type: 'null'
|
|
1624
|
+
parking_id:
|
|
1625
|
+
anyOf:
|
|
1626
|
+
- examples:
|
|
1627
|
+
- parking_01h45ytscbebyvny4gc8cr8ma2
|
|
1628
|
+
format: typeid
|
|
1629
|
+
pattern: ^parking_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
1630
|
+
type: string
|
|
1631
|
+
x-typeid-prefix: parking
|
|
1632
|
+
- type: 'null'
|
|
1633
|
+
title: Parking Id
|
|
1624
1634
|
updated_on:
|
|
1625
1635
|
format: date-time
|
|
1626
1636
|
title: Updated On
|
|
@@ -1630,6 +1640,7 @@ components:
|
|
|
1630
1640
|
- enabled
|
|
1631
1641
|
- updated_on
|
|
1632
1642
|
- created_on
|
|
1643
|
+
- parking_id
|
|
1633
1644
|
title: DomainForward
|
|
1634
1645
|
type: object
|
|
1635
1646
|
DomainForwardBrowserStatsResponse:
|
|
@@ -6909,7 +6920,7 @@ info:
|
|
|
6909
6920
|
'
|
|
6910
6921
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6911
6922
|
title: OpusDNS API
|
|
6912
|
-
version: 2026-01-27-
|
|
6923
|
+
version: 2026-01-27-110709
|
|
6913
6924
|
x-logo:
|
|
6914
6925
|
altText: OpusDNS API Reference
|
|
6915
6926
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -2956,6 +2956,8 @@ export interface components {
|
|
|
2956
2956
|
hostname: string;
|
|
2957
2957
|
http?: components["schemas"]["DomainForwardProtocolSetResponse"] | null;
|
|
2958
2958
|
https?: components["schemas"]["DomainForwardProtocolSetResponse"] | null;
|
|
2959
|
+
/** Parking Id */
|
|
2960
|
+
parking_id: TypeId<"parking"> | null;
|
|
2959
2961
|
/**
|
|
2960
2962
|
* Updated On
|
|
2961
2963
|
* Format: date-time
|