@opusdns/api 0.210.0 → 0.211.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 +27 -0
- package/src/openapi.yaml +6 -1
- package/src/schema.d.ts +6 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -1829,6 +1829,32 @@ export const KEY_CONTACT_ATTRIBUTE_SET_CREATED_ON: keyof ContactAttributeSet = '
|
|
|
1829
1829
|
* @see {@link KEYS_CONTACT_ATTRIBUTE_SET} - Array of all keys for this type
|
|
1830
1830
|
*/
|
|
1831
1831
|
export const KEY_CONTACT_ATTRIBUTE_SET_LABEL: keyof ContactAttributeSet = 'label';
|
|
1832
|
+
/**
|
|
1833
|
+
* Linked Contacts
|
|
1834
|
+
*
|
|
1835
|
+
* Number of contacts linked to this attribute set
|
|
1836
|
+
*
|
|
1837
|
+
* @type {integer}
|
|
1838
|
+
*
|
|
1839
|
+
*
|
|
1840
|
+
* @remarks
|
|
1841
|
+
* This key constant provides type-safe access to the `linked_contacts` property of ContactAttributeSet objects.
|
|
1842
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1843
|
+
*
|
|
1844
|
+
* @example
|
|
1845
|
+
* ```typescript
|
|
1846
|
+
* // Direct property access
|
|
1847
|
+
* const value = contactattributeset[KEY_CONTACT_ATTRIBUTE_SET_LINKED_CONTACTS];
|
|
1848
|
+
*
|
|
1849
|
+
* // Dynamic property access
|
|
1850
|
+
* const propertyName = KEY_CONTACT_ATTRIBUTE_SET_LINKED_CONTACTS;
|
|
1851
|
+
* const value = contactattributeset[propertyName];
|
|
1852
|
+
* ```
|
|
1853
|
+
*
|
|
1854
|
+
* @see {@link ContactAttributeSet} - The TypeScript type definition
|
|
1855
|
+
* @see {@link KEYS_CONTACT_ATTRIBUTE_SET} - Array of all keys for this type
|
|
1856
|
+
*/
|
|
1857
|
+
export const KEY_CONTACT_ATTRIBUTE_SET_LINKED_CONTACTS: keyof ContactAttributeSet = 'linked_contacts';
|
|
1832
1858
|
/**
|
|
1833
1859
|
* Organization Id
|
|
1834
1860
|
*
|
|
@@ -1933,6 +1959,7 @@ export const KEYS_CONTACT_ATTRIBUTE_SET = [
|
|
|
1933
1959
|
KEY_CONTACT_ATTRIBUTE_SET_CONTACT_ATTRIBUTE_SET_ID,
|
|
1934
1960
|
KEY_CONTACT_ATTRIBUTE_SET_CREATED_ON,
|
|
1935
1961
|
KEY_CONTACT_ATTRIBUTE_SET_LABEL,
|
|
1962
|
+
KEY_CONTACT_ATTRIBUTE_SET_LINKED_CONTACTS,
|
|
1936
1963
|
KEY_CONTACT_ATTRIBUTE_SET_ORGANIZATION_ID,
|
|
1937
1964
|
KEY_CONTACT_ATTRIBUTE_SET_TLD,
|
|
1938
1965
|
KEY_CONTACT_ATTRIBUTE_SET_UPDATED_ON,
|
package/src/openapi.yaml
CHANGED
|
@@ -444,6 +444,11 @@ components:
|
|
|
444
444
|
minLength: 1
|
|
445
445
|
title: Label
|
|
446
446
|
type: string
|
|
447
|
+
linked_contacts:
|
|
448
|
+
default: 0
|
|
449
|
+
description: Number of contacts linked to this attribute set
|
|
450
|
+
title: Linked Contacts
|
|
451
|
+
type: integer
|
|
447
452
|
organization_id:
|
|
448
453
|
description: The organization that owns this attribute set
|
|
449
454
|
examples:
|
|
@@ -7213,7 +7218,7 @@ info:
|
|
|
7213
7218
|
'
|
|
7214
7219
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
7215
7220
|
title: OpusDNS API
|
|
7216
|
-
version: 2026-03-02-
|
|
7221
|
+
version: 2026-03-02-094551
|
|
7217
7222
|
x-logo:
|
|
7218
7223
|
altText: OpusDNS API Reference
|
|
7219
7224
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -2238,6 +2238,12 @@ export interface components {
|
|
|
2238
2238
|
* @description A human-readable label explaining the purpose of this attribute set
|
|
2239
2239
|
*/
|
|
2240
2240
|
label: string;
|
|
2241
|
+
/**
|
|
2242
|
+
* Linked Contacts
|
|
2243
|
+
* @description Number of contacts linked to this attribute set
|
|
2244
|
+
* @default 0
|
|
2245
|
+
*/
|
|
2246
|
+
linked_contacts: number;
|
|
2241
2247
|
/**
|
|
2242
2248
|
* Organization Id
|
|
2243
2249
|
* Format: typeid
|