@opusdns/api 0.289.0 → 0.291.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 +257 -1
- package/src/helpers/keys.ts +2206 -291
- package/src/helpers/requests.d.ts +45 -5
- package/src/helpers/responses.d.ts +123 -10
- package/src/helpers/schemas-arrays.d.ts +141 -1
- package/src/helpers/schemas.d.ts +368 -16
- package/src/openapi.yaml +644 -132
- package/src/schema.d.ts +458 -88
package/src/helpers/keys.ts
CHANGED
|
@@ -36,6 +36,9 @@ import { BillingPlan } from './schemas';
|
|
|
36
36
|
import { BillingTransaction } from './schemas';
|
|
37
37
|
import { BrowserStatsBucket } from './schemas';
|
|
38
38
|
import { BulkObjectTagChanges } from './schemas';
|
|
39
|
+
import { ClaimsNotice } from './schemas';
|
|
40
|
+
import { ClaimsNoticesRequest } from './schemas';
|
|
41
|
+
import { ClaimsNotices } from './schemas';
|
|
39
42
|
import { CommandError } from './schemas';
|
|
40
43
|
import { ContactAttributeDefinition } from './schemas';
|
|
41
44
|
import { ContactAttributeLinkDetail } from './schemas';
|
|
@@ -150,6 +153,7 @@ import { DomainNameParts } from './schemas';
|
|
|
150
153
|
import { DomainPeriod } from './schemas';
|
|
151
154
|
import { DomainRenewRequest } from './schemas';
|
|
152
155
|
import { DomainRenew } from './schemas';
|
|
156
|
+
import { DomainRenewalDetails } from './schemas';
|
|
153
157
|
import { Domain } from './schemas';
|
|
154
158
|
import { DomainRestoreRequest } from './schemas';
|
|
155
159
|
import { DomainRestore } from './schemas';
|
|
@@ -179,6 +183,7 @@ import { DomainUpdateBulkTemplate } from './schemas';
|
|
|
179
183
|
import { DomainUpdateCommand } from './schemas';
|
|
180
184
|
import { DomainUpdatePayloadData } from './schemas';
|
|
181
185
|
import { DomainUpdateWorkerPayload } from './schemas';
|
|
186
|
+
import { DomainVerificationDetails } from './schemas';
|
|
182
187
|
import { DomainWithdrawRequest } from './schemas';
|
|
183
188
|
import { DomainWithdraw } from './schemas';
|
|
184
189
|
import { DomainsExpiringSoon } from './schemas';
|
|
@@ -195,8 +200,9 @@ import { EmailForwardMetricsFilters } from './schemas';
|
|
|
195
200
|
import { EmailForwardMetricsRates } from './schemas';
|
|
196
201
|
import { EmailForward } from './schemas';
|
|
197
202
|
import { EmailForwardZone } from './schemas';
|
|
203
|
+
import { EventData } from './schemas';
|
|
204
|
+
import { EventError } from './schemas';
|
|
198
205
|
import { EventResponse } from './schemas';
|
|
199
|
-
import { EventSchema } from './schemas';
|
|
200
206
|
import { GeneralAvailabilityBase } from './schemas';
|
|
201
207
|
import { GeoStatsBucket } from './schemas';
|
|
202
208
|
import { GetPrices } from './schemas';
|
|
@@ -302,6 +308,15 @@ import { TimeSeriesBucket } from './schemas';
|
|
|
302
308
|
import { TldBase } from './schemas';
|
|
303
309
|
import { TldResponseShort } from './schemas';
|
|
304
310
|
import { TldSpecification } from './schemas';
|
|
311
|
+
import { TmAddr } from './schemas';
|
|
312
|
+
import { TmClaim } from './schemas';
|
|
313
|
+
import { TmClassDesc } from './schemas';
|
|
314
|
+
import { TmContact } from './schemas';
|
|
315
|
+
import { TmCourt } from './schemas';
|
|
316
|
+
import { TmHolder } from './schemas';
|
|
317
|
+
import { TmJurDesc } from './schemas';
|
|
318
|
+
import { TmNotExactMatch } from './schemas';
|
|
319
|
+
import { TmUdrp } from './schemas';
|
|
305
320
|
import { TrademarkClaimsBase } from './schemas';
|
|
306
321
|
import { TransferLockPolicyBase } from './schemas';
|
|
307
322
|
import { TransferPoliciesBase } from './schemas';
|
|
@@ -316,6 +331,8 @@ import { UserToken } from './schemas';
|
|
|
316
331
|
import { UserUpdate } from './schemas';
|
|
317
332
|
import { UserWithRelationPermissions } from './schemas';
|
|
318
333
|
import { ValidationError } from './schemas';
|
|
334
|
+
import { VerificationDeadline } from './schemas';
|
|
335
|
+
import { VerificationRegistrantDetails } from './schemas';
|
|
319
336
|
import { VisitsByKeyBucket } from './schemas';
|
|
320
337
|
import { WhoisBase } from './schemas';
|
|
321
338
|
import { RequestAuthcode } from './schemas';
|
|
@@ -1413,6 +1430,401 @@ export const KEYS_BULK_OBJECT_TAG_CHANGES = [
|
|
|
1413
1430
|
KEY_BULK_OBJECT_TAG_CHANGES_TYPE,
|
|
1414
1431
|
] as const satisfies (keyof BulkObjectTagChanges)[];
|
|
1415
1432
|
|
|
1433
|
+
/**
|
|
1434
|
+
* Claims
|
|
1435
|
+
*
|
|
1436
|
+
* List of trademark claims
|
|
1437
|
+
*
|
|
1438
|
+
* @type {array}
|
|
1439
|
+
*
|
|
1440
|
+
*
|
|
1441
|
+
* @remarks
|
|
1442
|
+
* This key constant provides type-safe access to the `claims` property of ClaimsNotice objects.
|
|
1443
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1444
|
+
*
|
|
1445
|
+
* @example
|
|
1446
|
+
* ```typescript
|
|
1447
|
+
* // Direct property access
|
|
1448
|
+
* const value = claimsnotice[KEY_CLAIMS_NOTICE_CLAIMS];
|
|
1449
|
+
*
|
|
1450
|
+
* // Dynamic property access
|
|
1451
|
+
* const propertyName = KEY_CLAIMS_NOTICE_CLAIMS;
|
|
1452
|
+
* const value = claimsnotice[propertyName];
|
|
1453
|
+
* ```
|
|
1454
|
+
*
|
|
1455
|
+
* @see {@link ClaimsNotice} - The TypeScript type definition
|
|
1456
|
+
* @see {@link KEYS_CLAIMS_NOTICE} - Array of all keys for this type
|
|
1457
|
+
*/
|
|
1458
|
+
export const KEY_CLAIMS_NOTICE_CLAIMS: keyof ClaimsNotice = 'claims';
|
|
1459
|
+
/**
|
|
1460
|
+
* Claims Key
|
|
1461
|
+
*
|
|
1462
|
+
* The claims key used to retrieve this claims notice
|
|
1463
|
+
*
|
|
1464
|
+
* @type {string}
|
|
1465
|
+
*
|
|
1466
|
+
*
|
|
1467
|
+
* @remarks
|
|
1468
|
+
* This key constant provides type-safe access to the `claims_key` property of ClaimsNotice objects.
|
|
1469
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1470
|
+
*
|
|
1471
|
+
* @example
|
|
1472
|
+
* ```typescript
|
|
1473
|
+
* // Direct property access
|
|
1474
|
+
* const value = claimsnotice[KEY_CLAIMS_NOTICE_CLAIMS_KEY];
|
|
1475
|
+
*
|
|
1476
|
+
* // Dynamic property access
|
|
1477
|
+
* const propertyName = KEY_CLAIMS_NOTICE_CLAIMS_KEY;
|
|
1478
|
+
* const value = claimsnotice[propertyName];
|
|
1479
|
+
* ```
|
|
1480
|
+
*
|
|
1481
|
+
* @see {@link ClaimsNotice} - The TypeScript type definition
|
|
1482
|
+
* @see {@link KEYS_CLAIMS_NOTICE} - Array of all keys for this type
|
|
1483
|
+
*/
|
|
1484
|
+
export const KEY_CLAIMS_NOTICE_CLAIMS_KEY: keyof ClaimsNotice = 'claims_key';
|
|
1485
|
+
/**
|
|
1486
|
+
* Claims Notice Acceptance Hash
|
|
1487
|
+
*
|
|
1488
|
+
* Hash to accept the claims notice
|
|
1489
|
+
*
|
|
1490
|
+
* @type {string}
|
|
1491
|
+
*
|
|
1492
|
+
*
|
|
1493
|
+
* @remarks
|
|
1494
|
+
* This key constant provides type-safe access to the `claims_notice_acceptance_hash` property of ClaimsNotice objects.
|
|
1495
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1496
|
+
*
|
|
1497
|
+
* @example
|
|
1498
|
+
* ```typescript
|
|
1499
|
+
* // Direct property access
|
|
1500
|
+
* const value = claimsnotice[KEY_CLAIMS_NOTICE_CLAIMS_NOTICE_ACCEPTANCE_HASH];
|
|
1501
|
+
*
|
|
1502
|
+
* // Dynamic property access
|
|
1503
|
+
* const propertyName = KEY_CLAIMS_NOTICE_CLAIMS_NOTICE_ACCEPTANCE_HASH;
|
|
1504
|
+
* const value = claimsnotice[propertyName];
|
|
1505
|
+
* ```
|
|
1506
|
+
*
|
|
1507
|
+
* @see {@link ClaimsNotice} - The TypeScript type definition
|
|
1508
|
+
* @see {@link KEYS_CLAIMS_NOTICE} - Array of all keys for this type
|
|
1509
|
+
*/
|
|
1510
|
+
export const KEY_CLAIMS_NOTICE_CLAIMS_NOTICE_ACCEPTANCE_HASH: keyof ClaimsNotice = 'claims_notice_acceptance_hash';
|
|
1511
|
+
/**
|
|
1512
|
+
* Label
|
|
1513
|
+
*
|
|
1514
|
+
* Domain name label covered by this claims notice
|
|
1515
|
+
*
|
|
1516
|
+
* @type {string}
|
|
1517
|
+
*
|
|
1518
|
+
*
|
|
1519
|
+
* @remarks
|
|
1520
|
+
* This key constant provides type-safe access to the `label` property of ClaimsNotice objects.
|
|
1521
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1522
|
+
*
|
|
1523
|
+
* @example
|
|
1524
|
+
* ```typescript
|
|
1525
|
+
* // Direct property access
|
|
1526
|
+
* const value = claimsnotice[KEY_CLAIMS_NOTICE_LABEL];
|
|
1527
|
+
*
|
|
1528
|
+
* // Dynamic property access
|
|
1529
|
+
* const propertyName = KEY_CLAIMS_NOTICE_LABEL;
|
|
1530
|
+
* const value = claimsnotice[propertyName];
|
|
1531
|
+
* ```
|
|
1532
|
+
*
|
|
1533
|
+
* @see {@link ClaimsNotice} - The TypeScript type definition
|
|
1534
|
+
* @see {@link KEYS_CLAIMS_NOTICE} - Array of all keys for this type
|
|
1535
|
+
*/
|
|
1536
|
+
export const KEY_CLAIMS_NOTICE_LABEL: keyof ClaimsNotice = 'label';
|
|
1537
|
+
/**
|
|
1538
|
+
* Notice Footer
|
|
1539
|
+
*
|
|
1540
|
+
* Claims notice form footer text
|
|
1541
|
+
*
|
|
1542
|
+
* @type {string}
|
|
1543
|
+
*
|
|
1544
|
+
*
|
|
1545
|
+
* @remarks
|
|
1546
|
+
* This key constant provides type-safe access to the `notice_footer` property of ClaimsNotice objects.
|
|
1547
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1548
|
+
*
|
|
1549
|
+
* @example
|
|
1550
|
+
* ```typescript
|
|
1551
|
+
* // Direct property access
|
|
1552
|
+
* const value = claimsnotice[KEY_CLAIMS_NOTICE_NOTICE_FOOTER];
|
|
1553
|
+
*
|
|
1554
|
+
* // Dynamic property access
|
|
1555
|
+
* const propertyName = KEY_CLAIMS_NOTICE_NOTICE_FOOTER;
|
|
1556
|
+
* const value = claimsnotice[propertyName];
|
|
1557
|
+
* ```
|
|
1558
|
+
*
|
|
1559
|
+
* @see {@link ClaimsNotice} - The TypeScript type definition
|
|
1560
|
+
* @see {@link KEYS_CLAIMS_NOTICE} - Array of all keys for this type
|
|
1561
|
+
*/
|
|
1562
|
+
export const KEY_CLAIMS_NOTICE_NOTICE_FOOTER: keyof ClaimsNotice = 'notice_footer';
|
|
1563
|
+
/**
|
|
1564
|
+
* Notice Footer Url
|
|
1565
|
+
*
|
|
1566
|
+
* Claims notice form footer URL
|
|
1567
|
+
*
|
|
1568
|
+
* @type {string}
|
|
1569
|
+
*
|
|
1570
|
+
*
|
|
1571
|
+
* @remarks
|
|
1572
|
+
* This key constant provides type-safe access to the `notice_footer_url` property of ClaimsNotice objects.
|
|
1573
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1574
|
+
*
|
|
1575
|
+
* @example
|
|
1576
|
+
* ```typescript
|
|
1577
|
+
* // Direct property access
|
|
1578
|
+
* const value = claimsnotice[KEY_CLAIMS_NOTICE_NOTICE_FOOTER_URL];
|
|
1579
|
+
*
|
|
1580
|
+
* // Dynamic property access
|
|
1581
|
+
* const propertyName = KEY_CLAIMS_NOTICE_NOTICE_FOOTER_URL;
|
|
1582
|
+
* const value = claimsnotice[propertyName];
|
|
1583
|
+
* ```
|
|
1584
|
+
*
|
|
1585
|
+
* @see {@link ClaimsNotice} - The TypeScript type definition
|
|
1586
|
+
* @see {@link KEYS_CLAIMS_NOTICE} - Array of all keys for this type
|
|
1587
|
+
*/
|
|
1588
|
+
export const KEY_CLAIMS_NOTICE_NOTICE_FOOTER_URL: keyof ClaimsNotice = 'notice_footer_url';
|
|
1589
|
+
/**
|
|
1590
|
+
* Notice Intro
|
|
1591
|
+
*
|
|
1592
|
+
* Introductory text for the claims notice
|
|
1593
|
+
*
|
|
1594
|
+
* @type {string}
|
|
1595
|
+
*
|
|
1596
|
+
*
|
|
1597
|
+
* @remarks
|
|
1598
|
+
* This key constant provides type-safe access to the `notice_intro` property of ClaimsNotice objects.
|
|
1599
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1600
|
+
*
|
|
1601
|
+
* @example
|
|
1602
|
+
* ```typescript
|
|
1603
|
+
* // Direct property access
|
|
1604
|
+
* const value = claimsnotice[KEY_CLAIMS_NOTICE_NOTICE_INTRO];
|
|
1605
|
+
*
|
|
1606
|
+
* // Dynamic property access
|
|
1607
|
+
* const propertyName = KEY_CLAIMS_NOTICE_NOTICE_INTRO;
|
|
1608
|
+
* const value = claimsnotice[propertyName];
|
|
1609
|
+
* ```
|
|
1610
|
+
*
|
|
1611
|
+
* @see {@link ClaimsNotice} - The TypeScript type definition
|
|
1612
|
+
* @see {@link KEYS_CLAIMS_NOTICE} - Array of all keys for this type
|
|
1613
|
+
*/
|
|
1614
|
+
export const KEY_CLAIMS_NOTICE_NOTICE_INTRO: keyof ClaimsNotice = 'notice_intro';
|
|
1615
|
+
/**
|
|
1616
|
+
* Notice Not Exact Match Intro
|
|
1617
|
+
*
|
|
1618
|
+
* Introductory text for the non-exact match section
|
|
1619
|
+
*
|
|
1620
|
+
* @type {string}
|
|
1621
|
+
*
|
|
1622
|
+
*
|
|
1623
|
+
* @remarks
|
|
1624
|
+
* This key constant provides type-safe access to the `notice_not_exact_match_intro` property of ClaimsNotice objects.
|
|
1625
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1626
|
+
*
|
|
1627
|
+
* @example
|
|
1628
|
+
* ```typescript
|
|
1629
|
+
* // Direct property access
|
|
1630
|
+
* const value = claimsnotice[KEY_CLAIMS_NOTICE_NOTICE_NOT_EXACT_MATCH_INTRO];
|
|
1631
|
+
*
|
|
1632
|
+
* // Dynamic property access
|
|
1633
|
+
* const propertyName = KEY_CLAIMS_NOTICE_NOTICE_NOT_EXACT_MATCH_INTRO;
|
|
1634
|
+
* const value = claimsnotice[propertyName];
|
|
1635
|
+
* ```
|
|
1636
|
+
*
|
|
1637
|
+
* @see {@link ClaimsNotice} - The TypeScript type definition
|
|
1638
|
+
* @see {@link KEYS_CLAIMS_NOTICE} - Array of all keys for this type
|
|
1639
|
+
*/
|
|
1640
|
+
export const KEY_CLAIMS_NOTICE_NOTICE_NOT_EXACT_MATCH_INTRO: keyof ClaimsNotice = 'notice_not_exact_match_intro';
|
|
1641
|
+
/**
|
|
1642
|
+
* Notice Title
|
|
1643
|
+
*
|
|
1644
|
+
* Title for the claims notice
|
|
1645
|
+
*
|
|
1646
|
+
* @type {string}
|
|
1647
|
+
*
|
|
1648
|
+
*
|
|
1649
|
+
* @remarks
|
|
1650
|
+
* This key constant provides type-safe access to the `notice_title` property of ClaimsNotice objects.
|
|
1651
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1652
|
+
*
|
|
1653
|
+
* @example
|
|
1654
|
+
* ```typescript
|
|
1655
|
+
* // Direct property access
|
|
1656
|
+
* const value = claimsnotice[KEY_CLAIMS_NOTICE_NOTICE_TITLE];
|
|
1657
|
+
*
|
|
1658
|
+
* // Dynamic property access
|
|
1659
|
+
* const propertyName = KEY_CLAIMS_NOTICE_NOTICE_TITLE;
|
|
1660
|
+
* const value = claimsnotice[propertyName];
|
|
1661
|
+
* ```
|
|
1662
|
+
*
|
|
1663
|
+
* @see {@link ClaimsNotice} - The TypeScript type definition
|
|
1664
|
+
* @see {@link KEYS_CLAIMS_NOTICE} - Array of all keys for this type
|
|
1665
|
+
*/
|
|
1666
|
+
export const KEY_CLAIMS_NOTICE_NOTICE_TITLE: keyof ClaimsNotice = 'notice_title';
|
|
1667
|
+
/**
|
|
1668
|
+
* Rendered Html
|
|
1669
|
+
*
|
|
1670
|
+
* The rendered trademark claims notice HTML
|
|
1671
|
+
*
|
|
1672
|
+
* @type {string}
|
|
1673
|
+
*
|
|
1674
|
+
*
|
|
1675
|
+
* @remarks
|
|
1676
|
+
* This key constant provides type-safe access to the `rendered_html` property of ClaimsNotice objects.
|
|
1677
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1678
|
+
*
|
|
1679
|
+
* @example
|
|
1680
|
+
* ```typescript
|
|
1681
|
+
* // Direct property access
|
|
1682
|
+
* const value = claimsnotice[KEY_CLAIMS_NOTICE_RENDERED_HTML];
|
|
1683
|
+
*
|
|
1684
|
+
* // Dynamic property access
|
|
1685
|
+
* const propertyName = KEY_CLAIMS_NOTICE_RENDERED_HTML;
|
|
1686
|
+
* const value = claimsnotice[propertyName];
|
|
1687
|
+
* ```
|
|
1688
|
+
*
|
|
1689
|
+
* @see {@link ClaimsNotice} - The TypeScript type definition
|
|
1690
|
+
* @see {@link KEYS_CLAIMS_NOTICE} - Array of all keys for this type
|
|
1691
|
+
*/
|
|
1692
|
+
export const KEY_CLAIMS_NOTICE_RENDERED_HTML: keyof ClaimsNotice = 'rendered_html';
|
|
1693
|
+
|
|
1694
|
+
/**
|
|
1695
|
+
* Array of all ClaimsNotice property keys
|
|
1696
|
+
*
|
|
1697
|
+
* @remarks
|
|
1698
|
+
* This constant provides a readonly array containing all valid property keys for ClaimsNotice objects.
|
|
1699
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
1700
|
+
*
|
|
1701
|
+
* @example
|
|
1702
|
+
* ```typescript
|
|
1703
|
+
* // Iterating through all keys
|
|
1704
|
+
* for (const key of KEYS_CLAIMS_NOTICE) {
|
|
1705
|
+
* console.log(`Property: ${key}, Value: ${claimsnotice[key]}`);
|
|
1706
|
+
* }
|
|
1707
|
+
*
|
|
1708
|
+
* // Validation
|
|
1709
|
+
* const isValidKey = KEYS_CLAIMS_NOTICE.includes(someKey);
|
|
1710
|
+
* ```
|
|
1711
|
+
*
|
|
1712
|
+
* @see {@link ClaimsNotice} - The TypeScript type definition
|
|
1713
|
+
*/
|
|
1714
|
+
export const KEYS_CLAIMS_NOTICE = [
|
|
1715
|
+
KEY_CLAIMS_NOTICE_CLAIMS,
|
|
1716
|
+
KEY_CLAIMS_NOTICE_CLAIMS_KEY,
|
|
1717
|
+
KEY_CLAIMS_NOTICE_CLAIMS_NOTICE_ACCEPTANCE_HASH,
|
|
1718
|
+
KEY_CLAIMS_NOTICE_LABEL,
|
|
1719
|
+
KEY_CLAIMS_NOTICE_NOTICE_FOOTER,
|
|
1720
|
+
KEY_CLAIMS_NOTICE_NOTICE_FOOTER_URL,
|
|
1721
|
+
KEY_CLAIMS_NOTICE_NOTICE_INTRO,
|
|
1722
|
+
KEY_CLAIMS_NOTICE_NOTICE_NOT_EXACT_MATCH_INTRO,
|
|
1723
|
+
KEY_CLAIMS_NOTICE_NOTICE_TITLE,
|
|
1724
|
+
KEY_CLAIMS_NOTICE_RENDERED_HTML,
|
|
1725
|
+
] as const satisfies (keyof ClaimsNotice)[];
|
|
1726
|
+
|
|
1727
|
+
/**
|
|
1728
|
+
* Claims Keys
|
|
1729
|
+
*
|
|
1730
|
+
* List of claims keys to retrieve claims notices for, for the time being limited to one claims key
|
|
1731
|
+
*
|
|
1732
|
+
* @type {array}
|
|
1733
|
+
*
|
|
1734
|
+
*
|
|
1735
|
+
* @remarks
|
|
1736
|
+
* This key constant provides type-safe access to the `claims_keys` property of ClaimsNoticesRequest objects.
|
|
1737
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1738
|
+
*
|
|
1739
|
+
* @example
|
|
1740
|
+
* ```typescript
|
|
1741
|
+
* // Direct property access
|
|
1742
|
+
* const value = claimsnoticesrequest[KEY_CLAIMS_NOTICES_REQUEST_CLAIMS_KEYS];
|
|
1743
|
+
*
|
|
1744
|
+
* // Dynamic property access
|
|
1745
|
+
* const propertyName = KEY_CLAIMS_NOTICES_REQUEST_CLAIMS_KEYS;
|
|
1746
|
+
* const value = claimsnoticesrequest[propertyName];
|
|
1747
|
+
* ```
|
|
1748
|
+
*
|
|
1749
|
+
* @see {@link ClaimsNoticesRequest} - The TypeScript type definition
|
|
1750
|
+
* @see {@link KEYS_CLAIMS_NOTICES_REQUEST} - Array of all keys for this type
|
|
1751
|
+
*/
|
|
1752
|
+
export const KEY_CLAIMS_NOTICES_REQUEST_CLAIMS_KEYS: keyof ClaimsNoticesRequest = 'claims_keys';
|
|
1753
|
+
|
|
1754
|
+
/**
|
|
1755
|
+
* Array of all ClaimsNoticesRequest property keys
|
|
1756
|
+
*
|
|
1757
|
+
* @remarks
|
|
1758
|
+
* This constant provides a readonly array containing all valid property keys for ClaimsNoticesRequest objects.
|
|
1759
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
1760
|
+
*
|
|
1761
|
+
* @example
|
|
1762
|
+
* ```typescript
|
|
1763
|
+
* // Iterating through all keys
|
|
1764
|
+
* for (const key of KEYS_CLAIMS_NOTICES_REQUEST) {
|
|
1765
|
+
* console.log(`Property: ${key}, Value: ${claimsnoticesrequest[key]}`);
|
|
1766
|
+
* }
|
|
1767
|
+
*
|
|
1768
|
+
* // Validation
|
|
1769
|
+
* const isValidKey = KEYS_CLAIMS_NOTICES_REQUEST.includes(someKey);
|
|
1770
|
+
* ```
|
|
1771
|
+
*
|
|
1772
|
+
* @see {@link ClaimsNoticesRequest} - The TypeScript type definition
|
|
1773
|
+
*/
|
|
1774
|
+
export const KEYS_CLAIMS_NOTICES_REQUEST = [
|
|
1775
|
+
KEY_CLAIMS_NOTICES_REQUEST_CLAIMS_KEYS,
|
|
1776
|
+
] as const satisfies (keyof ClaimsNoticesRequest)[];
|
|
1777
|
+
|
|
1778
|
+
/**
|
|
1779
|
+
* Claims Notices
|
|
1780
|
+
*
|
|
1781
|
+
*
|
|
1782
|
+
* @type {array}
|
|
1783
|
+
*
|
|
1784
|
+
*
|
|
1785
|
+
* @remarks
|
|
1786
|
+
* This key constant provides type-safe access to the `claims_notices` property of ClaimsNotices objects.
|
|
1787
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
1788
|
+
*
|
|
1789
|
+
* @example
|
|
1790
|
+
* ```typescript
|
|
1791
|
+
* // Direct property access
|
|
1792
|
+
* const value = claimsnotices[KEY_CLAIMS_NOTICES_CLAIMS_NOTICES];
|
|
1793
|
+
*
|
|
1794
|
+
* // Dynamic property access
|
|
1795
|
+
* const propertyName = KEY_CLAIMS_NOTICES_CLAIMS_NOTICES;
|
|
1796
|
+
* const value = claimsnotices[propertyName];
|
|
1797
|
+
* ```
|
|
1798
|
+
*
|
|
1799
|
+
* @see {@link ClaimsNotices} - The TypeScript type definition
|
|
1800
|
+
* @see {@link KEYS_CLAIMS_NOTICES} - Array of all keys for this type
|
|
1801
|
+
*/
|
|
1802
|
+
export const KEY_CLAIMS_NOTICES_CLAIMS_NOTICES: keyof ClaimsNotices = 'claims_notices';
|
|
1803
|
+
|
|
1804
|
+
/**
|
|
1805
|
+
* Array of all ClaimsNotices property keys
|
|
1806
|
+
*
|
|
1807
|
+
* @remarks
|
|
1808
|
+
* This constant provides a readonly array containing all valid property keys for ClaimsNotices objects.
|
|
1809
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
1810
|
+
*
|
|
1811
|
+
* @example
|
|
1812
|
+
* ```typescript
|
|
1813
|
+
* // Iterating through all keys
|
|
1814
|
+
* for (const key of KEYS_CLAIMS_NOTICES) {
|
|
1815
|
+
* console.log(`Property: ${key}, Value: ${claimsnotices[key]}`);
|
|
1816
|
+
* }
|
|
1817
|
+
*
|
|
1818
|
+
* // Validation
|
|
1819
|
+
* const isValidKey = KEYS_CLAIMS_NOTICES.includes(someKey);
|
|
1820
|
+
* ```
|
|
1821
|
+
*
|
|
1822
|
+
* @see {@link ClaimsNotices} - The TypeScript type definition
|
|
1823
|
+
*/
|
|
1824
|
+
export const KEYS_CLAIMS_NOTICES = [
|
|
1825
|
+
KEY_CLAIMS_NOTICES_CLAIMS_NOTICES,
|
|
1826
|
+
] as const satisfies (keyof ClaimsNotices)[];
|
|
1827
|
+
|
|
1416
1828
|
/**
|
|
1417
1829
|
* Code
|
|
1418
1830
|
*
|
|
@@ -16540,6 +16952,82 @@ export const KEYS_DOMAIN_RENEW = [
|
|
|
16540
16952
|
KEY_DOMAIN_RENEW_PERIOD_EXTENDED,
|
|
16541
16953
|
] as const satisfies (keyof DomainRenew)[];
|
|
16542
16954
|
|
|
16955
|
+
/**
|
|
16956
|
+
* Detail Type
|
|
16957
|
+
*
|
|
16958
|
+
*
|
|
16959
|
+
* @type {string}
|
|
16960
|
+
*
|
|
16961
|
+
*
|
|
16962
|
+
* @remarks
|
|
16963
|
+
* This key constant provides type-safe access to the `detail_type` property of DomainRenewalDetails objects.
|
|
16964
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
16965
|
+
*
|
|
16966
|
+
* @example
|
|
16967
|
+
* ```typescript
|
|
16968
|
+
* // Direct property access
|
|
16969
|
+
* const value = domainrenewaldetails[KEY_DOMAIN_RENEWAL_DETAILS_DETAIL_TYPE];
|
|
16970
|
+
*
|
|
16971
|
+
* // Dynamic property access
|
|
16972
|
+
* const propertyName = KEY_DOMAIN_RENEWAL_DETAILS_DETAIL_TYPE;
|
|
16973
|
+
* const value = domainrenewaldetails[propertyName];
|
|
16974
|
+
* ```
|
|
16975
|
+
*
|
|
16976
|
+
* @see {@link DomainRenewalDetails} - The TypeScript type definition
|
|
16977
|
+
* @see {@link KEYS_DOMAIN_RENEWAL_DETAILS} - Array of all keys for this type
|
|
16978
|
+
*/
|
|
16979
|
+
export const KEY_DOMAIN_RENEWAL_DETAILS_DETAIL_TYPE: keyof DomainRenewalDetails = 'detail_type';
|
|
16980
|
+
/**
|
|
16981
|
+
* Expires On
|
|
16982
|
+
*
|
|
16983
|
+
*
|
|
16984
|
+
* @type {string}
|
|
16985
|
+
*
|
|
16986
|
+
*
|
|
16987
|
+
* @remarks
|
|
16988
|
+
* This key constant provides type-safe access to the `expires_on` property of DomainRenewalDetails objects.
|
|
16989
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
16990
|
+
*
|
|
16991
|
+
* @example
|
|
16992
|
+
* ```typescript
|
|
16993
|
+
* // Direct property access
|
|
16994
|
+
* const value = domainrenewaldetails[KEY_DOMAIN_RENEWAL_DETAILS_EXPIRES_ON];
|
|
16995
|
+
*
|
|
16996
|
+
* // Dynamic property access
|
|
16997
|
+
* const propertyName = KEY_DOMAIN_RENEWAL_DETAILS_EXPIRES_ON;
|
|
16998
|
+
* const value = domainrenewaldetails[propertyName];
|
|
16999
|
+
* ```
|
|
17000
|
+
*
|
|
17001
|
+
* @see {@link DomainRenewalDetails} - The TypeScript type definition
|
|
17002
|
+
* @see {@link KEYS_DOMAIN_RENEWAL_DETAILS} - Array of all keys for this type
|
|
17003
|
+
*/
|
|
17004
|
+
export const KEY_DOMAIN_RENEWAL_DETAILS_EXPIRES_ON: keyof DomainRenewalDetails = 'expires_on';
|
|
17005
|
+
|
|
17006
|
+
/**
|
|
17007
|
+
* Array of all DomainRenewalDetails property keys
|
|
17008
|
+
*
|
|
17009
|
+
* @remarks
|
|
17010
|
+
* This constant provides a readonly array containing all valid property keys for DomainRenewalDetails objects.
|
|
17011
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
17012
|
+
*
|
|
17013
|
+
* @example
|
|
17014
|
+
* ```typescript
|
|
17015
|
+
* // Iterating through all keys
|
|
17016
|
+
* for (const key of KEYS_DOMAIN_RENEWAL_DETAILS) {
|
|
17017
|
+
* console.log(`Property: ${key}, Value: ${domainrenewaldetails[key]}`);
|
|
17018
|
+
* }
|
|
17019
|
+
*
|
|
17020
|
+
* // Validation
|
|
17021
|
+
* const isValidKey = KEYS_DOMAIN_RENEWAL_DETAILS.includes(someKey);
|
|
17022
|
+
* ```
|
|
17023
|
+
*
|
|
17024
|
+
* @see {@link DomainRenewalDetails} - The TypeScript type definition
|
|
17025
|
+
*/
|
|
17026
|
+
export const KEYS_DOMAIN_RENEWAL_DETAILS = [
|
|
17027
|
+
KEY_DOMAIN_RENEWAL_DETAILS_DETAIL_TYPE,
|
|
17028
|
+
KEY_DOMAIN_RENEWAL_DETAILS_EXPIRES_ON,
|
|
17029
|
+
] as const satisfies (keyof DomainRenewalDetails)[];
|
|
17030
|
+
|
|
16543
17031
|
/**
|
|
16544
17032
|
* Auth Code
|
|
16545
17033
|
*
|
|
@@ -20859,6 +21347,160 @@ export const KEYS_DOMAIN_UPDATE_WORKER_PAYLOAD = [
|
|
|
20859
21347
|
KEY_DOMAIN_UPDATE_WORKER_PAYLOAD_TYPE,
|
|
20860
21348
|
] as const satisfies (keyof DomainUpdateWorkerPayload)[];
|
|
20861
21349
|
|
|
21350
|
+
/**
|
|
21351
|
+
* Detail Type
|
|
21352
|
+
*
|
|
21353
|
+
*
|
|
21354
|
+
* @type {string}
|
|
21355
|
+
*
|
|
21356
|
+
*
|
|
21357
|
+
* @remarks
|
|
21358
|
+
* This key constant provides type-safe access to the `detail_type` property of DomainVerificationDetails objects.
|
|
21359
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
21360
|
+
*
|
|
21361
|
+
* @example
|
|
21362
|
+
* ```typescript
|
|
21363
|
+
* // Direct property access
|
|
21364
|
+
* const value = domainverificationdetails[KEY_DOMAIN_VERIFICATION_DETAILS_DETAIL_TYPE];
|
|
21365
|
+
*
|
|
21366
|
+
* // Dynamic property access
|
|
21367
|
+
* const propertyName = KEY_DOMAIN_VERIFICATION_DETAILS_DETAIL_TYPE;
|
|
21368
|
+
* const value = domainverificationdetails[propertyName];
|
|
21369
|
+
* ```
|
|
21370
|
+
*
|
|
21371
|
+
* @see {@link DomainVerificationDetails} - The TypeScript type definition
|
|
21372
|
+
* @see {@link KEYS_DOMAIN_VERIFICATION_DETAILS} - Array of all keys for this type
|
|
21373
|
+
*/
|
|
21374
|
+
export const KEY_DOMAIN_VERIFICATION_DETAILS_DETAIL_TYPE: keyof DomainVerificationDetails = 'detail_type';
|
|
21375
|
+
/**
|
|
21376
|
+
* Domain Id
|
|
21377
|
+
*
|
|
21378
|
+
*
|
|
21379
|
+
* @type {string}
|
|
21380
|
+
*
|
|
21381
|
+
*
|
|
21382
|
+
* @remarks
|
|
21383
|
+
* This key constant provides type-safe access to the `domain_id` property of DomainVerificationDetails objects.
|
|
21384
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
21385
|
+
*
|
|
21386
|
+
* @example
|
|
21387
|
+
* ```typescript
|
|
21388
|
+
* // Direct property access
|
|
21389
|
+
* const value = domainverificationdetails[KEY_DOMAIN_VERIFICATION_DETAILS_DOMAIN_ID];
|
|
21390
|
+
*
|
|
21391
|
+
* // Dynamic property access
|
|
21392
|
+
* const propertyName = KEY_DOMAIN_VERIFICATION_DETAILS_DOMAIN_ID;
|
|
21393
|
+
* const value = domainverificationdetails[propertyName];
|
|
21394
|
+
* ```
|
|
21395
|
+
*
|
|
21396
|
+
* @see {@link DomainVerificationDetails} - The TypeScript type definition
|
|
21397
|
+
* @see {@link KEYS_DOMAIN_VERIFICATION_DETAILS} - Array of all keys for this type
|
|
21398
|
+
*/
|
|
21399
|
+
export const KEY_DOMAIN_VERIFICATION_DETAILS_DOMAIN_ID: keyof DomainVerificationDetails = 'domain_id';
|
|
21400
|
+
/**
|
|
21401
|
+
* Registrants
|
|
21402
|
+
*
|
|
21403
|
+
*
|
|
21404
|
+
* @type {array}
|
|
21405
|
+
*
|
|
21406
|
+
*
|
|
21407
|
+
* @remarks
|
|
21408
|
+
* This key constant provides type-safe access to the `registrants` property of DomainVerificationDetails objects.
|
|
21409
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
21410
|
+
*
|
|
21411
|
+
* @example
|
|
21412
|
+
* ```typescript
|
|
21413
|
+
* // Direct property access
|
|
21414
|
+
* const value = domainverificationdetails[KEY_DOMAIN_VERIFICATION_DETAILS_REGISTRANTS];
|
|
21415
|
+
*
|
|
21416
|
+
* // Dynamic property access
|
|
21417
|
+
* const propertyName = KEY_DOMAIN_VERIFICATION_DETAILS_REGISTRANTS;
|
|
21418
|
+
* const value = domainverificationdetails[propertyName];
|
|
21419
|
+
* ```
|
|
21420
|
+
*
|
|
21421
|
+
* @see {@link DomainVerificationDetails} - The TypeScript type definition
|
|
21422
|
+
* @see {@link KEYS_DOMAIN_VERIFICATION_DETAILS} - Array of all keys for this type
|
|
21423
|
+
*/
|
|
21424
|
+
export const KEY_DOMAIN_VERIFICATION_DETAILS_REGISTRANTS: keyof DomainVerificationDetails = 'registrants';
|
|
21425
|
+
/**
|
|
21426
|
+
* Verification Claims
|
|
21427
|
+
*
|
|
21428
|
+
*
|
|
21429
|
+
* @type {array}
|
|
21430
|
+
*
|
|
21431
|
+
*
|
|
21432
|
+
* @remarks
|
|
21433
|
+
* This key constant provides type-safe access to the `verification_claims` property of DomainVerificationDetails objects.
|
|
21434
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
21435
|
+
*
|
|
21436
|
+
* @example
|
|
21437
|
+
* ```typescript
|
|
21438
|
+
* // Direct property access
|
|
21439
|
+
* const value = domainverificationdetails[KEY_DOMAIN_VERIFICATION_DETAILS_VERIFICATION_CLAIMS];
|
|
21440
|
+
*
|
|
21441
|
+
* // Dynamic property access
|
|
21442
|
+
* const propertyName = KEY_DOMAIN_VERIFICATION_DETAILS_VERIFICATION_CLAIMS;
|
|
21443
|
+
* const value = domainverificationdetails[propertyName];
|
|
21444
|
+
* ```
|
|
21445
|
+
*
|
|
21446
|
+
* @see {@link DomainVerificationDetails} - The TypeScript type definition
|
|
21447
|
+
* @see {@link KEYS_DOMAIN_VERIFICATION_DETAILS} - Array of all keys for this type
|
|
21448
|
+
*/
|
|
21449
|
+
export const KEY_DOMAIN_VERIFICATION_DETAILS_VERIFICATION_CLAIMS: keyof DomainVerificationDetails = 'verification_claims';
|
|
21450
|
+
/**
|
|
21451
|
+
* Verification Deadlines
|
|
21452
|
+
*
|
|
21453
|
+
*
|
|
21454
|
+
* @type {array}
|
|
21455
|
+
*
|
|
21456
|
+
*
|
|
21457
|
+
* @remarks
|
|
21458
|
+
* This key constant provides type-safe access to the `verification_deadlines` property of DomainVerificationDetails objects.
|
|
21459
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
21460
|
+
*
|
|
21461
|
+
* @example
|
|
21462
|
+
* ```typescript
|
|
21463
|
+
* // Direct property access
|
|
21464
|
+
* const value = domainverificationdetails[KEY_DOMAIN_VERIFICATION_DETAILS_VERIFICATION_DEADLINES];
|
|
21465
|
+
*
|
|
21466
|
+
* // Dynamic property access
|
|
21467
|
+
* const propertyName = KEY_DOMAIN_VERIFICATION_DETAILS_VERIFICATION_DEADLINES;
|
|
21468
|
+
* const value = domainverificationdetails[propertyName];
|
|
21469
|
+
* ```
|
|
21470
|
+
*
|
|
21471
|
+
* @see {@link DomainVerificationDetails} - The TypeScript type definition
|
|
21472
|
+
* @see {@link KEYS_DOMAIN_VERIFICATION_DETAILS} - Array of all keys for this type
|
|
21473
|
+
*/
|
|
21474
|
+
export const KEY_DOMAIN_VERIFICATION_DETAILS_VERIFICATION_DEADLINES: keyof DomainVerificationDetails = 'verification_deadlines';
|
|
21475
|
+
|
|
21476
|
+
/**
|
|
21477
|
+
* Array of all DomainVerificationDetails property keys
|
|
21478
|
+
*
|
|
21479
|
+
* @remarks
|
|
21480
|
+
* This constant provides a readonly array containing all valid property keys for DomainVerificationDetails objects.
|
|
21481
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
21482
|
+
*
|
|
21483
|
+
* @example
|
|
21484
|
+
* ```typescript
|
|
21485
|
+
* // Iterating through all keys
|
|
21486
|
+
* for (const key of KEYS_DOMAIN_VERIFICATION_DETAILS) {
|
|
21487
|
+
* console.log(`Property: ${key}, Value: ${domainverificationdetails[key]}`);
|
|
21488
|
+
* }
|
|
21489
|
+
*
|
|
21490
|
+
* // Validation
|
|
21491
|
+
* const isValidKey = KEYS_DOMAIN_VERIFICATION_DETAILS.includes(someKey);
|
|
21492
|
+
* ```
|
|
21493
|
+
*
|
|
21494
|
+
* @see {@link DomainVerificationDetails} - The TypeScript type definition
|
|
21495
|
+
*/
|
|
21496
|
+
export const KEYS_DOMAIN_VERIFICATION_DETAILS = [
|
|
21497
|
+
KEY_DOMAIN_VERIFICATION_DETAILS_DETAIL_TYPE,
|
|
21498
|
+
KEY_DOMAIN_VERIFICATION_DETAILS_DOMAIN_ID,
|
|
21499
|
+
KEY_DOMAIN_VERIFICATION_DETAILS_REGISTRANTS,
|
|
21500
|
+
KEY_DOMAIN_VERIFICATION_DETAILS_VERIFICATION_CLAIMS,
|
|
21501
|
+
KEY_DOMAIN_VERIFICATION_DETAILS_VERIFICATION_DEADLINES,
|
|
21502
|
+
] as const satisfies (keyof DomainVerificationDetails)[];
|
|
21503
|
+
|
|
20862
21504
|
/**
|
|
20863
21505
|
* Zone Delete
|
|
20864
21506
|
*
|
|
@@ -23075,314 +23717,281 @@ export const KEYS_EMAIL_FORWARD_ZONE = [
|
|
|
23075
23717
|
] as const satisfies (keyof EmailForwardZone)[];
|
|
23076
23718
|
|
|
23077
23719
|
/**
|
|
23078
|
-
*
|
|
23720
|
+
* Details
|
|
23079
23721
|
*
|
|
23080
|
-
* When the event was acknowledged
|
|
23081
23722
|
*
|
|
23082
23723
|
*
|
|
23083
23724
|
*
|
|
23084
23725
|
* @remarks
|
|
23085
|
-
* This key constant provides type-safe access to the `
|
|
23726
|
+
* This key constant provides type-safe access to the `details` property of EventData objects.
|
|
23086
23727
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23087
23728
|
*
|
|
23088
23729
|
* @example
|
|
23089
23730
|
* ```typescript
|
|
23090
23731
|
* // Direct property access
|
|
23091
|
-
* const value =
|
|
23732
|
+
* const value = eventdata[KEY_EVENT_DATA_DETAILS];
|
|
23092
23733
|
*
|
|
23093
23734
|
* // Dynamic property access
|
|
23094
|
-
* const propertyName =
|
|
23095
|
-
* const value =
|
|
23735
|
+
* const propertyName = KEY_EVENT_DATA_DETAILS;
|
|
23736
|
+
* const value = eventdata[propertyName];
|
|
23096
23737
|
* ```
|
|
23097
23738
|
*
|
|
23098
|
-
* @see {@link
|
|
23099
|
-
* @see {@link
|
|
23739
|
+
* @see {@link EventData} - The TypeScript type definition
|
|
23740
|
+
* @see {@link KEYS_EVENT_DATA} - Array of all keys for this type
|
|
23100
23741
|
*/
|
|
23101
|
-
export const
|
|
23742
|
+
export const KEY_EVENT_DATA_DETAILS: keyof EventData = 'details';
|
|
23102
23743
|
/**
|
|
23103
|
-
*
|
|
23744
|
+
* error property
|
|
23104
23745
|
*
|
|
23105
|
-
* When the event was created
|
|
23106
23746
|
*
|
|
23107
|
-
* @type {string}
|
|
23108
23747
|
*
|
|
23109
23748
|
*
|
|
23110
23749
|
* @remarks
|
|
23111
|
-
* This key constant provides type-safe access to the `
|
|
23750
|
+
* This key constant provides type-safe access to the `error` property of EventData objects.
|
|
23112
23751
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23113
23752
|
*
|
|
23114
23753
|
* @example
|
|
23115
23754
|
* ```typescript
|
|
23116
23755
|
* // Direct property access
|
|
23117
|
-
* const value =
|
|
23756
|
+
* const value = eventdata[KEY_EVENT_DATA_ERROR];
|
|
23118
23757
|
*
|
|
23119
23758
|
* // Dynamic property access
|
|
23120
|
-
* const propertyName =
|
|
23121
|
-
* const value =
|
|
23759
|
+
* const propertyName = KEY_EVENT_DATA_ERROR;
|
|
23760
|
+
* const value = eventdata[propertyName];
|
|
23122
23761
|
* ```
|
|
23123
23762
|
*
|
|
23124
|
-
* @see {@link
|
|
23125
|
-
* @see {@link
|
|
23763
|
+
* @see {@link EventData} - The TypeScript type definition
|
|
23764
|
+
* @see {@link KEYS_EVENT_DATA} - Array of all keys for this type
|
|
23126
23765
|
*/
|
|
23127
|
-
export const
|
|
23766
|
+
export const KEY_EVENT_DATA_ERROR: keyof EventData = 'error';
|
|
23128
23767
|
/**
|
|
23129
|
-
*
|
|
23130
|
-
*
|
|
23131
|
-
*
|
|
23132
|
-
* @type {object}
|
|
23133
|
-
*
|
|
23134
|
-
*
|
|
23135
|
-
* @remarks
|
|
23136
|
-
* This key constant provides type-safe access to the `event_data` property of EventResponse objects.
|
|
23137
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23138
|
-
*
|
|
23139
|
-
* @example
|
|
23140
|
-
* ```typescript
|
|
23141
|
-
* // Direct property access
|
|
23142
|
-
* const value = eventresponse[KEY_EVENT_RESPONSE_EVENT_DATA];
|
|
23143
|
-
*
|
|
23144
|
-
* // Dynamic property access
|
|
23145
|
-
* const propertyName = KEY_EVENT_RESPONSE_EVENT_DATA;
|
|
23146
|
-
* const value = eventresponse[propertyName];
|
|
23147
|
-
* ```
|
|
23148
|
-
*
|
|
23149
|
-
* @see {@link EventResponse} - The TypeScript type definition
|
|
23150
|
-
* @see {@link KEYS_EVENT_RESPONSE} - Array of all keys for this type
|
|
23151
|
-
*/
|
|
23152
|
-
export const KEY_EVENT_RESPONSE_EVENT_DATA: keyof EventResponse = 'event_data';
|
|
23153
|
-
/**
|
|
23154
|
-
* Event Id
|
|
23768
|
+
* Message
|
|
23155
23769
|
*
|
|
23156
23770
|
*
|
|
23157
23771
|
* @type {string}
|
|
23158
23772
|
*
|
|
23159
23773
|
*
|
|
23160
23774
|
* @remarks
|
|
23161
|
-
* This key constant provides type-safe access to the `
|
|
23775
|
+
* This key constant provides type-safe access to the `message` property of EventData objects.
|
|
23162
23776
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23163
23777
|
*
|
|
23164
23778
|
* @example
|
|
23165
23779
|
* ```typescript
|
|
23166
23780
|
* // Direct property access
|
|
23167
|
-
* const value =
|
|
23781
|
+
* const value = eventdata[KEY_EVENT_DATA_MESSAGE];
|
|
23168
23782
|
*
|
|
23169
23783
|
* // Dynamic property access
|
|
23170
|
-
* const propertyName =
|
|
23171
|
-
* const value =
|
|
23784
|
+
* const propertyName = KEY_EVENT_DATA_MESSAGE;
|
|
23785
|
+
* const value = eventdata[propertyName];
|
|
23172
23786
|
* ```
|
|
23173
23787
|
*
|
|
23174
|
-
* @see {@link
|
|
23175
|
-
* @see {@link
|
|
23788
|
+
* @see {@link EventData} - The TypeScript type definition
|
|
23789
|
+
* @see {@link KEYS_EVENT_DATA} - Array of all keys for this type
|
|
23176
23790
|
*/
|
|
23177
|
-
export const
|
|
23791
|
+
export const KEY_EVENT_DATA_MESSAGE: keyof EventData = 'message';
|
|
23178
23792
|
/**
|
|
23179
|
-
*
|
|
23793
|
+
* version property
|
|
23180
23794
|
*
|
|
23181
|
-
* The id of the object that the event is about
|
|
23182
23795
|
*
|
|
23183
23796
|
*
|
|
23184
23797
|
*
|
|
23185
23798
|
* @remarks
|
|
23186
|
-
* This key constant provides type-safe access to the `
|
|
23799
|
+
* This key constant provides type-safe access to the `version` property of EventData objects.
|
|
23187
23800
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23188
23801
|
*
|
|
23189
23802
|
* @example
|
|
23190
23803
|
* ```typescript
|
|
23191
23804
|
* // Direct property access
|
|
23192
|
-
* const value =
|
|
23805
|
+
* const value = eventdata[KEY_EVENT_DATA_VERSION];
|
|
23193
23806
|
*
|
|
23194
23807
|
* // Dynamic property access
|
|
23195
|
-
* const propertyName =
|
|
23196
|
-
* const value =
|
|
23808
|
+
* const propertyName = KEY_EVENT_DATA_VERSION;
|
|
23809
|
+
* const value = eventdata[propertyName];
|
|
23197
23810
|
* ```
|
|
23198
23811
|
*
|
|
23199
|
-
* @see {@link
|
|
23200
|
-
* @see {@link
|
|
23812
|
+
* @see {@link EventData} - The TypeScript type definition
|
|
23813
|
+
* @see {@link KEYS_EVENT_DATA} - Array of all keys for this type
|
|
23201
23814
|
*/
|
|
23202
|
-
export const
|
|
23815
|
+
export const KEY_EVENT_DATA_VERSION: keyof EventData = 'version';
|
|
23816
|
+
|
|
23203
23817
|
/**
|
|
23204
|
-
*
|
|
23205
|
-
*
|
|
23206
|
-
* The type of object that the event is about
|
|
23207
|
-
*
|
|
23208
|
-
*
|
|
23818
|
+
* Array of all EventData property keys
|
|
23209
23819
|
*
|
|
23210
23820
|
* @remarks
|
|
23211
|
-
* This
|
|
23212
|
-
*
|
|
23821
|
+
* This constant provides a readonly array containing all valid property keys for EventData objects.
|
|
23822
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
23213
23823
|
*
|
|
23214
23824
|
* @example
|
|
23215
23825
|
* ```typescript
|
|
23216
|
-
* //
|
|
23217
|
-
* const
|
|
23826
|
+
* // Iterating through all keys
|
|
23827
|
+
* for (const key of KEYS_EVENT_DATA) {
|
|
23828
|
+
* console.log(`Property: ${key}, Value: ${eventdata[key]}`);
|
|
23829
|
+
* }
|
|
23218
23830
|
*
|
|
23219
|
-
* //
|
|
23220
|
-
* const
|
|
23221
|
-
* const value = eventresponse[propertyName];
|
|
23831
|
+
* // Validation
|
|
23832
|
+
* const isValidKey = KEYS_EVENT_DATA.includes(someKey);
|
|
23222
23833
|
* ```
|
|
23223
23834
|
*
|
|
23224
|
-
* @see {@link
|
|
23225
|
-
* @see {@link KEYS_EVENT_RESPONSE} - Array of all keys for this type
|
|
23835
|
+
* @see {@link EventData} - The TypeScript type definition
|
|
23226
23836
|
*/
|
|
23227
|
-
export const
|
|
23837
|
+
export const KEYS_EVENT_DATA = [
|
|
23838
|
+
KEY_EVENT_DATA_DETAILS,
|
|
23839
|
+
KEY_EVENT_DATA_ERROR,
|
|
23840
|
+
KEY_EVENT_DATA_MESSAGE,
|
|
23841
|
+
KEY_EVENT_DATA_VERSION,
|
|
23842
|
+
] as const satisfies (keyof EventData)[];
|
|
23843
|
+
|
|
23228
23844
|
/**
|
|
23229
|
-
*
|
|
23845
|
+
* Code
|
|
23230
23846
|
*
|
|
23231
|
-
* The specific type/result of operation (considering the type property), more detailed (e.g., 'NOTIFICATION' with the 'DOMAIN_MODIFICATION' class)
|
|
23232
23847
|
*
|
|
23848
|
+
* @type {string}
|
|
23233
23849
|
*
|
|
23234
23850
|
*
|
|
23235
23851
|
* @remarks
|
|
23236
|
-
* This key constant provides type-safe access to the `
|
|
23852
|
+
* This key constant provides type-safe access to the `code` property of EventError objects.
|
|
23237
23853
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23238
23854
|
*
|
|
23239
23855
|
* @example
|
|
23240
23856
|
* ```typescript
|
|
23241
23857
|
* // Direct property access
|
|
23242
|
-
* const value =
|
|
23858
|
+
* const value = eventerror[KEY_EVENT_ERROR_CODE];
|
|
23243
23859
|
*
|
|
23244
23860
|
* // Dynamic property access
|
|
23245
|
-
* const propertyName =
|
|
23246
|
-
* const value =
|
|
23861
|
+
* const propertyName = KEY_EVENT_ERROR_CODE;
|
|
23862
|
+
* const value = eventerror[propertyName];
|
|
23247
23863
|
* ```
|
|
23248
23864
|
*
|
|
23249
|
-
* @see {@link
|
|
23250
|
-
* @see {@link
|
|
23865
|
+
* @see {@link EventError} - The TypeScript type definition
|
|
23866
|
+
* @see {@link KEYS_EVENT_ERROR} - Array of all keys for this type
|
|
23251
23867
|
*/
|
|
23252
|
-
export const
|
|
23868
|
+
export const KEY_EVENT_ERROR_CODE: keyof EventError = 'code';
|
|
23253
23869
|
/**
|
|
23254
|
-
*
|
|
23870
|
+
* Detail
|
|
23255
23871
|
*
|
|
23256
|
-
* The type of the event - indicates the kind of operation occurring (e.g., 'ACCOUNT_CREATE', 'DOMAIN_MODIFICATION')
|
|
23257
23872
|
*
|
|
23873
|
+
* @type {string}
|
|
23258
23874
|
*
|
|
23259
23875
|
*
|
|
23260
23876
|
* @remarks
|
|
23261
|
-
* This key constant provides type-safe access to the `
|
|
23877
|
+
* This key constant provides type-safe access to the `detail` property of EventError objects.
|
|
23262
23878
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23263
23879
|
*
|
|
23264
23880
|
* @example
|
|
23265
23881
|
* ```typescript
|
|
23266
23882
|
* // Direct property access
|
|
23267
|
-
* const value =
|
|
23883
|
+
* const value = eventerror[KEY_EVENT_ERROR_DETAIL];
|
|
23268
23884
|
*
|
|
23269
23885
|
* // Dynamic property access
|
|
23270
|
-
* const propertyName =
|
|
23271
|
-
* const value =
|
|
23886
|
+
* const propertyName = KEY_EVENT_ERROR_DETAIL;
|
|
23887
|
+
* const value = eventerror[propertyName];
|
|
23272
23888
|
* ```
|
|
23273
23889
|
*
|
|
23274
|
-
* @see {@link
|
|
23275
|
-
* @see {@link
|
|
23890
|
+
* @see {@link EventError} - The TypeScript type definition
|
|
23891
|
+
* @see {@link KEYS_EVENT_ERROR} - Array of all keys for this type
|
|
23276
23892
|
*/
|
|
23277
|
-
export const
|
|
23893
|
+
export const KEY_EVENT_ERROR_DETAIL: keyof EventError = 'detail';
|
|
23278
23894
|
|
|
23279
23895
|
/**
|
|
23280
|
-
* Array of all
|
|
23896
|
+
* Array of all EventError property keys
|
|
23281
23897
|
*
|
|
23282
23898
|
* @remarks
|
|
23283
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
23899
|
+
* This constant provides a readonly array containing all valid property keys for EventError objects.
|
|
23284
23900
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
23285
23901
|
*
|
|
23286
23902
|
* @example
|
|
23287
23903
|
* ```typescript
|
|
23288
23904
|
* // Iterating through all keys
|
|
23289
|
-
* for (const key of
|
|
23290
|
-
* console.log(`Property: ${key}, Value: ${
|
|
23905
|
+
* for (const key of KEYS_EVENT_ERROR) {
|
|
23906
|
+
* console.log(`Property: ${key}, Value: ${eventerror[key]}`);
|
|
23291
23907
|
* }
|
|
23292
23908
|
*
|
|
23293
23909
|
* // Validation
|
|
23294
|
-
* const isValidKey =
|
|
23910
|
+
* const isValidKey = KEYS_EVENT_ERROR.includes(someKey);
|
|
23295
23911
|
* ```
|
|
23296
23912
|
*
|
|
23297
|
-
* @see {@link
|
|
23913
|
+
* @see {@link EventError} - The TypeScript type definition
|
|
23298
23914
|
*/
|
|
23299
|
-
export const
|
|
23300
|
-
|
|
23301
|
-
|
|
23302
|
-
|
|
23303
|
-
KEY_EVENT_RESPONSE_EVENT_ID,
|
|
23304
|
-
KEY_EVENT_RESPONSE_OBJECT_ID,
|
|
23305
|
-
KEY_EVENT_RESPONSE_OBJECT_TYPE,
|
|
23306
|
-
KEY_EVENT_RESPONSE_SUBTYPE,
|
|
23307
|
-
KEY_EVENT_RESPONSE_TYPE,
|
|
23308
|
-
] as const satisfies (keyof EventResponse)[];
|
|
23915
|
+
export const KEYS_EVENT_ERROR = [
|
|
23916
|
+
KEY_EVENT_ERROR_CODE,
|
|
23917
|
+
KEY_EVENT_ERROR_DETAIL,
|
|
23918
|
+
] as const satisfies (keyof EventError)[];
|
|
23309
23919
|
|
|
23310
23920
|
/**
|
|
23311
23921
|
* Acknowledged On
|
|
23312
23922
|
*
|
|
23313
|
-
*
|
|
23923
|
+
* When the event was acknowledged
|
|
23314
23924
|
*
|
|
23315
23925
|
*
|
|
23316
23926
|
*
|
|
23317
23927
|
* @remarks
|
|
23318
|
-
* This key constant provides type-safe access to the `acknowledged_on` property of
|
|
23928
|
+
* This key constant provides type-safe access to the `acknowledged_on` property of EventResponse objects.
|
|
23319
23929
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23320
23930
|
*
|
|
23321
23931
|
* @example
|
|
23322
23932
|
* ```typescript
|
|
23323
23933
|
* // Direct property access
|
|
23324
|
-
* const value =
|
|
23934
|
+
* const value = eventresponse[KEY_EVENT_RESPONSE_ACKNOWLEDGED_ON];
|
|
23325
23935
|
*
|
|
23326
23936
|
* // Dynamic property access
|
|
23327
|
-
* const propertyName =
|
|
23328
|
-
* const value =
|
|
23937
|
+
* const propertyName = KEY_EVENT_RESPONSE_ACKNOWLEDGED_ON;
|
|
23938
|
+
* const value = eventresponse[propertyName];
|
|
23329
23939
|
* ```
|
|
23330
23940
|
*
|
|
23331
|
-
* @see {@link
|
|
23332
|
-
* @see {@link
|
|
23941
|
+
* @see {@link EventResponse} - The TypeScript type definition
|
|
23942
|
+
* @see {@link KEYS_EVENT_RESPONSE} - Array of all keys for this type
|
|
23333
23943
|
*/
|
|
23334
|
-
export const
|
|
23944
|
+
export const KEY_EVENT_RESPONSE_ACKNOWLEDGED_ON: keyof EventResponse = 'acknowledged_on';
|
|
23335
23945
|
/**
|
|
23336
23946
|
* Created On
|
|
23337
23947
|
*
|
|
23338
|
-
*
|
|
23948
|
+
* When the event was created
|
|
23339
23949
|
*
|
|
23340
23950
|
* @type {string}
|
|
23341
23951
|
*
|
|
23342
23952
|
*
|
|
23343
23953
|
* @remarks
|
|
23344
|
-
* This key constant provides type-safe access to the `created_on` property of
|
|
23954
|
+
* This key constant provides type-safe access to the `created_on` property of EventResponse objects.
|
|
23345
23955
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23346
23956
|
*
|
|
23347
23957
|
* @example
|
|
23348
23958
|
* ```typescript
|
|
23349
23959
|
* // Direct property access
|
|
23350
|
-
* const value =
|
|
23960
|
+
* const value = eventresponse[KEY_EVENT_RESPONSE_CREATED_ON];
|
|
23351
23961
|
*
|
|
23352
23962
|
* // Dynamic property access
|
|
23353
|
-
* const propertyName =
|
|
23354
|
-
* const value =
|
|
23963
|
+
* const propertyName = KEY_EVENT_RESPONSE_CREATED_ON;
|
|
23964
|
+
* const value = eventresponse[propertyName];
|
|
23355
23965
|
* ```
|
|
23356
23966
|
*
|
|
23357
|
-
* @see {@link
|
|
23358
|
-
* @see {@link
|
|
23967
|
+
* @see {@link EventResponse} - The TypeScript type definition
|
|
23968
|
+
* @see {@link KEYS_EVENT_RESPONSE} - Array of all keys for this type
|
|
23359
23969
|
*/
|
|
23360
|
-
export const
|
|
23970
|
+
export const KEY_EVENT_RESPONSE_CREATED_ON: keyof EventResponse = 'created_on';
|
|
23361
23971
|
/**
|
|
23362
23972
|
* event_data property
|
|
23363
23973
|
*
|
|
23364
|
-
* Additional details about the action
|
|
23365
23974
|
*
|
|
23366
23975
|
*
|
|
23367
23976
|
*
|
|
23368
23977
|
* @remarks
|
|
23369
|
-
* This key constant provides type-safe access to the `event_data` property of
|
|
23978
|
+
* This key constant provides type-safe access to the `event_data` property of EventResponse objects.
|
|
23370
23979
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23371
23980
|
*
|
|
23372
23981
|
* @example
|
|
23373
23982
|
* ```typescript
|
|
23374
23983
|
* // Direct property access
|
|
23375
|
-
* const value =
|
|
23984
|
+
* const value = eventresponse[KEY_EVENT_RESPONSE_EVENT_DATA];
|
|
23376
23985
|
*
|
|
23377
23986
|
* // Dynamic property access
|
|
23378
|
-
* const propertyName =
|
|
23379
|
-
* const value =
|
|
23987
|
+
* const propertyName = KEY_EVENT_RESPONSE_EVENT_DATA;
|
|
23988
|
+
* const value = eventresponse[propertyName];
|
|
23380
23989
|
* ```
|
|
23381
23990
|
*
|
|
23382
|
-
* @see {@link
|
|
23383
|
-
* @see {@link
|
|
23991
|
+
* @see {@link EventResponse} - The TypeScript type definition
|
|
23992
|
+
* @see {@link KEYS_EVENT_RESPONSE} - Array of all keys for this type
|
|
23384
23993
|
*/
|
|
23385
|
-
export const
|
|
23994
|
+
export const KEY_EVENT_RESPONSE_EVENT_DATA: keyof EventResponse = 'event_data';
|
|
23386
23995
|
/**
|
|
23387
23996
|
* Event Id
|
|
23388
23997
|
*
|
|
@@ -23391,48 +24000,23 @@ export const KEY_EVENT_SCHEMA_EVENT_DATA: keyof EventSchema = 'event_data';
|
|
|
23391
24000
|
*
|
|
23392
24001
|
*
|
|
23393
24002
|
* @remarks
|
|
23394
|
-
* This key constant provides type-safe access to the `event_id` property of
|
|
23395
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23396
|
-
*
|
|
23397
|
-
* @example
|
|
23398
|
-
* ```typescript
|
|
23399
|
-
* // Direct property access
|
|
23400
|
-
* const value = eventschema[KEY_EVENT_SCHEMA_EVENT_ID];
|
|
23401
|
-
*
|
|
23402
|
-
* // Dynamic property access
|
|
23403
|
-
* const propertyName = KEY_EVENT_SCHEMA_EVENT_ID;
|
|
23404
|
-
* const value = eventschema[propertyName];
|
|
23405
|
-
* ```
|
|
23406
|
-
*
|
|
23407
|
-
* @see {@link EventSchema} - The TypeScript type definition
|
|
23408
|
-
* @see {@link KEYS_EVENT_SCHEMA} - Array of all keys for this type
|
|
23409
|
-
*/
|
|
23410
|
-
export const KEY_EVENT_SCHEMA_EVENT_ID: keyof EventSchema = 'event_id';
|
|
23411
|
-
/**
|
|
23412
|
-
* Message Queue Id
|
|
23413
|
-
*
|
|
23414
|
-
* A composite key with the registry account + message queue ID from the poll operation.
|
|
23415
|
-
*
|
|
23416
|
-
*
|
|
23417
|
-
*
|
|
23418
|
-
* @remarks
|
|
23419
|
-
* This key constant provides type-safe access to the `message_queue_id` property of EventSchema objects.
|
|
24003
|
+
* This key constant provides type-safe access to the `event_id` property of EventResponse objects.
|
|
23420
24004
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23421
24005
|
*
|
|
23422
24006
|
* @example
|
|
23423
24007
|
* ```typescript
|
|
23424
24008
|
* // Direct property access
|
|
23425
|
-
* const value =
|
|
24009
|
+
* const value = eventresponse[KEY_EVENT_RESPONSE_EVENT_ID];
|
|
23426
24010
|
*
|
|
23427
24011
|
* // Dynamic property access
|
|
23428
|
-
* const propertyName =
|
|
23429
|
-
* const value =
|
|
24012
|
+
* const propertyName = KEY_EVENT_RESPONSE_EVENT_ID;
|
|
24013
|
+
* const value = eventresponse[propertyName];
|
|
23430
24014
|
* ```
|
|
23431
24015
|
*
|
|
23432
|
-
* @see {@link
|
|
23433
|
-
* @see {@link
|
|
24016
|
+
* @see {@link EventResponse} - The TypeScript type definition
|
|
24017
|
+
* @see {@link KEYS_EVENT_RESPONSE} - Array of all keys for this type
|
|
23434
24018
|
*/
|
|
23435
|
-
export const
|
|
24019
|
+
export const KEY_EVENT_RESPONSE_EVENT_ID: keyof EventResponse = 'event_id';
|
|
23436
24020
|
/**
|
|
23437
24021
|
* Object Id
|
|
23438
24022
|
*
|
|
@@ -23441,23 +24025,23 @@ export const KEY_EVENT_SCHEMA_MESSAGE_QUEUE_ID: keyof EventSchema = 'message_que
|
|
|
23441
24025
|
*
|
|
23442
24026
|
*
|
|
23443
24027
|
* @remarks
|
|
23444
|
-
* This key constant provides type-safe access to the `object_id` property of
|
|
24028
|
+
* This key constant provides type-safe access to the `object_id` property of EventResponse objects.
|
|
23445
24029
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23446
24030
|
*
|
|
23447
24031
|
* @example
|
|
23448
24032
|
* ```typescript
|
|
23449
24033
|
* // Direct property access
|
|
23450
|
-
* const value =
|
|
24034
|
+
* const value = eventresponse[KEY_EVENT_RESPONSE_OBJECT_ID];
|
|
23451
24035
|
*
|
|
23452
24036
|
* // Dynamic property access
|
|
23453
|
-
* const propertyName =
|
|
23454
|
-
* const value =
|
|
24037
|
+
* const propertyName = KEY_EVENT_RESPONSE_OBJECT_ID;
|
|
24038
|
+
* const value = eventresponse[propertyName];
|
|
23455
24039
|
* ```
|
|
23456
24040
|
*
|
|
23457
|
-
* @see {@link
|
|
23458
|
-
* @see {@link
|
|
24041
|
+
* @see {@link EventResponse} - The TypeScript type definition
|
|
24042
|
+
* @see {@link KEYS_EVENT_RESPONSE} - Array of all keys for this type
|
|
23459
24043
|
*/
|
|
23460
|
-
export const
|
|
24044
|
+
export const KEY_EVENT_RESPONSE_OBJECT_ID: keyof EventResponse = 'object_id';
|
|
23461
24045
|
/**
|
|
23462
24046
|
* object_type property
|
|
23463
24047
|
*
|
|
@@ -23466,74 +24050,23 @@ export const KEY_EVENT_SCHEMA_OBJECT_ID: keyof EventSchema = 'object_id';
|
|
|
23466
24050
|
*
|
|
23467
24051
|
*
|
|
23468
24052
|
* @remarks
|
|
23469
|
-
* This key constant provides type-safe access to the `object_type` property of
|
|
23470
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23471
|
-
*
|
|
23472
|
-
* @example
|
|
23473
|
-
* ```typescript
|
|
23474
|
-
* // Direct property access
|
|
23475
|
-
* const value = eventschema[KEY_EVENT_SCHEMA_OBJECT_TYPE];
|
|
23476
|
-
*
|
|
23477
|
-
* // Dynamic property access
|
|
23478
|
-
* const propertyName = KEY_EVENT_SCHEMA_OBJECT_TYPE;
|
|
23479
|
-
* const value = eventschema[propertyName];
|
|
23480
|
-
* ```
|
|
23481
|
-
*
|
|
23482
|
-
* @see {@link EventSchema} - The TypeScript type definition
|
|
23483
|
-
* @see {@link KEYS_EVENT_SCHEMA} - Array of all keys for this type
|
|
23484
|
-
*/
|
|
23485
|
-
export const KEY_EVENT_SCHEMA_OBJECT_TYPE: keyof EventSchema = 'object_type';
|
|
23486
|
-
/**
|
|
23487
|
-
* Source
|
|
23488
|
-
*
|
|
23489
|
-
* The source of the event
|
|
23490
|
-
*
|
|
23491
|
-
* @type {string}
|
|
23492
|
-
*
|
|
23493
|
-
*
|
|
23494
|
-
* @remarks
|
|
23495
|
-
* This key constant provides type-safe access to the `source` property of EventSchema objects.
|
|
23496
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23497
|
-
*
|
|
23498
|
-
* @example
|
|
23499
|
-
* ```typescript
|
|
23500
|
-
* // Direct property access
|
|
23501
|
-
* const value = eventschema[KEY_EVENT_SCHEMA_SOURCE];
|
|
23502
|
-
*
|
|
23503
|
-
* // Dynamic property access
|
|
23504
|
-
* const propertyName = KEY_EVENT_SCHEMA_SOURCE;
|
|
23505
|
-
* const value = eventschema[propertyName];
|
|
23506
|
-
* ```
|
|
23507
|
-
*
|
|
23508
|
-
* @see {@link EventSchema} - The TypeScript type definition
|
|
23509
|
-
* @see {@link KEYS_EVENT_SCHEMA} - Array of all keys for this type
|
|
23510
|
-
*/
|
|
23511
|
-
export const KEY_EVENT_SCHEMA_SOURCE: keyof EventSchema = 'source';
|
|
23512
|
-
/**
|
|
23513
|
-
* Source Event Id
|
|
23514
|
-
*
|
|
23515
|
-
* The reference of the original registry event (if any) that triggered this customer-facing event
|
|
23516
|
-
*
|
|
23517
|
-
*
|
|
23518
|
-
*
|
|
23519
|
-
* @remarks
|
|
23520
|
-
* This key constant provides type-safe access to the `source_event_id` property of EventSchema objects.
|
|
24053
|
+
* This key constant provides type-safe access to the `object_type` property of EventResponse objects.
|
|
23521
24054
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23522
24055
|
*
|
|
23523
24056
|
* @example
|
|
23524
24057
|
* ```typescript
|
|
23525
24058
|
* // Direct property access
|
|
23526
|
-
* const value =
|
|
24059
|
+
* const value = eventresponse[KEY_EVENT_RESPONSE_OBJECT_TYPE];
|
|
23527
24060
|
*
|
|
23528
24061
|
* // Dynamic property access
|
|
23529
|
-
* const propertyName =
|
|
23530
|
-
* const value =
|
|
24062
|
+
* const propertyName = KEY_EVENT_RESPONSE_OBJECT_TYPE;
|
|
24063
|
+
* const value = eventresponse[propertyName];
|
|
23531
24064
|
* ```
|
|
23532
24065
|
*
|
|
23533
|
-
* @see {@link
|
|
23534
|
-
* @see {@link
|
|
24066
|
+
* @see {@link EventResponse} - The TypeScript type definition
|
|
24067
|
+
* @see {@link KEYS_EVENT_RESPONSE} - Array of all keys for this type
|
|
23535
24068
|
*/
|
|
23536
|
-
export const
|
|
24069
|
+
export const KEY_EVENT_RESPONSE_OBJECT_TYPE: keyof EventResponse = 'object_type';
|
|
23537
24070
|
/**
|
|
23538
24071
|
* subtype property
|
|
23539
24072
|
*
|
|
@@ -23542,48 +24075,23 @@ export const KEY_EVENT_SCHEMA_SOURCE_EVENT_ID: keyof EventSchema = 'source_event
|
|
|
23542
24075
|
*
|
|
23543
24076
|
*
|
|
23544
24077
|
* @remarks
|
|
23545
|
-
* This key constant provides type-safe access to the `subtype` property of
|
|
23546
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23547
|
-
*
|
|
23548
|
-
* @example
|
|
23549
|
-
* ```typescript
|
|
23550
|
-
* // Direct property access
|
|
23551
|
-
* const value = eventschema[KEY_EVENT_SCHEMA_SUBTYPE];
|
|
23552
|
-
*
|
|
23553
|
-
* // Dynamic property access
|
|
23554
|
-
* const propertyName = KEY_EVENT_SCHEMA_SUBTYPE;
|
|
23555
|
-
* const value = eventschema[propertyName];
|
|
23556
|
-
* ```
|
|
23557
|
-
*
|
|
23558
|
-
* @see {@link EventSchema} - The TypeScript type definition
|
|
23559
|
-
* @see {@link KEYS_EVENT_SCHEMA} - Array of all keys for this type
|
|
23560
|
-
*/
|
|
23561
|
-
export const KEY_EVENT_SCHEMA_SUBTYPE: keyof EventSchema = 'subtype';
|
|
23562
|
-
/**
|
|
23563
|
-
* Target
|
|
23564
|
-
*
|
|
23565
|
-
* The target of the event
|
|
23566
|
-
*
|
|
23567
|
-
*
|
|
23568
|
-
*
|
|
23569
|
-
* @remarks
|
|
23570
|
-
* This key constant provides type-safe access to the `target` property of EventSchema objects.
|
|
24078
|
+
* This key constant provides type-safe access to the `subtype` property of EventResponse objects.
|
|
23571
24079
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23572
24080
|
*
|
|
23573
24081
|
* @example
|
|
23574
24082
|
* ```typescript
|
|
23575
24083
|
* // Direct property access
|
|
23576
|
-
* const value =
|
|
24084
|
+
* const value = eventresponse[KEY_EVENT_RESPONSE_SUBTYPE];
|
|
23577
24085
|
*
|
|
23578
24086
|
* // Dynamic property access
|
|
23579
|
-
* const propertyName =
|
|
23580
|
-
* const value =
|
|
24087
|
+
* const propertyName = KEY_EVENT_RESPONSE_SUBTYPE;
|
|
24088
|
+
* const value = eventresponse[propertyName];
|
|
23581
24089
|
* ```
|
|
23582
24090
|
*
|
|
23583
|
-
* @see {@link
|
|
23584
|
-
* @see {@link
|
|
24091
|
+
* @see {@link EventResponse} - The TypeScript type definition
|
|
24092
|
+
* @see {@link KEYS_EVENT_RESPONSE} - Array of all keys for this type
|
|
23585
24093
|
*/
|
|
23586
|
-
export const
|
|
24094
|
+
export const KEY_EVENT_RESPONSE_SUBTYPE: keyof EventResponse = 'subtype';
|
|
23587
24095
|
/**
|
|
23588
24096
|
* type property
|
|
23589
24097
|
*
|
|
@@ -23592,58 +24100,54 @@ export const KEY_EVENT_SCHEMA_TARGET: keyof EventSchema = 'target';
|
|
|
23592
24100
|
*
|
|
23593
24101
|
*
|
|
23594
24102
|
* @remarks
|
|
23595
|
-
* This key constant provides type-safe access to the `type` property of
|
|
24103
|
+
* This key constant provides type-safe access to the `type` property of EventResponse objects.
|
|
23596
24104
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
23597
24105
|
*
|
|
23598
24106
|
* @example
|
|
23599
24107
|
* ```typescript
|
|
23600
24108
|
* // Direct property access
|
|
23601
|
-
* const value =
|
|
24109
|
+
* const value = eventresponse[KEY_EVENT_RESPONSE_TYPE];
|
|
23602
24110
|
*
|
|
23603
24111
|
* // Dynamic property access
|
|
23604
|
-
* const propertyName =
|
|
23605
|
-
* const value =
|
|
24112
|
+
* const propertyName = KEY_EVENT_RESPONSE_TYPE;
|
|
24113
|
+
* const value = eventresponse[propertyName];
|
|
23606
24114
|
* ```
|
|
23607
24115
|
*
|
|
23608
|
-
* @see {@link
|
|
23609
|
-
* @see {@link
|
|
24116
|
+
* @see {@link EventResponse} - The TypeScript type definition
|
|
24117
|
+
* @see {@link KEYS_EVENT_RESPONSE} - Array of all keys for this type
|
|
23610
24118
|
*/
|
|
23611
|
-
export const
|
|
24119
|
+
export const KEY_EVENT_RESPONSE_TYPE: keyof EventResponse = 'type';
|
|
23612
24120
|
|
|
23613
24121
|
/**
|
|
23614
|
-
* Array of all
|
|
24122
|
+
* Array of all EventResponse property keys
|
|
23615
24123
|
*
|
|
23616
24124
|
* @remarks
|
|
23617
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
24125
|
+
* This constant provides a readonly array containing all valid property keys for EventResponse objects.
|
|
23618
24126
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
23619
24127
|
*
|
|
23620
24128
|
* @example
|
|
23621
24129
|
* ```typescript
|
|
23622
24130
|
* // Iterating through all keys
|
|
23623
|
-
* for (const key of
|
|
23624
|
-
* console.log(`Property: ${key}, Value: ${
|
|
24131
|
+
* for (const key of KEYS_EVENT_RESPONSE) {
|
|
24132
|
+
* console.log(`Property: ${key}, Value: ${eventresponse[key]}`);
|
|
23625
24133
|
* }
|
|
23626
24134
|
*
|
|
23627
24135
|
* // Validation
|
|
23628
|
-
* const isValidKey =
|
|
24136
|
+
* const isValidKey = KEYS_EVENT_RESPONSE.includes(someKey);
|
|
23629
24137
|
* ```
|
|
23630
24138
|
*
|
|
23631
|
-
* @see {@link
|
|
24139
|
+
* @see {@link EventResponse} - The TypeScript type definition
|
|
23632
24140
|
*/
|
|
23633
|
-
export const
|
|
23634
|
-
|
|
23635
|
-
|
|
23636
|
-
|
|
23637
|
-
|
|
23638
|
-
|
|
23639
|
-
|
|
23640
|
-
|
|
23641
|
-
|
|
23642
|
-
|
|
23643
|
-
KEY_EVENT_SCHEMA_SUBTYPE,
|
|
23644
|
-
KEY_EVENT_SCHEMA_TARGET,
|
|
23645
|
-
KEY_EVENT_SCHEMA_TYPE,
|
|
23646
|
-
] as const satisfies (keyof EventSchema)[];
|
|
24141
|
+
export const KEYS_EVENT_RESPONSE = [
|
|
24142
|
+
KEY_EVENT_RESPONSE_ACKNOWLEDGED_ON,
|
|
24143
|
+
KEY_EVENT_RESPONSE_CREATED_ON,
|
|
24144
|
+
KEY_EVENT_RESPONSE_EVENT_DATA,
|
|
24145
|
+
KEY_EVENT_RESPONSE_EVENT_ID,
|
|
24146
|
+
KEY_EVENT_RESPONSE_OBJECT_ID,
|
|
24147
|
+
KEY_EVENT_RESPONSE_OBJECT_TYPE,
|
|
24148
|
+
KEY_EVENT_RESPONSE_SUBTYPE,
|
|
24149
|
+
KEY_EVENT_RESPONSE_TYPE,
|
|
24150
|
+
] as const satisfies (keyof EventResponse)[];
|
|
23647
24151
|
|
|
23648
24152
|
/**
|
|
23649
24153
|
* Start Date
|
|
@@ -38461,6 +38965,1240 @@ export const KEYS_TLD_SPECIFICATION = [
|
|
|
38461
38965
|
KEY_TLD_SPECIFICATION_WHOIS,
|
|
38462
38966
|
] as const satisfies (keyof TldSpecification)[];
|
|
38463
38967
|
|
|
38968
|
+
/**
|
|
38969
|
+
* Cc
|
|
38970
|
+
*
|
|
38971
|
+
* ISO 3166-2 two-character country code
|
|
38972
|
+
*
|
|
38973
|
+
* @type {string}
|
|
38974
|
+
*
|
|
38975
|
+
*
|
|
38976
|
+
* @remarks
|
|
38977
|
+
* This key constant provides type-safe access to the `cc` property of TmAddr objects.
|
|
38978
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
38979
|
+
*
|
|
38980
|
+
* @example
|
|
38981
|
+
* ```typescript
|
|
38982
|
+
* // Direct property access
|
|
38983
|
+
* const value = tmaddr[KEY_TM_ADDR_CC];
|
|
38984
|
+
*
|
|
38985
|
+
* // Dynamic property access
|
|
38986
|
+
* const propertyName = KEY_TM_ADDR_CC;
|
|
38987
|
+
* const value = tmaddr[propertyName];
|
|
38988
|
+
* ```
|
|
38989
|
+
*
|
|
38990
|
+
* @see {@link TmAddr} - The TypeScript type definition
|
|
38991
|
+
* @see {@link KEYS_TM_ADDR} - Array of all keys for this type
|
|
38992
|
+
*/
|
|
38993
|
+
export const KEY_TM_ADDR_CC: keyof TmAddr = 'cc';
|
|
38994
|
+
/**
|
|
38995
|
+
* City
|
|
38996
|
+
*
|
|
38997
|
+
*
|
|
38998
|
+
* @type {string}
|
|
38999
|
+
*
|
|
39000
|
+
*
|
|
39001
|
+
* @remarks
|
|
39002
|
+
* This key constant provides type-safe access to the `city` property of TmAddr objects.
|
|
39003
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39004
|
+
*
|
|
39005
|
+
* @example
|
|
39006
|
+
* ```typescript
|
|
39007
|
+
* // Direct property access
|
|
39008
|
+
* const value = tmaddr[KEY_TM_ADDR_CITY];
|
|
39009
|
+
*
|
|
39010
|
+
* // Dynamic property access
|
|
39011
|
+
* const propertyName = KEY_TM_ADDR_CITY;
|
|
39012
|
+
* const value = tmaddr[propertyName];
|
|
39013
|
+
* ```
|
|
39014
|
+
*
|
|
39015
|
+
* @see {@link TmAddr} - The TypeScript type definition
|
|
39016
|
+
* @see {@link KEYS_TM_ADDR} - Array of all keys for this type
|
|
39017
|
+
*/
|
|
39018
|
+
export const KEY_TM_ADDR_CITY: keyof TmAddr = 'city';
|
|
39019
|
+
/**
|
|
39020
|
+
* Pc
|
|
39021
|
+
*
|
|
39022
|
+
*
|
|
39023
|
+
*
|
|
39024
|
+
*
|
|
39025
|
+
* @remarks
|
|
39026
|
+
* This key constant provides type-safe access to the `pc` property of TmAddr objects.
|
|
39027
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39028
|
+
*
|
|
39029
|
+
* @example
|
|
39030
|
+
* ```typescript
|
|
39031
|
+
* // Direct property access
|
|
39032
|
+
* const value = tmaddr[KEY_TM_ADDR_PC];
|
|
39033
|
+
*
|
|
39034
|
+
* // Dynamic property access
|
|
39035
|
+
* const propertyName = KEY_TM_ADDR_PC;
|
|
39036
|
+
* const value = tmaddr[propertyName];
|
|
39037
|
+
* ```
|
|
39038
|
+
*
|
|
39039
|
+
* @see {@link TmAddr} - The TypeScript type definition
|
|
39040
|
+
* @see {@link KEYS_TM_ADDR} - Array of all keys for this type
|
|
39041
|
+
*/
|
|
39042
|
+
export const KEY_TM_ADDR_PC: keyof TmAddr = 'pc';
|
|
39043
|
+
/**
|
|
39044
|
+
* Sp
|
|
39045
|
+
*
|
|
39046
|
+
*
|
|
39047
|
+
*
|
|
39048
|
+
*
|
|
39049
|
+
* @remarks
|
|
39050
|
+
* This key constant provides type-safe access to the `sp` property of TmAddr objects.
|
|
39051
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39052
|
+
*
|
|
39053
|
+
* @example
|
|
39054
|
+
* ```typescript
|
|
39055
|
+
* // Direct property access
|
|
39056
|
+
* const value = tmaddr[KEY_TM_ADDR_SP];
|
|
39057
|
+
*
|
|
39058
|
+
* // Dynamic property access
|
|
39059
|
+
* const propertyName = KEY_TM_ADDR_SP;
|
|
39060
|
+
* const value = tmaddr[propertyName];
|
|
39061
|
+
* ```
|
|
39062
|
+
*
|
|
39063
|
+
* @see {@link TmAddr} - The TypeScript type definition
|
|
39064
|
+
* @see {@link KEYS_TM_ADDR} - Array of all keys for this type
|
|
39065
|
+
*/
|
|
39066
|
+
export const KEY_TM_ADDR_SP: keyof TmAddr = 'sp';
|
|
39067
|
+
/**
|
|
39068
|
+
* Street
|
|
39069
|
+
*
|
|
39070
|
+
*
|
|
39071
|
+
* @type {array}
|
|
39072
|
+
*
|
|
39073
|
+
*
|
|
39074
|
+
* @remarks
|
|
39075
|
+
* This key constant provides type-safe access to the `street` property of TmAddr objects.
|
|
39076
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39077
|
+
*
|
|
39078
|
+
* @example
|
|
39079
|
+
* ```typescript
|
|
39080
|
+
* // Direct property access
|
|
39081
|
+
* const value = tmaddr[KEY_TM_ADDR_STREET];
|
|
39082
|
+
*
|
|
39083
|
+
* // Dynamic property access
|
|
39084
|
+
* const propertyName = KEY_TM_ADDR_STREET;
|
|
39085
|
+
* const value = tmaddr[propertyName];
|
|
39086
|
+
* ```
|
|
39087
|
+
*
|
|
39088
|
+
* @see {@link TmAddr} - The TypeScript type definition
|
|
39089
|
+
* @see {@link KEYS_TM_ADDR} - Array of all keys for this type
|
|
39090
|
+
*/
|
|
39091
|
+
export const KEY_TM_ADDR_STREET: keyof TmAddr = 'street';
|
|
39092
|
+
|
|
39093
|
+
/**
|
|
39094
|
+
* Array of all TmAddr property keys
|
|
39095
|
+
*
|
|
39096
|
+
* @remarks
|
|
39097
|
+
* This constant provides a readonly array containing all valid property keys for TmAddr objects.
|
|
39098
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
39099
|
+
*
|
|
39100
|
+
* @example
|
|
39101
|
+
* ```typescript
|
|
39102
|
+
* // Iterating through all keys
|
|
39103
|
+
* for (const key of KEYS_TM_ADDR) {
|
|
39104
|
+
* console.log(`Property: ${key}, Value: ${tmaddr[key]}`);
|
|
39105
|
+
* }
|
|
39106
|
+
*
|
|
39107
|
+
* // Validation
|
|
39108
|
+
* const isValidKey = KEYS_TM_ADDR.includes(someKey);
|
|
39109
|
+
* ```
|
|
39110
|
+
*
|
|
39111
|
+
* @see {@link TmAddr} - The TypeScript type definition
|
|
39112
|
+
*/
|
|
39113
|
+
export const KEYS_TM_ADDR = [
|
|
39114
|
+
KEY_TM_ADDR_CC,
|
|
39115
|
+
KEY_TM_ADDR_CITY,
|
|
39116
|
+
KEY_TM_ADDR_PC,
|
|
39117
|
+
KEY_TM_ADDR_SP,
|
|
39118
|
+
KEY_TM_ADDR_STREET,
|
|
39119
|
+
] as const satisfies (keyof TmAddr)[];
|
|
39120
|
+
|
|
39121
|
+
/**
|
|
39122
|
+
* Class Descs
|
|
39123
|
+
*
|
|
39124
|
+
* Nice Classification descriptions
|
|
39125
|
+
*
|
|
39126
|
+
* @type {array}
|
|
39127
|
+
*
|
|
39128
|
+
*
|
|
39129
|
+
* @remarks
|
|
39130
|
+
* This key constant provides type-safe access to the `class_descs` property of TmClaim objects.
|
|
39131
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39132
|
+
*
|
|
39133
|
+
* @example
|
|
39134
|
+
* ```typescript
|
|
39135
|
+
* // Direct property access
|
|
39136
|
+
* const value = tmclaim[KEY_TM_CLAIM_CLASS_DESCS];
|
|
39137
|
+
*
|
|
39138
|
+
* // Dynamic property access
|
|
39139
|
+
* const propertyName = KEY_TM_CLAIM_CLASS_DESCS;
|
|
39140
|
+
* const value = tmclaim[propertyName];
|
|
39141
|
+
* ```
|
|
39142
|
+
*
|
|
39143
|
+
* @see {@link TmClaim} - The TypeScript type definition
|
|
39144
|
+
* @see {@link KEYS_TM_CLAIM} - Array of all keys for this type
|
|
39145
|
+
*/
|
|
39146
|
+
export const KEY_TM_CLAIM_CLASS_DESCS: keyof TmClaim = 'class_descs';
|
|
39147
|
+
/**
|
|
39148
|
+
* Contacts
|
|
39149
|
+
*
|
|
39150
|
+
* Zero or more contacts/representatives
|
|
39151
|
+
*
|
|
39152
|
+
* @type {array}
|
|
39153
|
+
*
|
|
39154
|
+
*
|
|
39155
|
+
* @remarks
|
|
39156
|
+
* This key constant provides type-safe access to the `contacts` property of TmClaim objects.
|
|
39157
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39158
|
+
*
|
|
39159
|
+
* @example
|
|
39160
|
+
* ```typescript
|
|
39161
|
+
* // Direct property access
|
|
39162
|
+
* const value = tmclaim[KEY_TM_CLAIM_CONTACTS];
|
|
39163
|
+
*
|
|
39164
|
+
* // Dynamic property access
|
|
39165
|
+
* const propertyName = KEY_TM_CLAIM_CONTACTS;
|
|
39166
|
+
* const value = tmclaim[propertyName];
|
|
39167
|
+
* ```
|
|
39168
|
+
*
|
|
39169
|
+
* @see {@link TmClaim} - The TypeScript type definition
|
|
39170
|
+
* @see {@link KEYS_TM_CLAIM} - Array of all keys for this type
|
|
39171
|
+
*/
|
|
39172
|
+
export const KEY_TM_CLAIM_CONTACTS: keyof TmClaim = 'contacts';
|
|
39173
|
+
/**
|
|
39174
|
+
* Goods And Services
|
|
39175
|
+
*
|
|
39176
|
+
* Full description of goods and services
|
|
39177
|
+
*
|
|
39178
|
+
* @type {string}
|
|
39179
|
+
*
|
|
39180
|
+
*
|
|
39181
|
+
* @remarks
|
|
39182
|
+
* This key constant provides type-safe access to the `goods_and_services` property of TmClaim objects.
|
|
39183
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39184
|
+
*
|
|
39185
|
+
* @example
|
|
39186
|
+
* ```typescript
|
|
39187
|
+
* // Direct property access
|
|
39188
|
+
* const value = tmclaim[KEY_TM_CLAIM_GOODS_AND_SERVICES];
|
|
39189
|
+
*
|
|
39190
|
+
* // Dynamic property access
|
|
39191
|
+
* const propertyName = KEY_TM_CLAIM_GOODS_AND_SERVICES;
|
|
39192
|
+
* const value = tmclaim[propertyName];
|
|
39193
|
+
* ```
|
|
39194
|
+
*
|
|
39195
|
+
* @see {@link TmClaim} - The TypeScript type definition
|
|
39196
|
+
* @see {@link KEYS_TM_CLAIM} - Array of all keys for this type
|
|
39197
|
+
*/
|
|
39198
|
+
export const KEY_TM_CLAIM_GOODS_AND_SERVICES: keyof TmClaim = 'goods_and_services';
|
|
39199
|
+
/**
|
|
39200
|
+
* Holders
|
|
39201
|
+
*
|
|
39202
|
+
* One or more holders of the mark
|
|
39203
|
+
*
|
|
39204
|
+
* @type {array}
|
|
39205
|
+
*
|
|
39206
|
+
*
|
|
39207
|
+
* @remarks
|
|
39208
|
+
* This key constant provides type-safe access to the `holders` property of TmClaim objects.
|
|
39209
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39210
|
+
*
|
|
39211
|
+
* @example
|
|
39212
|
+
* ```typescript
|
|
39213
|
+
* // Direct property access
|
|
39214
|
+
* const value = tmclaim[KEY_TM_CLAIM_HOLDERS];
|
|
39215
|
+
*
|
|
39216
|
+
* // Dynamic property access
|
|
39217
|
+
* const propertyName = KEY_TM_CLAIM_HOLDERS;
|
|
39218
|
+
* const value = tmclaim[propertyName];
|
|
39219
|
+
* ```
|
|
39220
|
+
*
|
|
39221
|
+
* @see {@link TmClaim} - The TypeScript type definition
|
|
39222
|
+
* @see {@link KEYS_TM_CLAIM} - Array of all keys for this type
|
|
39223
|
+
*/
|
|
39224
|
+
export const KEY_TM_CLAIM_HOLDERS: keyof TmClaim = 'holders';
|
|
39225
|
+
/**
|
|
39226
|
+
* jur_desc property
|
|
39227
|
+
*
|
|
39228
|
+
* Jurisdiction where the mark is protected
|
|
39229
|
+
*
|
|
39230
|
+
*
|
|
39231
|
+
*
|
|
39232
|
+
* @remarks
|
|
39233
|
+
* This key constant provides type-safe access to the `jur_desc` property of TmClaim objects.
|
|
39234
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39235
|
+
*
|
|
39236
|
+
* @example
|
|
39237
|
+
* ```typescript
|
|
39238
|
+
* // Direct property access
|
|
39239
|
+
* const value = tmclaim[KEY_TM_CLAIM_JUR_DESC];
|
|
39240
|
+
*
|
|
39241
|
+
* // Dynamic property access
|
|
39242
|
+
* const propertyName = KEY_TM_CLAIM_JUR_DESC;
|
|
39243
|
+
* const value = tmclaim[propertyName];
|
|
39244
|
+
* ```
|
|
39245
|
+
*
|
|
39246
|
+
* @see {@link TmClaim} - The TypeScript type definition
|
|
39247
|
+
* @see {@link KEYS_TM_CLAIM} - Array of all keys for this type
|
|
39248
|
+
*/
|
|
39249
|
+
export const KEY_TM_CLAIM_JUR_DESC: keyof TmClaim = 'jur_desc';
|
|
39250
|
+
/**
|
|
39251
|
+
* Mark Name
|
|
39252
|
+
*
|
|
39253
|
+
* Mark text string
|
|
39254
|
+
*
|
|
39255
|
+
* @type {string}
|
|
39256
|
+
*
|
|
39257
|
+
*
|
|
39258
|
+
* @remarks
|
|
39259
|
+
* This key constant provides type-safe access to the `mark_name` property of TmClaim objects.
|
|
39260
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39261
|
+
*
|
|
39262
|
+
* @example
|
|
39263
|
+
* ```typescript
|
|
39264
|
+
* // Direct property access
|
|
39265
|
+
* const value = tmclaim[KEY_TM_CLAIM_MARK_NAME];
|
|
39266
|
+
*
|
|
39267
|
+
* // Dynamic property access
|
|
39268
|
+
* const propertyName = KEY_TM_CLAIM_MARK_NAME;
|
|
39269
|
+
* const value = tmclaim[propertyName];
|
|
39270
|
+
* ```
|
|
39271
|
+
*
|
|
39272
|
+
* @see {@link TmClaim} - The TypeScript type definition
|
|
39273
|
+
* @see {@link KEYS_TM_CLAIM} - Array of all keys for this type
|
|
39274
|
+
*/
|
|
39275
|
+
export const KEY_TM_CLAIM_MARK_NAME: keyof TmClaim = 'mark_name';
|
|
39276
|
+
/**
|
|
39277
|
+
* not_exact_match property
|
|
39278
|
+
*
|
|
39279
|
+
* Present if claim added by non-exact match rule
|
|
39280
|
+
*
|
|
39281
|
+
*
|
|
39282
|
+
*
|
|
39283
|
+
* @remarks
|
|
39284
|
+
* This key constant provides type-safe access to the `not_exact_match` property of TmClaim objects.
|
|
39285
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39286
|
+
*
|
|
39287
|
+
* @example
|
|
39288
|
+
* ```typescript
|
|
39289
|
+
* // Direct property access
|
|
39290
|
+
* const value = tmclaim[KEY_TM_CLAIM_NOT_EXACT_MATCH];
|
|
39291
|
+
*
|
|
39292
|
+
* // Dynamic property access
|
|
39293
|
+
* const propertyName = KEY_TM_CLAIM_NOT_EXACT_MATCH;
|
|
39294
|
+
* const value = tmclaim[propertyName];
|
|
39295
|
+
* ```
|
|
39296
|
+
*
|
|
39297
|
+
* @see {@link TmClaim} - The TypeScript type definition
|
|
39298
|
+
* @see {@link KEYS_TM_CLAIM} - Array of all keys for this type
|
|
39299
|
+
*/
|
|
39300
|
+
export const KEY_TM_CLAIM_NOT_EXACT_MATCH: keyof TmClaim = 'not_exact_match';
|
|
39301
|
+
|
|
39302
|
+
/**
|
|
39303
|
+
* Array of all TmClaim property keys
|
|
39304
|
+
*
|
|
39305
|
+
* @remarks
|
|
39306
|
+
* This constant provides a readonly array containing all valid property keys for TmClaim objects.
|
|
39307
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
39308
|
+
*
|
|
39309
|
+
* @example
|
|
39310
|
+
* ```typescript
|
|
39311
|
+
* // Iterating through all keys
|
|
39312
|
+
* for (const key of KEYS_TM_CLAIM) {
|
|
39313
|
+
* console.log(`Property: ${key}, Value: ${tmclaim[key]}`);
|
|
39314
|
+
* }
|
|
39315
|
+
*
|
|
39316
|
+
* // Validation
|
|
39317
|
+
* const isValidKey = KEYS_TM_CLAIM.includes(someKey);
|
|
39318
|
+
* ```
|
|
39319
|
+
*
|
|
39320
|
+
* @see {@link TmClaim} - The TypeScript type definition
|
|
39321
|
+
*/
|
|
39322
|
+
export const KEYS_TM_CLAIM = [
|
|
39323
|
+
KEY_TM_CLAIM_CLASS_DESCS,
|
|
39324
|
+
KEY_TM_CLAIM_CONTACTS,
|
|
39325
|
+
KEY_TM_CLAIM_GOODS_AND_SERVICES,
|
|
39326
|
+
KEY_TM_CLAIM_HOLDERS,
|
|
39327
|
+
KEY_TM_CLAIM_JUR_DESC,
|
|
39328
|
+
KEY_TM_CLAIM_MARK_NAME,
|
|
39329
|
+
KEY_TM_CLAIM_NOT_EXACT_MATCH,
|
|
39330
|
+
] as const satisfies (keyof TmClaim)[];
|
|
39331
|
+
|
|
39332
|
+
/**
|
|
39333
|
+
* Class Num
|
|
39334
|
+
*
|
|
39335
|
+
* Nice Classification class number
|
|
39336
|
+
*
|
|
39337
|
+
* @type {integer}
|
|
39338
|
+
*
|
|
39339
|
+
*
|
|
39340
|
+
* @remarks
|
|
39341
|
+
* This key constant provides type-safe access to the `class_num` property of TmClassDesc objects.
|
|
39342
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39343
|
+
*
|
|
39344
|
+
* @example
|
|
39345
|
+
* ```typescript
|
|
39346
|
+
* // Direct property access
|
|
39347
|
+
* const value = tmclassdesc[KEY_TM_CLASS_DESC_CLASS_NUM];
|
|
39348
|
+
*
|
|
39349
|
+
* // Dynamic property access
|
|
39350
|
+
* const propertyName = KEY_TM_CLASS_DESC_CLASS_NUM;
|
|
39351
|
+
* const value = tmclassdesc[propertyName];
|
|
39352
|
+
* ```
|
|
39353
|
+
*
|
|
39354
|
+
* @see {@link TmClassDesc} - The TypeScript type definition
|
|
39355
|
+
* @see {@link KEYS_TM_CLASS_DESC} - Array of all keys for this type
|
|
39356
|
+
*/
|
|
39357
|
+
export const KEY_TM_CLASS_DESC_CLASS_NUM: keyof TmClassDesc = 'class_num';
|
|
39358
|
+
/**
|
|
39359
|
+
* Description
|
|
39360
|
+
*
|
|
39361
|
+
* Description of the class in English
|
|
39362
|
+
*
|
|
39363
|
+
* @type {string}
|
|
39364
|
+
*
|
|
39365
|
+
*
|
|
39366
|
+
* @remarks
|
|
39367
|
+
* This key constant provides type-safe access to the `description` property of TmClassDesc objects.
|
|
39368
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39369
|
+
*
|
|
39370
|
+
* @example
|
|
39371
|
+
* ```typescript
|
|
39372
|
+
* // Direct property access
|
|
39373
|
+
* const value = tmclassdesc[KEY_TM_CLASS_DESC_DESCRIPTION];
|
|
39374
|
+
*
|
|
39375
|
+
* // Dynamic property access
|
|
39376
|
+
* const propertyName = KEY_TM_CLASS_DESC_DESCRIPTION;
|
|
39377
|
+
* const value = tmclassdesc[propertyName];
|
|
39378
|
+
* ```
|
|
39379
|
+
*
|
|
39380
|
+
* @see {@link TmClassDesc} - The TypeScript type definition
|
|
39381
|
+
* @see {@link KEYS_TM_CLASS_DESC} - Array of all keys for this type
|
|
39382
|
+
*/
|
|
39383
|
+
export const KEY_TM_CLASS_DESC_DESCRIPTION: keyof TmClassDesc = 'description';
|
|
39384
|
+
|
|
39385
|
+
/**
|
|
39386
|
+
* Array of all TmClassDesc property keys
|
|
39387
|
+
*
|
|
39388
|
+
* @remarks
|
|
39389
|
+
* This constant provides a readonly array containing all valid property keys for TmClassDesc objects.
|
|
39390
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
39391
|
+
*
|
|
39392
|
+
* @example
|
|
39393
|
+
* ```typescript
|
|
39394
|
+
* // Iterating through all keys
|
|
39395
|
+
* for (const key of KEYS_TM_CLASS_DESC) {
|
|
39396
|
+
* console.log(`Property: ${key}, Value: ${tmclassdesc[key]}`);
|
|
39397
|
+
* }
|
|
39398
|
+
*
|
|
39399
|
+
* // Validation
|
|
39400
|
+
* const isValidKey = KEYS_TM_CLASS_DESC.includes(someKey);
|
|
39401
|
+
* ```
|
|
39402
|
+
*
|
|
39403
|
+
* @see {@link TmClassDesc} - The TypeScript type definition
|
|
39404
|
+
*/
|
|
39405
|
+
export const KEYS_TM_CLASS_DESC = [
|
|
39406
|
+
KEY_TM_CLASS_DESC_CLASS_NUM,
|
|
39407
|
+
KEY_TM_CLASS_DESC_DESCRIPTION,
|
|
39408
|
+
] as const satisfies (keyof TmClassDesc)[];
|
|
39409
|
+
|
|
39410
|
+
/**
|
|
39411
|
+
* addr property
|
|
39412
|
+
*
|
|
39413
|
+
*
|
|
39414
|
+
*
|
|
39415
|
+
*
|
|
39416
|
+
* @remarks
|
|
39417
|
+
* This key constant provides type-safe access to the `addr` property of TmContact objects.
|
|
39418
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39419
|
+
*
|
|
39420
|
+
* @example
|
|
39421
|
+
* ```typescript
|
|
39422
|
+
* // Direct property access
|
|
39423
|
+
* const value = tmcontact[KEY_TM_CONTACT_ADDR];
|
|
39424
|
+
*
|
|
39425
|
+
* // Dynamic property access
|
|
39426
|
+
* const propertyName = KEY_TM_CONTACT_ADDR;
|
|
39427
|
+
* const value = tmcontact[propertyName];
|
|
39428
|
+
* ```
|
|
39429
|
+
*
|
|
39430
|
+
* @see {@link TmContact} - The TypeScript type definition
|
|
39431
|
+
* @see {@link KEYS_TM_CONTACT} - Array of all keys for this type
|
|
39432
|
+
*/
|
|
39433
|
+
export const KEY_TM_CONTACT_ADDR: keyof TmContact = 'addr';
|
|
39434
|
+
/**
|
|
39435
|
+
* Email
|
|
39436
|
+
*
|
|
39437
|
+
*
|
|
39438
|
+
* @type {string}
|
|
39439
|
+
*
|
|
39440
|
+
*
|
|
39441
|
+
* @remarks
|
|
39442
|
+
* This key constant provides type-safe access to the `email` property of TmContact objects.
|
|
39443
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39444
|
+
*
|
|
39445
|
+
* @example
|
|
39446
|
+
* ```typescript
|
|
39447
|
+
* // Direct property access
|
|
39448
|
+
* const value = tmcontact[KEY_TM_CONTACT_EMAIL];
|
|
39449
|
+
*
|
|
39450
|
+
* // Dynamic property access
|
|
39451
|
+
* const propertyName = KEY_TM_CONTACT_EMAIL;
|
|
39452
|
+
* const value = tmcontact[propertyName];
|
|
39453
|
+
* ```
|
|
39454
|
+
*
|
|
39455
|
+
* @see {@link TmContact} - The TypeScript type definition
|
|
39456
|
+
* @see {@link KEYS_TM_CONTACT} - Array of all keys for this type
|
|
39457
|
+
*/
|
|
39458
|
+
export const KEY_TM_CONTACT_EMAIL: keyof TmContact = 'email';
|
|
39459
|
+
/**
|
|
39460
|
+
* Fax
|
|
39461
|
+
*
|
|
39462
|
+
*
|
|
39463
|
+
*
|
|
39464
|
+
*
|
|
39465
|
+
* @remarks
|
|
39466
|
+
* This key constant provides type-safe access to the `fax` property of TmContact objects.
|
|
39467
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39468
|
+
*
|
|
39469
|
+
* @example
|
|
39470
|
+
* ```typescript
|
|
39471
|
+
* // Direct property access
|
|
39472
|
+
* const value = tmcontact[KEY_TM_CONTACT_FAX];
|
|
39473
|
+
*
|
|
39474
|
+
* // Dynamic property access
|
|
39475
|
+
* const propertyName = KEY_TM_CONTACT_FAX;
|
|
39476
|
+
* const value = tmcontact[propertyName];
|
|
39477
|
+
* ```
|
|
39478
|
+
*
|
|
39479
|
+
* @see {@link TmContact} - The TypeScript type definition
|
|
39480
|
+
* @see {@link KEYS_TM_CONTACT} - Array of all keys for this type
|
|
39481
|
+
*/
|
|
39482
|
+
export const KEY_TM_CONTACT_FAX: keyof TmContact = 'fax';
|
|
39483
|
+
/**
|
|
39484
|
+
* Name
|
|
39485
|
+
*
|
|
39486
|
+
*
|
|
39487
|
+
* @type {string}
|
|
39488
|
+
*
|
|
39489
|
+
*
|
|
39490
|
+
* @remarks
|
|
39491
|
+
* This key constant provides type-safe access to the `name` property of TmContact objects.
|
|
39492
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39493
|
+
*
|
|
39494
|
+
* @example
|
|
39495
|
+
* ```typescript
|
|
39496
|
+
* // Direct property access
|
|
39497
|
+
* const value = tmcontact[KEY_TM_CONTACT_NAME];
|
|
39498
|
+
*
|
|
39499
|
+
* // Dynamic property access
|
|
39500
|
+
* const propertyName = KEY_TM_CONTACT_NAME;
|
|
39501
|
+
* const value = tmcontact[propertyName];
|
|
39502
|
+
* ```
|
|
39503
|
+
*
|
|
39504
|
+
* @see {@link TmContact} - The TypeScript type definition
|
|
39505
|
+
* @see {@link KEYS_TM_CONTACT} - Array of all keys for this type
|
|
39506
|
+
*/
|
|
39507
|
+
export const KEY_TM_CONTACT_NAME: keyof TmContact = 'name';
|
|
39508
|
+
/**
|
|
39509
|
+
* Org
|
|
39510
|
+
*
|
|
39511
|
+
*
|
|
39512
|
+
*
|
|
39513
|
+
*
|
|
39514
|
+
* @remarks
|
|
39515
|
+
* This key constant provides type-safe access to the `org` property of TmContact objects.
|
|
39516
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39517
|
+
*
|
|
39518
|
+
* @example
|
|
39519
|
+
* ```typescript
|
|
39520
|
+
* // Direct property access
|
|
39521
|
+
* const value = tmcontact[KEY_TM_CONTACT_ORG];
|
|
39522
|
+
*
|
|
39523
|
+
* // Dynamic property access
|
|
39524
|
+
* const propertyName = KEY_TM_CONTACT_ORG;
|
|
39525
|
+
* const value = tmcontact[propertyName];
|
|
39526
|
+
* ```
|
|
39527
|
+
*
|
|
39528
|
+
* @see {@link TmContact} - The TypeScript type definition
|
|
39529
|
+
* @see {@link KEYS_TM_CONTACT} - Array of all keys for this type
|
|
39530
|
+
*/
|
|
39531
|
+
export const KEY_TM_CONTACT_ORG: keyof TmContact = 'org';
|
|
39532
|
+
/**
|
|
39533
|
+
* type property
|
|
39534
|
+
*
|
|
39535
|
+
*
|
|
39536
|
+
*
|
|
39537
|
+
*
|
|
39538
|
+
* @remarks
|
|
39539
|
+
* This key constant provides type-safe access to the `type` property of TmContact objects.
|
|
39540
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39541
|
+
*
|
|
39542
|
+
* @example
|
|
39543
|
+
* ```typescript
|
|
39544
|
+
* // Direct property access
|
|
39545
|
+
* const value = tmcontact[KEY_TM_CONTACT_TYPE];
|
|
39546
|
+
*
|
|
39547
|
+
* // Dynamic property access
|
|
39548
|
+
* const propertyName = KEY_TM_CONTACT_TYPE;
|
|
39549
|
+
* const value = tmcontact[propertyName];
|
|
39550
|
+
* ```
|
|
39551
|
+
*
|
|
39552
|
+
* @see {@link TmContact} - The TypeScript type definition
|
|
39553
|
+
* @see {@link KEYS_TM_CONTACT} - Array of all keys for this type
|
|
39554
|
+
*/
|
|
39555
|
+
export const KEY_TM_CONTACT_TYPE: keyof TmContact = 'type';
|
|
39556
|
+
/**
|
|
39557
|
+
* Voice
|
|
39558
|
+
*
|
|
39559
|
+
*
|
|
39560
|
+
* @type {string}
|
|
39561
|
+
*
|
|
39562
|
+
*
|
|
39563
|
+
* @remarks
|
|
39564
|
+
* This key constant provides type-safe access to the `voice` property of TmContact objects.
|
|
39565
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39566
|
+
*
|
|
39567
|
+
* @example
|
|
39568
|
+
* ```typescript
|
|
39569
|
+
* // Direct property access
|
|
39570
|
+
* const value = tmcontact[KEY_TM_CONTACT_VOICE];
|
|
39571
|
+
*
|
|
39572
|
+
* // Dynamic property access
|
|
39573
|
+
* const propertyName = KEY_TM_CONTACT_VOICE;
|
|
39574
|
+
* const value = tmcontact[propertyName];
|
|
39575
|
+
* ```
|
|
39576
|
+
*
|
|
39577
|
+
* @see {@link TmContact} - The TypeScript type definition
|
|
39578
|
+
* @see {@link KEYS_TM_CONTACT} - Array of all keys for this type
|
|
39579
|
+
*/
|
|
39580
|
+
export const KEY_TM_CONTACT_VOICE: keyof TmContact = 'voice';
|
|
39581
|
+
|
|
39582
|
+
/**
|
|
39583
|
+
* Array of all TmContact property keys
|
|
39584
|
+
*
|
|
39585
|
+
* @remarks
|
|
39586
|
+
* This constant provides a readonly array containing all valid property keys for TmContact objects.
|
|
39587
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
39588
|
+
*
|
|
39589
|
+
* @example
|
|
39590
|
+
* ```typescript
|
|
39591
|
+
* // Iterating through all keys
|
|
39592
|
+
* for (const key of KEYS_TM_CONTACT) {
|
|
39593
|
+
* console.log(`Property: ${key}, Value: ${tmcontact[key]}`);
|
|
39594
|
+
* }
|
|
39595
|
+
*
|
|
39596
|
+
* // Validation
|
|
39597
|
+
* const isValidKey = KEYS_TM_CONTACT.includes(someKey);
|
|
39598
|
+
* ```
|
|
39599
|
+
*
|
|
39600
|
+
* @see {@link TmContact} - The TypeScript type definition
|
|
39601
|
+
*/
|
|
39602
|
+
export const KEYS_TM_CONTACT = [
|
|
39603
|
+
KEY_TM_CONTACT_ADDR,
|
|
39604
|
+
KEY_TM_CONTACT_EMAIL,
|
|
39605
|
+
KEY_TM_CONTACT_FAX,
|
|
39606
|
+
KEY_TM_CONTACT_NAME,
|
|
39607
|
+
KEY_TM_CONTACT_ORG,
|
|
39608
|
+
KEY_TM_CONTACT_TYPE,
|
|
39609
|
+
KEY_TM_CONTACT_VOICE,
|
|
39610
|
+
] as const satisfies (keyof TmContact)[];
|
|
39611
|
+
|
|
39612
|
+
/**
|
|
39613
|
+
* Cc
|
|
39614
|
+
*
|
|
39615
|
+
* ISO 3166-2 jurisdiction country code
|
|
39616
|
+
*
|
|
39617
|
+
* @type {string}
|
|
39618
|
+
*
|
|
39619
|
+
*
|
|
39620
|
+
* @remarks
|
|
39621
|
+
* This key constant provides type-safe access to the `cc` property of TmCourt objects.
|
|
39622
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39623
|
+
*
|
|
39624
|
+
* @example
|
|
39625
|
+
* ```typescript
|
|
39626
|
+
* // Direct property access
|
|
39627
|
+
* const value = tmcourt[KEY_TM_COURT_CC];
|
|
39628
|
+
*
|
|
39629
|
+
* // Dynamic property access
|
|
39630
|
+
* const propertyName = KEY_TM_COURT_CC;
|
|
39631
|
+
* const value = tmcourt[propertyName];
|
|
39632
|
+
* ```
|
|
39633
|
+
*
|
|
39634
|
+
* @see {@link TmCourt} - The TypeScript type definition
|
|
39635
|
+
* @see {@link KEYS_TM_COURT} - Array of all keys for this type
|
|
39636
|
+
*/
|
|
39637
|
+
export const KEY_TM_COURT_CC: keyof TmCourt = 'cc';
|
|
39638
|
+
/**
|
|
39639
|
+
* Court Name
|
|
39640
|
+
*
|
|
39641
|
+
* Name of the court
|
|
39642
|
+
*
|
|
39643
|
+
* @type {string}
|
|
39644
|
+
*
|
|
39645
|
+
*
|
|
39646
|
+
* @remarks
|
|
39647
|
+
* This key constant provides type-safe access to the `court_name` property of TmCourt objects.
|
|
39648
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39649
|
+
*
|
|
39650
|
+
* @example
|
|
39651
|
+
* ```typescript
|
|
39652
|
+
* // Direct property access
|
|
39653
|
+
* const value = tmcourt[KEY_TM_COURT_COURT_NAME];
|
|
39654
|
+
*
|
|
39655
|
+
* // Dynamic property access
|
|
39656
|
+
* const propertyName = KEY_TM_COURT_COURT_NAME;
|
|
39657
|
+
* const value = tmcourt[propertyName];
|
|
39658
|
+
* ```
|
|
39659
|
+
*
|
|
39660
|
+
* @see {@link TmCourt} - The TypeScript type definition
|
|
39661
|
+
* @see {@link KEYS_TM_COURT} - Array of all keys for this type
|
|
39662
|
+
*/
|
|
39663
|
+
export const KEY_TM_COURT_COURT_NAME: keyof TmCourt = 'court_name';
|
|
39664
|
+
/**
|
|
39665
|
+
* Ref Num
|
|
39666
|
+
*
|
|
39667
|
+
* Reference number of the court resolution
|
|
39668
|
+
*
|
|
39669
|
+
* @type {string}
|
|
39670
|
+
*
|
|
39671
|
+
*
|
|
39672
|
+
* @remarks
|
|
39673
|
+
* This key constant provides type-safe access to the `ref_num` property of TmCourt objects.
|
|
39674
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39675
|
+
*
|
|
39676
|
+
* @example
|
|
39677
|
+
* ```typescript
|
|
39678
|
+
* // Direct property access
|
|
39679
|
+
* const value = tmcourt[KEY_TM_COURT_REF_NUM];
|
|
39680
|
+
*
|
|
39681
|
+
* // Dynamic property access
|
|
39682
|
+
* const propertyName = KEY_TM_COURT_REF_NUM;
|
|
39683
|
+
* const value = tmcourt[propertyName];
|
|
39684
|
+
* ```
|
|
39685
|
+
*
|
|
39686
|
+
* @see {@link TmCourt} - The TypeScript type definition
|
|
39687
|
+
* @see {@link KEYS_TM_COURT} - Array of all keys for this type
|
|
39688
|
+
*/
|
|
39689
|
+
export const KEY_TM_COURT_REF_NUM: keyof TmCourt = 'ref_num';
|
|
39690
|
+
/**
|
|
39691
|
+
* Region
|
|
39692
|
+
*
|
|
39693
|
+
* Region(s) within the jurisdiction
|
|
39694
|
+
*
|
|
39695
|
+
* @type {array}
|
|
39696
|
+
*
|
|
39697
|
+
*
|
|
39698
|
+
* @remarks
|
|
39699
|
+
* This key constant provides type-safe access to the `region` property of TmCourt objects.
|
|
39700
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39701
|
+
*
|
|
39702
|
+
* @example
|
|
39703
|
+
* ```typescript
|
|
39704
|
+
* // Direct property access
|
|
39705
|
+
* const value = tmcourt[KEY_TM_COURT_REGION];
|
|
39706
|
+
*
|
|
39707
|
+
* // Dynamic property access
|
|
39708
|
+
* const propertyName = KEY_TM_COURT_REGION;
|
|
39709
|
+
* const value = tmcourt[propertyName];
|
|
39710
|
+
* ```
|
|
39711
|
+
*
|
|
39712
|
+
* @see {@link TmCourt} - The TypeScript type definition
|
|
39713
|
+
* @see {@link KEYS_TM_COURT} - Array of all keys for this type
|
|
39714
|
+
*/
|
|
39715
|
+
export const KEY_TM_COURT_REGION: keyof TmCourt = 'region';
|
|
39716
|
+
|
|
39717
|
+
/**
|
|
39718
|
+
* Array of all TmCourt property keys
|
|
39719
|
+
*
|
|
39720
|
+
* @remarks
|
|
39721
|
+
* This constant provides a readonly array containing all valid property keys for TmCourt objects.
|
|
39722
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
39723
|
+
*
|
|
39724
|
+
* @example
|
|
39725
|
+
* ```typescript
|
|
39726
|
+
* // Iterating through all keys
|
|
39727
|
+
* for (const key of KEYS_TM_COURT) {
|
|
39728
|
+
* console.log(`Property: ${key}, Value: ${tmcourt[key]}`);
|
|
39729
|
+
* }
|
|
39730
|
+
*
|
|
39731
|
+
* // Validation
|
|
39732
|
+
* const isValidKey = KEYS_TM_COURT.includes(someKey);
|
|
39733
|
+
* ```
|
|
39734
|
+
*
|
|
39735
|
+
* @see {@link TmCourt} - The TypeScript type definition
|
|
39736
|
+
*/
|
|
39737
|
+
export const KEYS_TM_COURT = [
|
|
39738
|
+
KEY_TM_COURT_CC,
|
|
39739
|
+
KEY_TM_COURT_COURT_NAME,
|
|
39740
|
+
KEY_TM_COURT_REF_NUM,
|
|
39741
|
+
KEY_TM_COURT_REGION,
|
|
39742
|
+
] as const satisfies (keyof TmCourt)[];
|
|
39743
|
+
|
|
39744
|
+
/**
|
|
39745
|
+
* addr property
|
|
39746
|
+
*
|
|
39747
|
+
*
|
|
39748
|
+
*
|
|
39749
|
+
*
|
|
39750
|
+
* @remarks
|
|
39751
|
+
* This key constant provides type-safe access to the `addr` property of TmHolder objects.
|
|
39752
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39753
|
+
*
|
|
39754
|
+
* @example
|
|
39755
|
+
* ```typescript
|
|
39756
|
+
* // Direct property access
|
|
39757
|
+
* const value = tmholder[KEY_TM_HOLDER_ADDR];
|
|
39758
|
+
*
|
|
39759
|
+
* // Dynamic property access
|
|
39760
|
+
* const propertyName = KEY_TM_HOLDER_ADDR;
|
|
39761
|
+
* const value = tmholder[propertyName];
|
|
39762
|
+
* ```
|
|
39763
|
+
*
|
|
39764
|
+
* @see {@link TmHolder} - The TypeScript type definition
|
|
39765
|
+
* @see {@link KEYS_TM_HOLDER} - Array of all keys for this type
|
|
39766
|
+
*/
|
|
39767
|
+
export const KEY_TM_HOLDER_ADDR: keyof TmHolder = 'addr';
|
|
39768
|
+
/**
|
|
39769
|
+
* Email
|
|
39770
|
+
*
|
|
39771
|
+
*
|
|
39772
|
+
*
|
|
39773
|
+
*
|
|
39774
|
+
* @remarks
|
|
39775
|
+
* This key constant provides type-safe access to the `email` property of TmHolder objects.
|
|
39776
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39777
|
+
*
|
|
39778
|
+
* @example
|
|
39779
|
+
* ```typescript
|
|
39780
|
+
* // Direct property access
|
|
39781
|
+
* const value = tmholder[KEY_TM_HOLDER_EMAIL];
|
|
39782
|
+
*
|
|
39783
|
+
* // Dynamic property access
|
|
39784
|
+
* const propertyName = KEY_TM_HOLDER_EMAIL;
|
|
39785
|
+
* const value = tmholder[propertyName];
|
|
39786
|
+
* ```
|
|
39787
|
+
*
|
|
39788
|
+
* @see {@link TmHolder} - The TypeScript type definition
|
|
39789
|
+
* @see {@link KEYS_TM_HOLDER} - Array of all keys for this type
|
|
39790
|
+
*/
|
|
39791
|
+
export const KEY_TM_HOLDER_EMAIL: keyof TmHolder = 'email';
|
|
39792
|
+
/**
|
|
39793
|
+
* entitlement property
|
|
39794
|
+
*
|
|
39795
|
+
*
|
|
39796
|
+
*
|
|
39797
|
+
*
|
|
39798
|
+
* @remarks
|
|
39799
|
+
* This key constant provides type-safe access to the `entitlement` property of TmHolder objects.
|
|
39800
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39801
|
+
*
|
|
39802
|
+
* @example
|
|
39803
|
+
* ```typescript
|
|
39804
|
+
* // Direct property access
|
|
39805
|
+
* const value = tmholder[KEY_TM_HOLDER_ENTITLEMENT];
|
|
39806
|
+
*
|
|
39807
|
+
* // Dynamic property access
|
|
39808
|
+
* const propertyName = KEY_TM_HOLDER_ENTITLEMENT;
|
|
39809
|
+
* const value = tmholder[propertyName];
|
|
39810
|
+
* ```
|
|
39811
|
+
*
|
|
39812
|
+
* @see {@link TmHolder} - The TypeScript type definition
|
|
39813
|
+
* @see {@link KEYS_TM_HOLDER} - Array of all keys for this type
|
|
39814
|
+
*/
|
|
39815
|
+
export const KEY_TM_HOLDER_ENTITLEMENT: keyof TmHolder = 'entitlement';
|
|
39816
|
+
/**
|
|
39817
|
+
* Fax
|
|
39818
|
+
*
|
|
39819
|
+
*
|
|
39820
|
+
*
|
|
39821
|
+
*
|
|
39822
|
+
* @remarks
|
|
39823
|
+
* This key constant provides type-safe access to the `fax` property of TmHolder objects.
|
|
39824
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39825
|
+
*
|
|
39826
|
+
* @example
|
|
39827
|
+
* ```typescript
|
|
39828
|
+
* // Direct property access
|
|
39829
|
+
* const value = tmholder[KEY_TM_HOLDER_FAX];
|
|
39830
|
+
*
|
|
39831
|
+
* // Dynamic property access
|
|
39832
|
+
* const propertyName = KEY_TM_HOLDER_FAX;
|
|
39833
|
+
* const value = tmholder[propertyName];
|
|
39834
|
+
* ```
|
|
39835
|
+
*
|
|
39836
|
+
* @see {@link TmHolder} - The TypeScript type definition
|
|
39837
|
+
* @see {@link KEYS_TM_HOLDER} - Array of all keys for this type
|
|
39838
|
+
*/
|
|
39839
|
+
export const KEY_TM_HOLDER_FAX: keyof TmHolder = 'fax';
|
|
39840
|
+
/**
|
|
39841
|
+
* Name
|
|
39842
|
+
*
|
|
39843
|
+
*
|
|
39844
|
+
*
|
|
39845
|
+
*
|
|
39846
|
+
* @remarks
|
|
39847
|
+
* This key constant provides type-safe access to the `name` property of TmHolder objects.
|
|
39848
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39849
|
+
*
|
|
39850
|
+
* @example
|
|
39851
|
+
* ```typescript
|
|
39852
|
+
* // Direct property access
|
|
39853
|
+
* const value = tmholder[KEY_TM_HOLDER_NAME];
|
|
39854
|
+
*
|
|
39855
|
+
* // Dynamic property access
|
|
39856
|
+
* const propertyName = KEY_TM_HOLDER_NAME;
|
|
39857
|
+
* const value = tmholder[propertyName];
|
|
39858
|
+
* ```
|
|
39859
|
+
*
|
|
39860
|
+
* @see {@link TmHolder} - The TypeScript type definition
|
|
39861
|
+
* @see {@link KEYS_TM_HOLDER} - Array of all keys for this type
|
|
39862
|
+
*/
|
|
39863
|
+
export const KEY_TM_HOLDER_NAME: keyof TmHolder = 'name';
|
|
39864
|
+
/**
|
|
39865
|
+
* Org
|
|
39866
|
+
*
|
|
39867
|
+
*
|
|
39868
|
+
*
|
|
39869
|
+
*
|
|
39870
|
+
* @remarks
|
|
39871
|
+
* This key constant provides type-safe access to the `org` property of TmHolder objects.
|
|
39872
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39873
|
+
*
|
|
39874
|
+
* @example
|
|
39875
|
+
* ```typescript
|
|
39876
|
+
* // Direct property access
|
|
39877
|
+
* const value = tmholder[KEY_TM_HOLDER_ORG];
|
|
39878
|
+
*
|
|
39879
|
+
* // Dynamic property access
|
|
39880
|
+
* const propertyName = KEY_TM_HOLDER_ORG;
|
|
39881
|
+
* const value = tmholder[propertyName];
|
|
39882
|
+
* ```
|
|
39883
|
+
*
|
|
39884
|
+
* @see {@link TmHolder} - The TypeScript type definition
|
|
39885
|
+
* @see {@link KEYS_TM_HOLDER} - Array of all keys for this type
|
|
39886
|
+
*/
|
|
39887
|
+
export const KEY_TM_HOLDER_ORG: keyof TmHolder = 'org';
|
|
39888
|
+
/**
|
|
39889
|
+
* Voice
|
|
39890
|
+
*
|
|
39891
|
+
*
|
|
39892
|
+
*
|
|
39893
|
+
*
|
|
39894
|
+
* @remarks
|
|
39895
|
+
* This key constant provides type-safe access to the `voice` property of TmHolder objects.
|
|
39896
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39897
|
+
*
|
|
39898
|
+
* @example
|
|
39899
|
+
* ```typescript
|
|
39900
|
+
* // Direct property access
|
|
39901
|
+
* const value = tmholder[KEY_TM_HOLDER_VOICE];
|
|
39902
|
+
*
|
|
39903
|
+
* // Dynamic property access
|
|
39904
|
+
* const propertyName = KEY_TM_HOLDER_VOICE;
|
|
39905
|
+
* const value = tmholder[propertyName];
|
|
39906
|
+
* ```
|
|
39907
|
+
*
|
|
39908
|
+
* @see {@link TmHolder} - The TypeScript type definition
|
|
39909
|
+
* @see {@link KEYS_TM_HOLDER} - Array of all keys for this type
|
|
39910
|
+
*/
|
|
39911
|
+
export const KEY_TM_HOLDER_VOICE: keyof TmHolder = 'voice';
|
|
39912
|
+
|
|
39913
|
+
/**
|
|
39914
|
+
* Array of all TmHolder property keys
|
|
39915
|
+
*
|
|
39916
|
+
* @remarks
|
|
39917
|
+
* This constant provides a readonly array containing all valid property keys for TmHolder objects.
|
|
39918
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
39919
|
+
*
|
|
39920
|
+
* @example
|
|
39921
|
+
* ```typescript
|
|
39922
|
+
* // Iterating through all keys
|
|
39923
|
+
* for (const key of KEYS_TM_HOLDER) {
|
|
39924
|
+
* console.log(`Property: ${key}, Value: ${tmholder[key]}`);
|
|
39925
|
+
* }
|
|
39926
|
+
*
|
|
39927
|
+
* // Validation
|
|
39928
|
+
* const isValidKey = KEYS_TM_HOLDER.includes(someKey);
|
|
39929
|
+
* ```
|
|
39930
|
+
*
|
|
39931
|
+
* @see {@link TmHolder} - The TypeScript type definition
|
|
39932
|
+
*/
|
|
39933
|
+
export const KEYS_TM_HOLDER = [
|
|
39934
|
+
KEY_TM_HOLDER_ADDR,
|
|
39935
|
+
KEY_TM_HOLDER_EMAIL,
|
|
39936
|
+
KEY_TM_HOLDER_ENTITLEMENT,
|
|
39937
|
+
KEY_TM_HOLDER_FAX,
|
|
39938
|
+
KEY_TM_HOLDER_NAME,
|
|
39939
|
+
KEY_TM_HOLDER_ORG,
|
|
39940
|
+
KEY_TM_HOLDER_VOICE,
|
|
39941
|
+
] as const satisfies (keyof TmHolder)[];
|
|
39942
|
+
|
|
39943
|
+
/**
|
|
39944
|
+
* Description
|
|
39945
|
+
*
|
|
39946
|
+
* Name of jurisdiction in English
|
|
39947
|
+
*
|
|
39948
|
+
* @type {string}
|
|
39949
|
+
*
|
|
39950
|
+
*
|
|
39951
|
+
* @remarks
|
|
39952
|
+
* This key constant provides type-safe access to the `description` property of TmJurDesc objects.
|
|
39953
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39954
|
+
*
|
|
39955
|
+
* @example
|
|
39956
|
+
* ```typescript
|
|
39957
|
+
* // Direct property access
|
|
39958
|
+
* const value = tmjurdesc[KEY_TM_JUR_DESC_DESCRIPTION];
|
|
39959
|
+
*
|
|
39960
|
+
* // Dynamic property access
|
|
39961
|
+
* const propertyName = KEY_TM_JUR_DESC_DESCRIPTION;
|
|
39962
|
+
* const value = tmjurdesc[propertyName];
|
|
39963
|
+
* ```
|
|
39964
|
+
*
|
|
39965
|
+
* @see {@link TmJurDesc} - The TypeScript type definition
|
|
39966
|
+
* @see {@link KEYS_TM_JUR_DESC} - Array of all keys for this type
|
|
39967
|
+
*/
|
|
39968
|
+
export const KEY_TM_JUR_DESC_DESCRIPTION: keyof TmJurDesc = 'description';
|
|
39969
|
+
/**
|
|
39970
|
+
* Jur Cc
|
|
39971
|
+
*
|
|
39972
|
+
* WIPO ST.3 two-character jurisdiction code
|
|
39973
|
+
*
|
|
39974
|
+
* @type {string}
|
|
39975
|
+
*
|
|
39976
|
+
*
|
|
39977
|
+
* @remarks
|
|
39978
|
+
* This key constant provides type-safe access to the `jur_cc` property of TmJurDesc objects.
|
|
39979
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39980
|
+
*
|
|
39981
|
+
* @example
|
|
39982
|
+
* ```typescript
|
|
39983
|
+
* // Direct property access
|
|
39984
|
+
* const value = tmjurdesc[KEY_TM_JUR_DESC_JUR_CC];
|
|
39985
|
+
*
|
|
39986
|
+
* // Dynamic property access
|
|
39987
|
+
* const propertyName = KEY_TM_JUR_DESC_JUR_CC;
|
|
39988
|
+
* const value = tmjurdesc[propertyName];
|
|
39989
|
+
* ```
|
|
39990
|
+
*
|
|
39991
|
+
* @see {@link TmJurDesc} - The TypeScript type definition
|
|
39992
|
+
* @see {@link KEYS_TM_JUR_DESC} - Array of all keys for this type
|
|
39993
|
+
*/
|
|
39994
|
+
export const KEY_TM_JUR_DESC_JUR_CC: keyof TmJurDesc = 'jur_cc';
|
|
39995
|
+
|
|
39996
|
+
/**
|
|
39997
|
+
* Array of all TmJurDesc property keys
|
|
39998
|
+
*
|
|
39999
|
+
* @remarks
|
|
40000
|
+
* This constant provides a readonly array containing all valid property keys for TmJurDesc objects.
|
|
40001
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
40002
|
+
*
|
|
40003
|
+
* @example
|
|
40004
|
+
* ```typescript
|
|
40005
|
+
* // Iterating through all keys
|
|
40006
|
+
* for (const key of KEYS_TM_JUR_DESC) {
|
|
40007
|
+
* console.log(`Property: ${key}, Value: ${tmjurdesc[key]}`);
|
|
40008
|
+
* }
|
|
40009
|
+
*
|
|
40010
|
+
* // Validation
|
|
40011
|
+
* const isValidKey = KEYS_TM_JUR_DESC.includes(someKey);
|
|
40012
|
+
* ```
|
|
40013
|
+
*
|
|
40014
|
+
* @see {@link TmJurDesc} - The TypeScript type definition
|
|
40015
|
+
*/
|
|
40016
|
+
export const KEYS_TM_JUR_DESC = [
|
|
40017
|
+
KEY_TM_JUR_DESC_DESCRIPTION,
|
|
40018
|
+
KEY_TM_JUR_DESC_JUR_CC,
|
|
40019
|
+
] as const satisfies (keyof TmJurDesc)[];
|
|
40020
|
+
|
|
40021
|
+
/**
|
|
40022
|
+
* Court
|
|
40023
|
+
*
|
|
40024
|
+
*
|
|
40025
|
+
* @type {array}
|
|
40026
|
+
*
|
|
40027
|
+
*
|
|
40028
|
+
* @remarks
|
|
40029
|
+
* This key constant provides type-safe access to the `court` property of TmNotExactMatch objects.
|
|
40030
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
40031
|
+
*
|
|
40032
|
+
* @example
|
|
40033
|
+
* ```typescript
|
|
40034
|
+
* // Direct property access
|
|
40035
|
+
* const value = tmnotexactmatch[KEY_TM_NOT_EXACT_MATCH_COURT];
|
|
40036
|
+
*
|
|
40037
|
+
* // Dynamic property access
|
|
40038
|
+
* const propertyName = KEY_TM_NOT_EXACT_MATCH_COURT;
|
|
40039
|
+
* const value = tmnotexactmatch[propertyName];
|
|
40040
|
+
* ```
|
|
40041
|
+
*
|
|
40042
|
+
* @see {@link TmNotExactMatch} - The TypeScript type definition
|
|
40043
|
+
* @see {@link KEYS_TM_NOT_EXACT_MATCH} - Array of all keys for this type
|
|
40044
|
+
*/
|
|
40045
|
+
export const KEY_TM_NOT_EXACT_MATCH_COURT: keyof TmNotExactMatch = 'court';
|
|
40046
|
+
/**
|
|
40047
|
+
* Intro
|
|
40048
|
+
*
|
|
40049
|
+
* Introductory text for the non-exact match section
|
|
40050
|
+
*
|
|
40051
|
+
* @type {string}
|
|
40052
|
+
*
|
|
40053
|
+
*
|
|
40054
|
+
* @remarks
|
|
40055
|
+
* This key constant provides type-safe access to the `intro` property of TmNotExactMatch objects.
|
|
40056
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
40057
|
+
*
|
|
40058
|
+
* @example
|
|
40059
|
+
* ```typescript
|
|
40060
|
+
* // Direct property access
|
|
40061
|
+
* const value = tmnotexactmatch[KEY_TM_NOT_EXACT_MATCH_INTRO];
|
|
40062
|
+
*
|
|
40063
|
+
* // Dynamic property access
|
|
40064
|
+
* const propertyName = KEY_TM_NOT_EXACT_MATCH_INTRO;
|
|
40065
|
+
* const value = tmnotexactmatch[propertyName];
|
|
40066
|
+
* ```
|
|
40067
|
+
*
|
|
40068
|
+
* @see {@link TmNotExactMatch} - The TypeScript type definition
|
|
40069
|
+
* @see {@link KEYS_TM_NOT_EXACT_MATCH} - Array of all keys for this type
|
|
40070
|
+
*/
|
|
40071
|
+
export const KEY_TM_NOT_EXACT_MATCH_INTRO: keyof TmNotExactMatch = 'intro';
|
|
40072
|
+
/**
|
|
40073
|
+
* Udrp
|
|
40074
|
+
*
|
|
40075
|
+
*
|
|
40076
|
+
* @type {array}
|
|
40077
|
+
*
|
|
40078
|
+
*
|
|
40079
|
+
* @remarks
|
|
40080
|
+
* This key constant provides type-safe access to the `udrp` property of TmNotExactMatch objects.
|
|
40081
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
40082
|
+
*
|
|
40083
|
+
* @example
|
|
40084
|
+
* ```typescript
|
|
40085
|
+
* // Direct property access
|
|
40086
|
+
* const value = tmnotexactmatch[KEY_TM_NOT_EXACT_MATCH_UDRP];
|
|
40087
|
+
*
|
|
40088
|
+
* // Dynamic property access
|
|
40089
|
+
* const propertyName = KEY_TM_NOT_EXACT_MATCH_UDRP;
|
|
40090
|
+
* const value = tmnotexactmatch[propertyName];
|
|
40091
|
+
* ```
|
|
40092
|
+
*
|
|
40093
|
+
* @see {@link TmNotExactMatch} - The TypeScript type definition
|
|
40094
|
+
* @see {@link KEYS_TM_NOT_EXACT_MATCH} - Array of all keys for this type
|
|
40095
|
+
*/
|
|
40096
|
+
export const KEY_TM_NOT_EXACT_MATCH_UDRP: keyof TmNotExactMatch = 'udrp';
|
|
40097
|
+
|
|
40098
|
+
/**
|
|
40099
|
+
* Array of all TmNotExactMatch property keys
|
|
40100
|
+
*
|
|
40101
|
+
* @remarks
|
|
40102
|
+
* This constant provides a readonly array containing all valid property keys for TmNotExactMatch objects.
|
|
40103
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
40104
|
+
*
|
|
40105
|
+
* @example
|
|
40106
|
+
* ```typescript
|
|
40107
|
+
* // Iterating through all keys
|
|
40108
|
+
* for (const key of KEYS_TM_NOT_EXACT_MATCH) {
|
|
40109
|
+
* console.log(`Property: ${key}, Value: ${tmnotexactmatch[key]}`);
|
|
40110
|
+
* }
|
|
40111
|
+
*
|
|
40112
|
+
* // Validation
|
|
40113
|
+
* const isValidKey = KEYS_TM_NOT_EXACT_MATCH.includes(someKey);
|
|
40114
|
+
* ```
|
|
40115
|
+
*
|
|
40116
|
+
* @see {@link TmNotExactMatch} - The TypeScript type definition
|
|
40117
|
+
*/
|
|
40118
|
+
export const KEYS_TM_NOT_EXACT_MATCH = [
|
|
40119
|
+
KEY_TM_NOT_EXACT_MATCH_COURT,
|
|
40120
|
+
KEY_TM_NOT_EXACT_MATCH_INTRO,
|
|
40121
|
+
KEY_TM_NOT_EXACT_MATCH_UDRP,
|
|
40122
|
+
] as const satisfies (keyof TmNotExactMatch)[];
|
|
40123
|
+
|
|
40124
|
+
/**
|
|
40125
|
+
* Case No
|
|
40126
|
+
*
|
|
40127
|
+
* UDRP case number
|
|
40128
|
+
*
|
|
40129
|
+
* @type {string}
|
|
40130
|
+
*
|
|
40131
|
+
*
|
|
40132
|
+
* @remarks
|
|
40133
|
+
* This key constant provides type-safe access to the `case_no` property of TmUdrp objects.
|
|
40134
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
40135
|
+
*
|
|
40136
|
+
* @example
|
|
40137
|
+
* ```typescript
|
|
40138
|
+
* // Direct property access
|
|
40139
|
+
* const value = tmudrp[KEY_TM_UDRP_CASE_NO];
|
|
40140
|
+
*
|
|
40141
|
+
* // Dynamic property access
|
|
40142
|
+
* const propertyName = KEY_TM_UDRP_CASE_NO;
|
|
40143
|
+
* const value = tmudrp[propertyName];
|
|
40144
|
+
* ```
|
|
40145
|
+
*
|
|
40146
|
+
* @see {@link TmUdrp} - The TypeScript type definition
|
|
40147
|
+
* @see {@link KEYS_TM_UDRP} - Array of all keys for this type
|
|
40148
|
+
*/
|
|
40149
|
+
export const KEY_TM_UDRP_CASE_NO: keyof TmUdrp = 'case_no';
|
|
40150
|
+
/**
|
|
40151
|
+
* Udrp Provider
|
|
40152
|
+
*
|
|
40153
|
+
* Name of the UDRP provider
|
|
40154
|
+
*
|
|
40155
|
+
* @type {string}
|
|
40156
|
+
*
|
|
40157
|
+
*
|
|
40158
|
+
* @remarks
|
|
40159
|
+
* This key constant provides type-safe access to the `udrp_provider` property of TmUdrp objects.
|
|
40160
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
40161
|
+
*
|
|
40162
|
+
* @example
|
|
40163
|
+
* ```typescript
|
|
40164
|
+
* // Direct property access
|
|
40165
|
+
* const value = tmudrp[KEY_TM_UDRP_UDRP_PROVIDER];
|
|
40166
|
+
*
|
|
40167
|
+
* // Dynamic property access
|
|
40168
|
+
* const propertyName = KEY_TM_UDRP_UDRP_PROVIDER;
|
|
40169
|
+
* const value = tmudrp[propertyName];
|
|
40170
|
+
* ```
|
|
40171
|
+
*
|
|
40172
|
+
* @see {@link TmUdrp} - The TypeScript type definition
|
|
40173
|
+
* @see {@link KEYS_TM_UDRP} - Array of all keys for this type
|
|
40174
|
+
*/
|
|
40175
|
+
export const KEY_TM_UDRP_UDRP_PROVIDER: keyof TmUdrp = 'udrp_provider';
|
|
40176
|
+
|
|
40177
|
+
/**
|
|
40178
|
+
* Array of all TmUdrp property keys
|
|
40179
|
+
*
|
|
40180
|
+
* @remarks
|
|
40181
|
+
* This constant provides a readonly array containing all valid property keys for TmUdrp objects.
|
|
40182
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
40183
|
+
*
|
|
40184
|
+
* @example
|
|
40185
|
+
* ```typescript
|
|
40186
|
+
* // Iterating through all keys
|
|
40187
|
+
* for (const key of KEYS_TM_UDRP) {
|
|
40188
|
+
* console.log(`Property: ${key}, Value: ${tmudrp[key]}`);
|
|
40189
|
+
* }
|
|
40190
|
+
*
|
|
40191
|
+
* // Validation
|
|
40192
|
+
* const isValidKey = KEYS_TM_UDRP.includes(someKey);
|
|
40193
|
+
* ```
|
|
40194
|
+
*
|
|
40195
|
+
* @see {@link TmUdrp} - The TypeScript type definition
|
|
40196
|
+
*/
|
|
40197
|
+
export const KEYS_TM_UDRP = [
|
|
40198
|
+
KEY_TM_UDRP_CASE_NO,
|
|
40199
|
+
KEY_TM_UDRP_UDRP_PROVIDER,
|
|
40200
|
+
] as const satisfies (keyof TmUdrp)[];
|
|
40201
|
+
|
|
38464
40202
|
/**
|
|
38465
40203
|
* End Date
|
|
38466
40204
|
*
|
|
@@ -41588,6 +43326,183 @@ export const KEYS_VALIDATION_ERROR = [
|
|
|
41588
43326
|
KEY_VALIDATION_ERROR_TYPE,
|
|
41589
43327
|
] as const satisfies (keyof ValidationError)[];
|
|
41590
43328
|
|
|
43329
|
+
/**
|
|
43330
|
+
* Date
|
|
43331
|
+
*
|
|
43332
|
+
*
|
|
43333
|
+
* @type {string}
|
|
43334
|
+
*
|
|
43335
|
+
*
|
|
43336
|
+
* @remarks
|
|
43337
|
+
* This key constant provides type-safe access to the `date` property of VerificationDeadline objects.
|
|
43338
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
43339
|
+
*
|
|
43340
|
+
* @example
|
|
43341
|
+
* ```typescript
|
|
43342
|
+
* // Direct property access
|
|
43343
|
+
* const value = verificationdeadline[KEY_VERIFICATION_DEADLINE_DATE];
|
|
43344
|
+
*
|
|
43345
|
+
* // Dynamic property access
|
|
43346
|
+
* const propertyName = KEY_VERIFICATION_DEADLINE_DATE;
|
|
43347
|
+
* const value = verificationdeadline[propertyName];
|
|
43348
|
+
* ```
|
|
43349
|
+
*
|
|
43350
|
+
* @see {@link VerificationDeadline} - The TypeScript type definition
|
|
43351
|
+
* @see {@link KEYS_VERIFICATION_DEADLINE} - Array of all keys for this type
|
|
43352
|
+
*/
|
|
43353
|
+
export const KEY_VERIFICATION_DEADLINE_DATE: keyof VerificationDeadline = 'date';
|
|
43354
|
+
/**
|
|
43355
|
+
* type property
|
|
43356
|
+
*
|
|
43357
|
+
*
|
|
43358
|
+
*
|
|
43359
|
+
*
|
|
43360
|
+
* @remarks
|
|
43361
|
+
* This key constant provides type-safe access to the `type` property of VerificationDeadline objects.
|
|
43362
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
43363
|
+
*
|
|
43364
|
+
* @example
|
|
43365
|
+
* ```typescript
|
|
43366
|
+
* // Direct property access
|
|
43367
|
+
* const value = verificationdeadline[KEY_VERIFICATION_DEADLINE_TYPE];
|
|
43368
|
+
*
|
|
43369
|
+
* // Dynamic property access
|
|
43370
|
+
* const propertyName = KEY_VERIFICATION_DEADLINE_TYPE;
|
|
43371
|
+
* const value = verificationdeadline[propertyName];
|
|
43372
|
+
* ```
|
|
43373
|
+
*
|
|
43374
|
+
* @see {@link VerificationDeadline} - The TypeScript type definition
|
|
43375
|
+
* @see {@link KEYS_VERIFICATION_DEADLINE} - Array of all keys for this type
|
|
43376
|
+
*/
|
|
43377
|
+
export const KEY_VERIFICATION_DEADLINE_TYPE: keyof VerificationDeadline = 'type';
|
|
43378
|
+
|
|
43379
|
+
/**
|
|
43380
|
+
* Array of all VerificationDeadline property keys
|
|
43381
|
+
*
|
|
43382
|
+
* @remarks
|
|
43383
|
+
* This constant provides a readonly array containing all valid property keys for VerificationDeadline objects.
|
|
43384
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
43385
|
+
*
|
|
43386
|
+
* @example
|
|
43387
|
+
* ```typescript
|
|
43388
|
+
* // Iterating through all keys
|
|
43389
|
+
* for (const key of KEYS_VERIFICATION_DEADLINE) {
|
|
43390
|
+
* console.log(`Property: ${key}, Value: ${verificationdeadline[key]}`);
|
|
43391
|
+
* }
|
|
43392
|
+
*
|
|
43393
|
+
* // Validation
|
|
43394
|
+
* const isValidKey = KEYS_VERIFICATION_DEADLINE.includes(someKey);
|
|
43395
|
+
* ```
|
|
43396
|
+
*
|
|
43397
|
+
* @see {@link VerificationDeadline} - The TypeScript type definition
|
|
43398
|
+
*/
|
|
43399
|
+
export const KEYS_VERIFICATION_DEADLINE = [
|
|
43400
|
+
KEY_VERIFICATION_DEADLINE_DATE,
|
|
43401
|
+
KEY_VERIFICATION_DEADLINE_TYPE,
|
|
43402
|
+
] as const satisfies (keyof VerificationDeadline)[];
|
|
43403
|
+
|
|
43404
|
+
/**
|
|
43405
|
+
* Contact Id
|
|
43406
|
+
*
|
|
43407
|
+
*
|
|
43408
|
+
* @type {string}
|
|
43409
|
+
*
|
|
43410
|
+
*
|
|
43411
|
+
* @remarks
|
|
43412
|
+
* This key constant provides type-safe access to the `contact_id` property of VerificationRegistrantDetails objects.
|
|
43413
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
43414
|
+
*
|
|
43415
|
+
* @example
|
|
43416
|
+
* ```typescript
|
|
43417
|
+
* // Direct property access
|
|
43418
|
+
* const value = verificationregistrantdetails[KEY_VERIFICATION_REGISTRANT_DETAILS_CONTACT_ID];
|
|
43419
|
+
*
|
|
43420
|
+
* // Dynamic property access
|
|
43421
|
+
* const propertyName = KEY_VERIFICATION_REGISTRANT_DETAILS_CONTACT_ID;
|
|
43422
|
+
* const value = verificationregistrantdetails[propertyName];
|
|
43423
|
+
* ```
|
|
43424
|
+
*
|
|
43425
|
+
* @see {@link VerificationRegistrantDetails} - The TypeScript type definition
|
|
43426
|
+
* @see {@link KEYS_VERIFICATION_REGISTRANT_DETAILS} - Array of all keys for this type
|
|
43427
|
+
*/
|
|
43428
|
+
export const KEY_VERIFICATION_REGISTRANT_DETAILS_CONTACT_ID: keyof VerificationRegistrantDetails = 'contact_id';
|
|
43429
|
+
/**
|
|
43430
|
+
* Email
|
|
43431
|
+
*
|
|
43432
|
+
*
|
|
43433
|
+
* @type {string}
|
|
43434
|
+
*
|
|
43435
|
+
*
|
|
43436
|
+
* @remarks
|
|
43437
|
+
* This key constant provides type-safe access to the `email` property of VerificationRegistrantDetails objects.
|
|
43438
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
43439
|
+
*
|
|
43440
|
+
* @example
|
|
43441
|
+
* ```typescript
|
|
43442
|
+
* // Direct property access
|
|
43443
|
+
* const value = verificationregistrantdetails[KEY_VERIFICATION_REGISTRANT_DETAILS_EMAIL];
|
|
43444
|
+
*
|
|
43445
|
+
* // Dynamic property access
|
|
43446
|
+
* const propertyName = KEY_VERIFICATION_REGISTRANT_DETAILS_EMAIL;
|
|
43447
|
+
* const value = verificationregistrantdetails[propertyName];
|
|
43448
|
+
* ```
|
|
43449
|
+
*
|
|
43450
|
+
* @see {@link VerificationRegistrantDetails} - The TypeScript type definition
|
|
43451
|
+
* @see {@link KEYS_VERIFICATION_REGISTRANT_DETAILS} - Array of all keys for this type
|
|
43452
|
+
*/
|
|
43453
|
+
export const KEY_VERIFICATION_REGISTRANT_DETAILS_EMAIL: keyof VerificationRegistrantDetails = 'email';
|
|
43454
|
+
/**
|
|
43455
|
+
* Name
|
|
43456
|
+
*
|
|
43457
|
+
*
|
|
43458
|
+
* @type {string}
|
|
43459
|
+
*
|
|
43460
|
+
*
|
|
43461
|
+
* @remarks
|
|
43462
|
+
* This key constant provides type-safe access to the `name` property of VerificationRegistrantDetails objects.
|
|
43463
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
43464
|
+
*
|
|
43465
|
+
* @example
|
|
43466
|
+
* ```typescript
|
|
43467
|
+
* // Direct property access
|
|
43468
|
+
* const value = verificationregistrantdetails[KEY_VERIFICATION_REGISTRANT_DETAILS_NAME];
|
|
43469
|
+
*
|
|
43470
|
+
* // Dynamic property access
|
|
43471
|
+
* const propertyName = KEY_VERIFICATION_REGISTRANT_DETAILS_NAME;
|
|
43472
|
+
* const value = verificationregistrantdetails[propertyName];
|
|
43473
|
+
* ```
|
|
43474
|
+
*
|
|
43475
|
+
* @see {@link VerificationRegistrantDetails} - The TypeScript type definition
|
|
43476
|
+
* @see {@link KEYS_VERIFICATION_REGISTRANT_DETAILS} - Array of all keys for this type
|
|
43477
|
+
*/
|
|
43478
|
+
export const KEY_VERIFICATION_REGISTRANT_DETAILS_NAME: keyof VerificationRegistrantDetails = 'name';
|
|
43479
|
+
|
|
43480
|
+
/**
|
|
43481
|
+
* Array of all VerificationRegistrantDetails property keys
|
|
43482
|
+
*
|
|
43483
|
+
* @remarks
|
|
43484
|
+
* This constant provides a readonly array containing all valid property keys for VerificationRegistrantDetails objects.
|
|
43485
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
43486
|
+
*
|
|
43487
|
+
* @example
|
|
43488
|
+
* ```typescript
|
|
43489
|
+
* // Iterating through all keys
|
|
43490
|
+
* for (const key of KEYS_VERIFICATION_REGISTRANT_DETAILS) {
|
|
43491
|
+
* console.log(`Property: ${key}, Value: ${verificationregistrantdetails[key]}`);
|
|
43492
|
+
* }
|
|
43493
|
+
*
|
|
43494
|
+
* // Validation
|
|
43495
|
+
* const isValidKey = KEYS_VERIFICATION_REGISTRANT_DETAILS.includes(someKey);
|
|
43496
|
+
* ```
|
|
43497
|
+
*
|
|
43498
|
+
* @see {@link VerificationRegistrantDetails} - The TypeScript type definition
|
|
43499
|
+
*/
|
|
43500
|
+
export const KEYS_VERIFICATION_REGISTRANT_DETAILS = [
|
|
43501
|
+
KEY_VERIFICATION_REGISTRANT_DETAILS_CONTACT_ID,
|
|
43502
|
+
KEY_VERIFICATION_REGISTRANT_DETAILS_EMAIL,
|
|
43503
|
+
KEY_VERIFICATION_REGISTRANT_DETAILS_NAME,
|
|
43504
|
+
] as const satisfies (keyof VerificationRegistrantDetails)[];
|
|
43505
|
+
|
|
41591
43506
|
/**
|
|
41592
43507
|
* Key
|
|
41593
43508
|
*
|