@opusdns/api 0.172.0 → 0.174.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/constants.ts +3 -1
- package/src/helpers/keys.ts +25 -0
- package/src/openapi.yaml +13 -1
- package/src/schema.d.ts +3 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -3208,6 +3208,7 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
3208
3208
|
ROTLD_CONTACT_TYPE: "ROTLD_CONTACT_TYPE",
|
|
3209
3209
|
ROTLD_FISCAL_CODE: "ROTLD_FISCAL_CODE",
|
|
3210
3210
|
ROTLD_REGISTRATION_NUMBER: "ROTLD_REGISTRATION_NUMBER",
|
|
3211
|
+
ROTLD_DOMAIN_NAME: "ROTLD_DOMAIN_NAME",
|
|
3211
3212
|
} as const satisfies Record<string, RegistryHandleAttributeType>;
|
|
3212
3213
|
|
|
3213
3214
|
/**
|
|
@@ -3255,7 +3256,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
|
3255
3256
|
'AFNIC_RESTRICTED_PUBLICATION',
|
|
3256
3257
|
'ROTLD_CONTACT_TYPE',
|
|
3257
3258
|
'ROTLD_FISCAL_CODE',
|
|
3258
|
-
'ROTLD_REGISTRATION_NUMBER'
|
|
3259
|
+
'ROTLD_REGISTRATION_NUMBER',
|
|
3260
|
+
'ROTLD_DOMAIN_NAME'
|
|
3259
3261
|
] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
|
|
3260
3262
|
|
|
3261
3263
|
/**
|
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:
|
|
@@ -5459,6 +5470,7 @@ components:
|
|
|
5459
5470
|
- ROTLD_CONTACT_TYPE
|
|
5460
5471
|
- ROTLD_FISCAL_CODE
|
|
5461
5472
|
- ROTLD_REGISTRATION_NUMBER
|
|
5473
|
+
- ROTLD_DOMAIN_NAME
|
|
5462
5474
|
title: RegistryHandleAttributeType
|
|
5463
5475
|
type: string
|
|
5464
5476
|
RegistryLockBase:
|
|
@@ -6909,7 +6921,7 @@ info:
|
|
|
6909
6921
|
'
|
|
6910
6922
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6911
6923
|
title: OpusDNS API
|
|
6912
|
-
version: 2026-01-27-
|
|
6924
|
+
version: 2026-01-27-214713
|
|
6913
6925
|
x-logo:
|
|
6914
6926
|
altText: OpusDNS API Reference
|
|
6915
6927
|
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
|
|
@@ -5449,7 +5451,7 @@ export interface components {
|
|
|
5449
5451
|
* @description Registry handle attribute types for type-safe attribute key access.
|
|
5450
5452
|
* @enum {string}
|
|
5451
5453
|
*/
|
|
5452
|
-
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_FISCAL_CODE" | "ROTLD_REGISTRATION_NUMBER";
|
|
5454
|
+
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_FISCAL_CODE" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME";
|
|
5453
5455
|
/** RegistryLockBase */
|
|
5454
5456
|
RegistryLockBase: {
|
|
5455
5457
|
/**
|