@opusdns/api 0.10.0 → 0.12.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 +3 -3
- package/src/helpers/constants.ts +771 -1
- package/src/helpers/index.ts +1 -0
- package/src/helpers/keys.ts +8077 -4699
- package/src/helpers/requests.ts +537 -441
- package/src/helpers/responses.ts +440 -547
- package/src/helpers/schemas-arrays.ts +169 -1
- package/src/helpers/schemas.ts +624 -0
- package/src/openapi.yaml +975 -1
- package/src/schema.d.ts +732 -0
- /package/src/{index.ts → index.d.ts} +0 -0
package/src/helpers/constants.ts
CHANGED
|
@@ -21,7 +21,59 @@
|
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
23
23
|
|
|
24
|
-
import { BulkOperationStatus, ContactSortField, Currency, DnsChangeAction, DnsRrsetType, DnssecAlgorithm, DnssecDigestType, DnssecRecordType, DnssecStatus, DomainAvailabilityStatus, DomainClientStatus, DomainContactType, DomainSortField, DomainStatus, EmailForwardStatus, EmailVerificationStatus, EventObjectType, EventSubtype, EventType, GrantType, OrganizationCredentialStatus, OrganizationStatus, PatchOp, PeriodUnit, Permission, PlanRelation, Relation, RenewalMode, SortOrder, UserNotificationStatus, UserStatus, VerificationType, ZoneSortField } from './schemas';
|
|
24
|
+
import { AllocationMethodType, BulkOperationStatus, ContactRoleType, ContactSortField, Currency, DeletePolicyType, DnsChangeAction, DnsRrsetType, DnssecAlgorithm, DnssecDigestType, DnssecModeType, DnssecRecordType, DnssecStatus, DomainAvailabilityStatus, DomainClientStatus, DomainContactType, DomainSortField, DomainStatus, EmailForwardStatus, EmailVerificationStatus, EventObjectType, EventSubtype, EventType, GrantType, LaunchPhaseType, LocalPresenceRequirementType, OrganizationCredentialStatus, OrganizationStatus, PatchOp, PeriodUnit, Permission, PlanRelation, PostTransferRequirements, PostalAddressType, PremiumAffectsType, PremiumSourceType, RegistrantChangeType, Relation, RenewalMode, ReservedSourceType, SortOrder, SyncOperationType, TLDType, TransferAckType, UserNotificationStatus, UserStatus, VerificationType, ZoneSortField } from './schemas';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* AllocationMethodType. Auto-generated enum for AllocationMethodType
|
|
28
|
+
*
|
|
29
|
+
* @remarks
|
|
30
|
+
* This constant provides both object and array forms for the AllocationMethodType enum.
|
|
31
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
32
|
+
*
|
|
33
|
+
* @example
|
|
34
|
+
* ```typescript
|
|
35
|
+
* // Using the object form for key-value access
|
|
36
|
+
* const status = ALLOCATION_METHOD_TYPE.SUCCESS;
|
|
37
|
+
*
|
|
38
|
+
* // Using the array form for iteration
|
|
39
|
+
* const allStatuses = ALLOCATION_METHOD_TYPE_VALUES;
|
|
40
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* @see {@link AllocationMethodType} - The TypeScript type definition
|
|
44
|
+
*/
|
|
45
|
+
export const ALLOCATION_METHOD_TYPE = {
|
|
46
|
+
FCFS: "fcfs",
|
|
47
|
+
AUCTION: "auction",
|
|
48
|
+
LOTTERY: "lottery",
|
|
49
|
+
} as const satisfies Record<string, AllocationMethodType>;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Array of all AllocationMethodType enum values
|
|
53
|
+
*
|
|
54
|
+
* @remarks
|
|
55
|
+
* This constant provides a array containing all valid AllocationMethodType enum values.
|
|
56
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
57
|
+
*
|
|
58
|
+
* @example
|
|
59
|
+
* ```typescript
|
|
60
|
+
* // Iterating through all values
|
|
61
|
+
* for (const value of ALLOCATION_METHOD_TYPE_VALUES) {
|
|
62
|
+
* console.log(`Processing: ${value}`);
|
|
63
|
+
* }
|
|
64
|
+
*
|
|
65
|
+
* // Validation
|
|
66
|
+
* const isValid = ALLOCATION_METHOD_TYPE_VALUES.includes(someValue);
|
|
67
|
+
* ```
|
|
68
|
+
*
|
|
69
|
+
* @see {@link AllocationMethodType} - The TypeScript type definition
|
|
70
|
+
* @see {@link ALLOCATION_METHOD_TYPE} - The object form of this enum
|
|
71
|
+
*/
|
|
72
|
+
export const ALLOCATION_METHOD_TYPE_VALUES = [
|
|
73
|
+
'fcfs',
|
|
74
|
+
'auction',
|
|
75
|
+
'lottery'
|
|
76
|
+
] as const satisfies [string, ...string[]] | AllocationMethodType[];
|
|
25
77
|
|
|
26
78
|
/**
|
|
27
79
|
* BulkOperationStatus. Auto-generated enum for BulkOperationStatus
|
|
@@ -73,6 +125,60 @@ export const BULK_OPERATION_STATUS_VALUES = [
|
|
|
73
125
|
'failed'
|
|
74
126
|
] as const satisfies [string, ...string[]] | BulkOperationStatus[];
|
|
75
127
|
|
|
128
|
+
/**
|
|
129
|
+
* ContactRoleType. Auto-generated enum for ContactRoleType
|
|
130
|
+
*
|
|
131
|
+
* @remarks
|
|
132
|
+
* This constant provides both object and array forms for the ContactRoleType enum.
|
|
133
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
134
|
+
*
|
|
135
|
+
* @example
|
|
136
|
+
* ```typescript
|
|
137
|
+
* // Using the object form for key-value access
|
|
138
|
+
* const status = CONTACT_ROLE_TYPE.SUCCESS;
|
|
139
|
+
*
|
|
140
|
+
* // Using the array form for iteration
|
|
141
|
+
* const allStatuses = CONTACT_ROLE_TYPE_VALUES;
|
|
142
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
143
|
+
* ```
|
|
144
|
+
*
|
|
145
|
+
* @see {@link ContactRoleType} - The TypeScript type definition
|
|
146
|
+
*/
|
|
147
|
+
export const CONTACT_ROLE_TYPE = {
|
|
148
|
+
REGISTRANT: "registrant",
|
|
149
|
+
ADMIN: "admin",
|
|
150
|
+
TECH: "tech",
|
|
151
|
+
BILLING: "billing",
|
|
152
|
+
} as const satisfies Record<string, ContactRoleType>;
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Array of all ContactRoleType enum values
|
|
156
|
+
*
|
|
157
|
+
* @remarks
|
|
158
|
+
* This constant provides a array containing all valid ContactRoleType enum values.
|
|
159
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
160
|
+
*
|
|
161
|
+
* @example
|
|
162
|
+
* ```typescript
|
|
163
|
+
* // Iterating through all values
|
|
164
|
+
* for (const value of CONTACT_ROLE_TYPE_VALUES) {
|
|
165
|
+
* console.log(`Processing: ${value}`);
|
|
166
|
+
* }
|
|
167
|
+
*
|
|
168
|
+
* // Validation
|
|
169
|
+
* const isValid = CONTACT_ROLE_TYPE_VALUES.includes(someValue);
|
|
170
|
+
* ```
|
|
171
|
+
*
|
|
172
|
+
* @see {@link ContactRoleType} - The TypeScript type definition
|
|
173
|
+
* @see {@link CONTACT_ROLE_TYPE} - The object form of this enum
|
|
174
|
+
*/
|
|
175
|
+
export const CONTACT_ROLE_TYPE_VALUES = [
|
|
176
|
+
'registrant',
|
|
177
|
+
'admin',
|
|
178
|
+
'tech',
|
|
179
|
+
'billing'
|
|
180
|
+
] as const satisfies [string, ...string[]] | ContactRoleType[];
|
|
181
|
+
|
|
76
182
|
/**
|
|
77
183
|
* ContactSortField. Auto-generated enum for ContactSortField
|
|
78
184
|
*
|
|
@@ -177,6 +283,56 @@ export const CURRENCY_VALUES = [
|
|
|
177
283
|
'EUR'
|
|
178
284
|
] as const satisfies [string, ...string[]] | Currency[];
|
|
179
285
|
|
|
286
|
+
/**
|
|
287
|
+
* DeletePolicyType. Auto-generated enum for DeletePolicyType
|
|
288
|
+
*
|
|
289
|
+
* @remarks
|
|
290
|
+
* This constant provides both object and array forms for the DeletePolicyType enum.
|
|
291
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
292
|
+
*
|
|
293
|
+
* @example
|
|
294
|
+
* ```typescript
|
|
295
|
+
* // Using the object form for key-value access
|
|
296
|
+
* const status = DELETE_POLICY_TYPE.SUCCESS;
|
|
297
|
+
*
|
|
298
|
+
* // Using the array form for iteration
|
|
299
|
+
* const allStatuses = DELETE_POLICY_TYPE_VALUES;
|
|
300
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
301
|
+
* ```
|
|
302
|
+
*
|
|
303
|
+
* @see {@link DeletePolicyType} - The TypeScript type definition
|
|
304
|
+
*/
|
|
305
|
+
export const DELETE_POLICY_TYPE = {
|
|
306
|
+
IMMEDIATE: "immediate",
|
|
307
|
+
EXPIRATION: "expiration",
|
|
308
|
+
} as const satisfies Record<string, DeletePolicyType>;
|
|
309
|
+
|
|
310
|
+
/**
|
|
311
|
+
* Array of all DeletePolicyType enum values
|
|
312
|
+
*
|
|
313
|
+
* @remarks
|
|
314
|
+
* This constant provides a array containing all valid DeletePolicyType enum values.
|
|
315
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
316
|
+
*
|
|
317
|
+
* @example
|
|
318
|
+
* ```typescript
|
|
319
|
+
* // Iterating through all values
|
|
320
|
+
* for (const value of DELETE_POLICY_TYPE_VALUES) {
|
|
321
|
+
* console.log(`Processing: ${value}`);
|
|
322
|
+
* }
|
|
323
|
+
*
|
|
324
|
+
* // Validation
|
|
325
|
+
* const isValid = DELETE_POLICY_TYPE_VALUES.includes(someValue);
|
|
326
|
+
* ```
|
|
327
|
+
*
|
|
328
|
+
* @see {@link DeletePolicyType} - The TypeScript type definition
|
|
329
|
+
* @see {@link DELETE_POLICY_TYPE} - The object form of this enum
|
|
330
|
+
*/
|
|
331
|
+
export const DELETE_POLICY_TYPE_VALUES = [
|
|
332
|
+
'immediate',
|
|
333
|
+
'expiration'
|
|
334
|
+
] as const satisfies [string, ...string[]] | DeletePolicyType[];
|
|
335
|
+
|
|
180
336
|
/**
|
|
181
337
|
* DnsChangeAction. Auto-generated enum for DnsChangeAction
|
|
182
338
|
*
|
|
@@ -367,6 +523,56 @@ export const DNSSEC_DIGEST_TYPE = [
|
|
|
367
523
|
6
|
|
368
524
|
] as const satisfies DnssecDigestType[];
|
|
369
525
|
|
|
526
|
+
/**
|
|
527
|
+
* DnssecModeType. Auto-generated enum for DnssecModeType
|
|
528
|
+
*
|
|
529
|
+
* @remarks
|
|
530
|
+
* This constant provides both object and array forms for the DnssecModeType enum.
|
|
531
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
532
|
+
*
|
|
533
|
+
* @example
|
|
534
|
+
* ```typescript
|
|
535
|
+
* // Using the object form for key-value access
|
|
536
|
+
* const status = DNSSEC_MODE_TYPE.SUCCESS;
|
|
537
|
+
*
|
|
538
|
+
* // Using the array form for iteration
|
|
539
|
+
* const allStatuses = DNSSEC_MODE_TYPE_VALUES;
|
|
540
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
541
|
+
* ```
|
|
542
|
+
*
|
|
543
|
+
* @see {@link DnssecModeType} - The TypeScript type definition
|
|
544
|
+
*/
|
|
545
|
+
export const DNSSEC_MODE_TYPE = {
|
|
546
|
+
DS: "DS",
|
|
547
|
+
DNSKEY: "DNSKEY",
|
|
548
|
+
} as const satisfies Record<string, DnssecModeType>;
|
|
549
|
+
|
|
550
|
+
/**
|
|
551
|
+
* Array of all DnssecModeType enum values
|
|
552
|
+
*
|
|
553
|
+
* @remarks
|
|
554
|
+
* This constant provides a array containing all valid DnssecModeType enum values.
|
|
555
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
556
|
+
*
|
|
557
|
+
* @example
|
|
558
|
+
* ```typescript
|
|
559
|
+
* // Iterating through all values
|
|
560
|
+
* for (const value of DNSSEC_MODE_TYPE_VALUES) {
|
|
561
|
+
* console.log(`Processing: ${value}`);
|
|
562
|
+
* }
|
|
563
|
+
*
|
|
564
|
+
* // Validation
|
|
565
|
+
* const isValid = DNSSEC_MODE_TYPE_VALUES.includes(someValue);
|
|
566
|
+
* ```
|
|
567
|
+
*
|
|
568
|
+
* @see {@link DnssecModeType} - The TypeScript type definition
|
|
569
|
+
* @see {@link DNSSEC_MODE_TYPE} - The object form of this enum
|
|
570
|
+
*/
|
|
571
|
+
export const DNSSEC_MODE_TYPE_VALUES = [
|
|
572
|
+
'DS',
|
|
573
|
+
'DNSKEY'
|
|
574
|
+
] as const satisfies [string, ...string[]] | DnssecModeType[];
|
|
575
|
+
|
|
370
576
|
/**
|
|
371
577
|
* DnssecRecordType. Auto-generated enum for DnssecRecordType
|
|
372
578
|
*
|
|
@@ -1105,6 +1311,108 @@ export const GRANT_TYPE_VALUES = [
|
|
|
1105
1311
|
'refresh_token'
|
|
1106
1312
|
] as const satisfies [string, ...string[]] | GrantType[];
|
|
1107
1313
|
|
|
1314
|
+
/**
|
|
1315
|
+
* LaunchPhaseType. Auto-generated enum for LaunchPhaseType
|
|
1316
|
+
*
|
|
1317
|
+
* @remarks
|
|
1318
|
+
* This constant provides both object and array forms for the LaunchPhaseType enum.
|
|
1319
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
1320
|
+
*
|
|
1321
|
+
* @example
|
|
1322
|
+
* ```typescript
|
|
1323
|
+
* // Using the object form for key-value access
|
|
1324
|
+
* const status = LAUNCH_PHASE_TYPE.SUCCESS;
|
|
1325
|
+
*
|
|
1326
|
+
* // Using the array form for iteration
|
|
1327
|
+
* const allStatuses = LAUNCH_PHASE_TYPE_VALUES;
|
|
1328
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
1329
|
+
* ```
|
|
1330
|
+
*
|
|
1331
|
+
* @see {@link LaunchPhaseType} - The TypeScript type definition
|
|
1332
|
+
*/
|
|
1333
|
+
export const LAUNCH_PHASE_TYPE = {
|
|
1334
|
+
SUNRISE: "sunrise",
|
|
1335
|
+
LANDRUSH: "landrush",
|
|
1336
|
+
EAP: "eap",
|
|
1337
|
+
} as const satisfies Record<string, LaunchPhaseType>;
|
|
1338
|
+
|
|
1339
|
+
/**
|
|
1340
|
+
* Array of all LaunchPhaseType enum values
|
|
1341
|
+
*
|
|
1342
|
+
* @remarks
|
|
1343
|
+
* This constant provides a array containing all valid LaunchPhaseType enum values.
|
|
1344
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
1345
|
+
*
|
|
1346
|
+
* @example
|
|
1347
|
+
* ```typescript
|
|
1348
|
+
* // Iterating through all values
|
|
1349
|
+
* for (const value of LAUNCH_PHASE_TYPE_VALUES) {
|
|
1350
|
+
* console.log(`Processing: ${value}`);
|
|
1351
|
+
* }
|
|
1352
|
+
*
|
|
1353
|
+
* // Validation
|
|
1354
|
+
* const isValid = LAUNCH_PHASE_TYPE_VALUES.includes(someValue);
|
|
1355
|
+
* ```
|
|
1356
|
+
*
|
|
1357
|
+
* @see {@link LaunchPhaseType} - The TypeScript type definition
|
|
1358
|
+
* @see {@link LAUNCH_PHASE_TYPE} - The object form of this enum
|
|
1359
|
+
*/
|
|
1360
|
+
export const LAUNCH_PHASE_TYPE_VALUES = [
|
|
1361
|
+
'sunrise',
|
|
1362
|
+
'landrush',
|
|
1363
|
+
'eap'
|
|
1364
|
+
] as const satisfies [string, ...string[]] | LaunchPhaseType[];
|
|
1365
|
+
|
|
1366
|
+
/**
|
|
1367
|
+
* LocalPresenceRequirementType. Auto-generated enum for LocalPresenceRequirementType
|
|
1368
|
+
*
|
|
1369
|
+
* @remarks
|
|
1370
|
+
* This constant provides both object and array forms for the LocalPresenceRequirementType enum.
|
|
1371
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
1372
|
+
*
|
|
1373
|
+
* @example
|
|
1374
|
+
* ```typescript
|
|
1375
|
+
* // Using the object form for key-value access
|
|
1376
|
+
* const status = LOCAL_PRESENCE_REQUIREMENT_TYPE.SUCCESS;
|
|
1377
|
+
*
|
|
1378
|
+
* // Using the array form for iteration
|
|
1379
|
+
* const allStatuses = LOCAL_PRESENCE_REQUIREMENT_TYPE_VALUES;
|
|
1380
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
1381
|
+
* ```
|
|
1382
|
+
*
|
|
1383
|
+
* @see {@link LocalPresenceRequirementType} - The TypeScript type definition
|
|
1384
|
+
*/
|
|
1385
|
+
export const LOCAL_PRESENCE_REQUIREMENT_TYPE = {
|
|
1386
|
+
PHYSICAL_ADDRESS: "physical_address",
|
|
1387
|
+
BUSINESS_ENTITY: "business_entity",
|
|
1388
|
+
} as const satisfies Record<string, LocalPresenceRequirementType>;
|
|
1389
|
+
|
|
1390
|
+
/**
|
|
1391
|
+
* Array of all LocalPresenceRequirementType enum values
|
|
1392
|
+
*
|
|
1393
|
+
* @remarks
|
|
1394
|
+
* This constant provides a array containing all valid LocalPresenceRequirementType enum values.
|
|
1395
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
1396
|
+
*
|
|
1397
|
+
* @example
|
|
1398
|
+
* ```typescript
|
|
1399
|
+
* // Iterating through all values
|
|
1400
|
+
* for (const value of LOCAL_PRESENCE_REQUIREMENT_TYPE_VALUES) {
|
|
1401
|
+
* console.log(`Processing: ${value}`);
|
|
1402
|
+
* }
|
|
1403
|
+
*
|
|
1404
|
+
* // Validation
|
|
1405
|
+
* const isValid = LOCAL_PRESENCE_REQUIREMENT_TYPE_VALUES.includes(someValue);
|
|
1406
|
+
* ```
|
|
1407
|
+
*
|
|
1408
|
+
* @see {@link LocalPresenceRequirementType} - The TypeScript type definition
|
|
1409
|
+
* @see {@link LOCAL_PRESENCE_REQUIREMENT_TYPE} - The object form of this enum
|
|
1410
|
+
*/
|
|
1411
|
+
export const LOCAL_PRESENCE_REQUIREMENT_TYPE_VALUES = [
|
|
1412
|
+
'physical_address',
|
|
1413
|
+
'business_entity'
|
|
1414
|
+
] as const satisfies [string, ...string[]] | LocalPresenceRequirementType[];
|
|
1415
|
+
|
|
1108
1416
|
/**
|
|
1109
1417
|
* OrganizationCredentialStatus. Auto-generated enum for OrganizationCredentialStatus
|
|
1110
1418
|
*
|
|
@@ -1471,6 +1779,260 @@ export const PLAN_RELATION_VALUES = [
|
|
|
1471
1779
|
'starter_plan'
|
|
1472
1780
|
] as const satisfies [string, ...string[]] | PlanRelation[];
|
|
1473
1781
|
|
|
1782
|
+
/**
|
|
1783
|
+
* PostTransferRequirements. Auto-generated enum for PostTransferRequirements
|
|
1784
|
+
*
|
|
1785
|
+
* @remarks
|
|
1786
|
+
* This constant provides both object and array forms for the PostTransferRequirements enum.
|
|
1787
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
1788
|
+
*
|
|
1789
|
+
* @example
|
|
1790
|
+
* ```typescript
|
|
1791
|
+
* // Using the object form for key-value access
|
|
1792
|
+
* const status = POST_TRANSFER_REQUIREMENTS.SUCCESS;
|
|
1793
|
+
*
|
|
1794
|
+
* // Using the array form for iteration
|
|
1795
|
+
* const allStatuses = POST_TRANSFER_REQUIREMENTS_VALUES;
|
|
1796
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
1797
|
+
* ```
|
|
1798
|
+
*
|
|
1799
|
+
* @see {@link PostTransferRequirements} - The TypeScript type definition
|
|
1800
|
+
*/
|
|
1801
|
+
export const POST_TRANSFER_REQUIREMENTS = {
|
|
1802
|
+
UPDATE_CONTACTS: "update_contacts",
|
|
1803
|
+
TLD_SPECIFIC: "tld_specific",
|
|
1804
|
+
} as const satisfies Record<string, PostTransferRequirements>;
|
|
1805
|
+
|
|
1806
|
+
/**
|
|
1807
|
+
* Array of all PostTransferRequirements enum values
|
|
1808
|
+
*
|
|
1809
|
+
* @remarks
|
|
1810
|
+
* This constant provides a array containing all valid PostTransferRequirements enum values.
|
|
1811
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
1812
|
+
*
|
|
1813
|
+
* @example
|
|
1814
|
+
* ```typescript
|
|
1815
|
+
* // Iterating through all values
|
|
1816
|
+
* for (const value of POST_TRANSFER_REQUIREMENTS_VALUES) {
|
|
1817
|
+
* console.log(`Processing: ${value}`);
|
|
1818
|
+
* }
|
|
1819
|
+
*
|
|
1820
|
+
* // Validation
|
|
1821
|
+
* const isValid = POST_TRANSFER_REQUIREMENTS_VALUES.includes(someValue);
|
|
1822
|
+
* ```
|
|
1823
|
+
*
|
|
1824
|
+
* @see {@link PostTransferRequirements} - The TypeScript type definition
|
|
1825
|
+
* @see {@link POST_TRANSFER_REQUIREMENTS} - The object form of this enum
|
|
1826
|
+
*/
|
|
1827
|
+
export const POST_TRANSFER_REQUIREMENTS_VALUES = [
|
|
1828
|
+
'update_contacts',
|
|
1829
|
+
'tld_specific'
|
|
1830
|
+
] as const satisfies [string, ...string[]] | PostTransferRequirements[];
|
|
1831
|
+
|
|
1832
|
+
/**
|
|
1833
|
+
* PostalAddressType. Auto-generated enum for PostalAddressType
|
|
1834
|
+
*
|
|
1835
|
+
* @remarks
|
|
1836
|
+
* This constant provides both object and array forms for the PostalAddressType enum.
|
|
1837
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
1838
|
+
*
|
|
1839
|
+
* @example
|
|
1840
|
+
* ```typescript
|
|
1841
|
+
* // Using the object form for key-value access
|
|
1842
|
+
* const status = POSTAL_ADDRESS_TYPE.SUCCESS;
|
|
1843
|
+
*
|
|
1844
|
+
* // Using the array form for iteration
|
|
1845
|
+
* const allStatuses = POSTAL_ADDRESS_TYPE_VALUES;
|
|
1846
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
1847
|
+
* ```
|
|
1848
|
+
*
|
|
1849
|
+
* @see {@link PostalAddressType} - The TypeScript type definition
|
|
1850
|
+
*/
|
|
1851
|
+
export const POSTAL_ADDRESS_TYPE = {
|
|
1852
|
+
LOC: "loc",
|
|
1853
|
+
INT: "int",
|
|
1854
|
+
} as const satisfies Record<string, PostalAddressType>;
|
|
1855
|
+
|
|
1856
|
+
/**
|
|
1857
|
+
* Array of all PostalAddressType enum values
|
|
1858
|
+
*
|
|
1859
|
+
* @remarks
|
|
1860
|
+
* This constant provides a array containing all valid PostalAddressType enum values.
|
|
1861
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
1862
|
+
*
|
|
1863
|
+
* @example
|
|
1864
|
+
* ```typescript
|
|
1865
|
+
* // Iterating through all values
|
|
1866
|
+
* for (const value of POSTAL_ADDRESS_TYPE_VALUES) {
|
|
1867
|
+
* console.log(`Processing: ${value}`);
|
|
1868
|
+
* }
|
|
1869
|
+
*
|
|
1870
|
+
* // Validation
|
|
1871
|
+
* const isValid = POSTAL_ADDRESS_TYPE_VALUES.includes(someValue);
|
|
1872
|
+
* ```
|
|
1873
|
+
*
|
|
1874
|
+
* @see {@link PostalAddressType} - The TypeScript type definition
|
|
1875
|
+
* @see {@link POSTAL_ADDRESS_TYPE} - The object form of this enum
|
|
1876
|
+
*/
|
|
1877
|
+
export const POSTAL_ADDRESS_TYPE_VALUES = [
|
|
1878
|
+
'loc',
|
|
1879
|
+
'int'
|
|
1880
|
+
] as const satisfies [string, ...string[]] | PostalAddressType[];
|
|
1881
|
+
|
|
1882
|
+
/**
|
|
1883
|
+
* PremiumAffectsType. Auto-generated enum for PremiumAffectsType
|
|
1884
|
+
*
|
|
1885
|
+
* @remarks
|
|
1886
|
+
* This constant provides both object and array forms for the PremiumAffectsType enum.
|
|
1887
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
1888
|
+
*
|
|
1889
|
+
* @example
|
|
1890
|
+
* ```typescript
|
|
1891
|
+
* // Using the object form for key-value access
|
|
1892
|
+
* const status = PREMIUM_AFFECTS_TYPE.SUCCESS;
|
|
1893
|
+
*
|
|
1894
|
+
* // Using the array form for iteration
|
|
1895
|
+
* const allStatuses = PREMIUM_AFFECTS_TYPE_VALUES;
|
|
1896
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
1897
|
+
* ```
|
|
1898
|
+
*
|
|
1899
|
+
* @see {@link PremiumAffectsType} - The TypeScript type definition
|
|
1900
|
+
*/
|
|
1901
|
+
export const PREMIUM_AFFECTS_TYPE = {
|
|
1902
|
+
REGISTRATION: "registration",
|
|
1903
|
+
RENEWAL: "renewal",
|
|
1904
|
+
} as const satisfies Record<string, PremiumAffectsType>;
|
|
1905
|
+
|
|
1906
|
+
/**
|
|
1907
|
+
* Array of all PremiumAffectsType enum values
|
|
1908
|
+
*
|
|
1909
|
+
* @remarks
|
|
1910
|
+
* This constant provides a array containing all valid PremiumAffectsType enum values.
|
|
1911
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
1912
|
+
*
|
|
1913
|
+
* @example
|
|
1914
|
+
* ```typescript
|
|
1915
|
+
* // Iterating through all values
|
|
1916
|
+
* for (const value of PREMIUM_AFFECTS_TYPE_VALUES) {
|
|
1917
|
+
* console.log(`Processing: ${value}`);
|
|
1918
|
+
* }
|
|
1919
|
+
*
|
|
1920
|
+
* // Validation
|
|
1921
|
+
* const isValid = PREMIUM_AFFECTS_TYPE_VALUES.includes(someValue);
|
|
1922
|
+
* ```
|
|
1923
|
+
*
|
|
1924
|
+
* @see {@link PremiumAffectsType} - The TypeScript type definition
|
|
1925
|
+
* @see {@link PREMIUM_AFFECTS_TYPE} - The object form of this enum
|
|
1926
|
+
*/
|
|
1927
|
+
export const PREMIUM_AFFECTS_TYPE_VALUES = [
|
|
1928
|
+
'registration',
|
|
1929
|
+
'renewal'
|
|
1930
|
+
] as const satisfies [string, ...string[]] | PremiumAffectsType[];
|
|
1931
|
+
|
|
1932
|
+
/**
|
|
1933
|
+
* PremiumSourceType. Auto-generated enum for PremiumSourceType
|
|
1934
|
+
*
|
|
1935
|
+
* @remarks
|
|
1936
|
+
* This constant provides both object and array forms for the PremiumSourceType enum.
|
|
1937
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
1938
|
+
*
|
|
1939
|
+
* @example
|
|
1940
|
+
* ```typescript
|
|
1941
|
+
* // Using the object form for key-value access
|
|
1942
|
+
* const status = PREMIUM_SOURCE_TYPE.SUCCESS;
|
|
1943
|
+
*
|
|
1944
|
+
* // Using the array form for iteration
|
|
1945
|
+
* const allStatuses = PREMIUM_SOURCE_TYPE_VALUES;
|
|
1946
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
1947
|
+
* ```
|
|
1948
|
+
*
|
|
1949
|
+
* @see {@link PremiumSourceType} - The TypeScript type definition
|
|
1950
|
+
*/
|
|
1951
|
+
export const PREMIUM_SOURCE_TYPE = {
|
|
1952
|
+
EPP: "EPP",
|
|
1953
|
+
API: "API",
|
|
1954
|
+
CSV: "CSV",
|
|
1955
|
+
MANUAL: "manual",
|
|
1956
|
+
} as const satisfies Record<string, PremiumSourceType>;
|
|
1957
|
+
|
|
1958
|
+
/**
|
|
1959
|
+
* Array of all PremiumSourceType enum values
|
|
1960
|
+
*
|
|
1961
|
+
* @remarks
|
|
1962
|
+
* This constant provides a array containing all valid PremiumSourceType enum values.
|
|
1963
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
1964
|
+
*
|
|
1965
|
+
* @example
|
|
1966
|
+
* ```typescript
|
|
1967
|
+
* // Iterating through all values
|
|
1968
|
+
* for (const value of PREMIUM_SOURCE_TYPE_VALUES) {
|
|
1969
|
+
* console.log(`Processing: ${value}`);
|
|
1970
|
+
* }
|
|
1971
|
+
*
|
|
1972
|
+
* // Validation
|
|
1973
|
+
* const isValid = PREMIUM_SOURCE_TYPE_VALUES.includes(someValue);
|
|
1974
|
+
* ```
|
|
1975
|
+
*
|
|
1976
|
+
* @see {@link PremiumSourceType} - The TypeScript type definition
|
|
1977
|
+
* @see {@link PREMIUM_SOURCE_TYPE} - The object form of this enum
|
|
1978
|
+
*/
|
|
1979
|
+
export const PREMIUM_SOURCE_TYPE_VALUES = [
|
|
1980
|
+
'EPP',
|
|
1981
|
+
'API',
|
|
1982
|
+
'CSV',
|
|
1983
|
+
'manual'
|
|
1984
|
+
] as const satisfies [string, ...string[]] | PremiumSourceType[];
|
|
1985
|
+
|
|
1986
|
+
/**
|
|
1987
|
+
* RegistrantChangeType. Auto-generated enum for RegistrantChangeType
|
|
1988
|
+
*
|
|
1989
|
+
* @remarks
|
|
1990
|
+
* This constant provides both object and array forms for the RegistrantChangeType enum.
|
|
1991
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
1992
|
+
*
|
|
1993
|
+
* @example
|
|
1994
|
+
* ```typescript
|
|
1995
|
+
* // Using the object form for key-value access
|
|
1996
|
+
* const status = REGISTRANT_CHANGE_TYPE.SUCCESS;
|
|
1997
|
+
*
|
|
1998
|
+
* // Using the array form for iteration
|
|
1999
|
+
* const allStatuses = REGISTRANT_CHANGE_TYPE_VALUES;
|
|
2000
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
2001
|
+
* ```
|
|
2002
|
+
*
|
|
2003
|
+
* @see {@link RegistrantChangeType} - The TypeScript type definition
|
|
2004
|
+
*/
|
|
2005
|
+
export const REGISTRANT_CHANGE_TYPE = {
|
|
2006
|
+
UPDATE: "update",
|
|
2007
|
+
TRADE: "trade",
|
|
2008
|
+
} as const satisfies Record<string, RegistrantChangeType>;
|
|
2009
|
+
|
|
2010
|
+
/**
|
|
2011
|
+
* Array of all RegistrantChangeType enum values
|
|
2012
|
+
*
|
|
2013
|
+
* @remarks
|
|
2014
|
+
* This constant provides a array containing all valid RegistrantChangeType enum values.
|
|
2015
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
2016
|
+
*
|
|
2017
|
+
* @example
|
|
2018
|
+
* ```typescript
|
|
2019
|
+
* // Iterating through all values
|
|
2020
|
+
* for (const value of REGISTRANT_CHANGE_TYPE_VALUES) {
|
|
2021
|
+
* console.log(`Processing: ${value}`);
|
|
2022
|
+
* }
|
|
2023
|
+
*
|
|
2024
|
+
* // Validation
|
|
2025
|
+
* const isValid = REGISTRANT_CHANGE_TYPE_VALUES.includes(someValue);
|
|
2026
|
+
* ```
|
|
2027
|
+
*
|
|
2028
|
+
* @see {@link RegistrantChangeType} - The TypeScript type definition
|
|
2029
|
+
* @see {@link REGISTRANT_CHANGE_TYPE} - The object form of this enum
|
|
2030
|
+
*/
|
|
2031
|
+
export const REGISTRANT_CHANGE_TYPE_VALUES = [
|
|
2032
|
+
'update',
|
|
2033
|
+
'trade'
|
|
2034
|
+
] as const satisfies [string, ...string[]] | RegistrantChangeType[];
|
|
2035
|
+
|
|
1474
2036
|
/**
|
|
1475
2037
|
* Relation. Auto-generated enum for Relation
|
|
1476
2038
|
*
|
|
@@ -1607,6 +2169,58 @@ export const RENEWAL_MODE_VALUES = [
|
|
|
1607
2169
|
'delete'
|
|
1608
2170
|
] as const satisfies [string, ...string[]] | RenewalMode[];
|
|
1609
2171
|
|
|
2172
|
+
/**
|
|
2173
|
+
* ReservedSourceType. Auto-generated enum for ReservedSourceType
|
|
2174
|
+
*
|
|
2175
|
+
* @remarks
|
|
2176
|
+
* This constant provides both object and array forms for the ReservedSourceType enum.
|
|
2177
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
2178
|
+
*
|
|
2179
|
+
* @example
|
|
2180
|
+
* ```typescript
|
|
2181
|
+
* // Using the object form for key-value access
|
|
2182
|
+
* const status = RESERVED_SOURCE_TYPE.SUCCESS;
|
|
2183
|
+
*
|
|
2184
|
+
* // Using the array form for iteration
|
|
2185
|
+
* const allStatuses = RESERVED_SOURCE_TYPE_VALUES;
|
|
2186
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
2187
|
+
* ```
|
|
2188
|
+
*
|
|
2189
|
+
* @see {@link ReservedSourceType} - The TypeScript type definition
|
|
2190
|
+
*/
|
|
2191
|
+
export const RESERVED_SOURCE_TYPE = {
|
|
2192
|
+
API: "API",
|
|
2193
|
+
CSV: "CSV",
|
|
2194
|
+
MANUAL: "manual",
|
|
2195
|
+
} as const satisfies Record<string, ReservedSourceType>;
|
|
2196
|
+
|
|
2197
|
+
/**
|
|
2198
|
+
* Array of all ReservedSourceType enum values
|
|
2199
|
+
*
|
|
2200
|
+
* @remarks
|
|
2201
|
+
* This constant provides a array containing all valid ReservedSourceType enum values.
|
|
2202
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
2203
|
+
*
|
|
2204
|
+
* @example
|
|
2205
|
+
* ```typescript
|
|
2206
|
+
* // Iterating through all values
|
|
2207
|
+
* for (const value of RESERVED_SOURCE_TYPE_VALUES) {
|
|
2208
|
+
* console.log(`Processing: ${value}`);
|
|
2209
|
+
* }
|
|
2210
|
+
*
|
|
2211
|
+
* // Validation
|
|
2212
|
+
* const isValid = RESERVED_SOURCE_TYPE_VALUES.includes(someValue);
|
|
2213
|
+
* ```
|
|
2214
|
+
*
|
|
2215
|
+
* @see {@link ReservedSourceType} - The TypeScript type definition
|
|
2216
|
+
* @see {@link RESERVED_SOURCE_TYPE} - The object form of this enum
|
|
2217
|
+
*/
|
|
2218
|
+
export const RESERVED_SOURCE_TYPE_VALUES = [
|
|
2219
|
+
'API',
|
|
2220
|
+
'CSV',
|
|
2221
|
+
'manual'
|
|
2222
|
+
] as const satisfies [string, ...string[]] | ReservedSourceType[];
|
|
2223
|
+
|
|
1610
2224
|
/**
|
|
1611
2225
|
* SortOrder. Auto-generated enum for SortOrder
|
|
1612
2226
|
*
|
|
@@ -1657,6 +2271,162 @@ export const SORT_ORDER_VALUES = [
|
|
|
1657
2271
|
'desc'
|
|
1658
2272
|
] as const satisfies [string, ...string[]] | SortOrder[];
|
|
1659
2273
|
|
|
2274
|
+
/**
|
|
2275
|
+
* SyncOperationType. Auto-generated enum for SyncOperationType
|
|
2276
|
+
*
|
|
2277
|
+
* @remarks
|
|
2278
|
+
* This constant provides both object and array forms for the SyncOperationType enum.
|
|
2279
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
2280
|
+
*
|
|
2281
|
+
* @example
|
|
2282
|
+
* ```typescript
|
|
2283
|
+
* // Using the object form for key-value access
|
|
2284
|
+
* const status = SYNC_OPERATION_TYPE.SUCCESS;
|
|
2285
|
+
*
|
|
2286
|
+
* // Using the array form for iteration
|
|
2287
|
+
* const allStatuses = SYNC_OPERATION_TYPE_VALUES;
|
|
2288
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
2289
|
+
* ```
|
|
2290
|
+
*
|
|
2291
|
+
* @see {@link SyncOperationType} - The TypeScript type definition
|
|
2292
|
+
*/
|
|
2293
|
+
export const SYNC_OPERATION_TYPE = {
|
|
2294
|
+
REGISTRATION: "registration",
|
|
2295
|
+
RENEWAL: "renewal",
|
|
2296
|
+
TRANSFER: "transfer",
|
|
2297
|
+
} as const satisfies Record<string, SyncOperationType>;
|
|
2298
|
+
|
|
2299
|
+
/**
|
|
2300
|
+
* Array of all SyncOperationType enum values
|
|
2301
|
+
*
|
|
2302
|
+
* @remarks
|
|
2303
|
+
* This constant provides a array containing all valid SyncOperationType enum values.
|
|
2304
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
2305
|
+
*
|
|
2306
|
+
* @example
|
|
2307
|
+
* ```typescript
|
|
2308
|
+
* // Iterating through all values
|
|
2309
|
+
* for (const value of SYNC_OPERATION_TYPE_VALUES) {
|
|
2310
|
+
* console.log(`Processing: ${value}`);
|
|
2311
|
+
* }
|
|
2312
|
+
*
|
|
2313
|
+
* // Validation
|
|
2314
|
+
* const isValid = SYNC_OPERATION_TYPE_VALUES.includes(someValue);
|
|
2315
|
+
* ```
|
|
2316
|
+
*
|
|
2317
|
+
* @see {@link SyncOperationType} - The TypeScript type definition
|
|
2318
|
+
* @see {@link SYNC_OPERATION_TYPE} - The object form of this enum
|
|
2319
|
+
*/
|
|
2320
|
+
export const SYNC_OPERATION_TYPE_VALUES = [
|
|
2321
|
+
'registration',
|
|
2322
|
+
'renewal',
|
|
2323
|
+
'transfer'
|
|
2324
|
+
] as const satisfies [string, ...string[]] | SyncOperationType[];
|
|
2325
|
+
|
|
2326
|
+
/**
|
|
2327
|
+
* TLDType. Auto-generated enum for TLDType
|
|
2328
|
+
*
|
|
2329
|
+
* @remarks
|
|
2330
|
+
* This constant provides both object and array forms for the TLDType enum.
|
|
2331
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
2332
|
+
*
|
|
2333
|
+
* @example
|
|
2334
|
+
* ```typescript
|
|
2335
|
+
* // Using the object form for key-value access
|
|
2336
|
+
* const status = TLD_TYPE.SUCCESS;
|
|
2337
|
+
*
|
|
2338
|
+
* // Using the array form for iteration
|
|
2339
|
+
* const allStatuses = TLD_TYPE_VALUES;
|
|
2340
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
2341
|
+
* ```
|
|
2342
|
+
*
|
|
2343
|
+
* @see {@link TLDType} - The TypeScript type definition
|
|
2344
|
+
*/
|
|
2345
|
+
export const TLD_TYPE = {
|
|
2346
|
+
G_TLD: "gTLD",
|
|
2347
|
+
CC_TLD: "ccTLD",
|
|
2348
|
+
} as const satisfies Record<string, TLDType>;
|
|
2349
|
+
|
|
2350
|
+
/**
|
|
2351
|
+
* Array of all TLDType enum values
|
|
2352
|
+
*
|
|
2353
|
+
* @remarks
|
|
2354
|
+
* This constant provides a array containing all valid TLDType enum values.
|
|
2355
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
2356
|
+
*
|
|
2357
|
+
* @example
|
|
2358
|
+
* ```typescript
|
|
2359
|
+
* // Iterating through all values
|
|
2360
|
+
* for (const value of TLD_TYPE_VALUES) {
|
|
2361
|
+
* console.log(`Processing: ${value}`);
|
|
2362
|
+
* }
|
|
2363
|
+
*
|
|
2364
|
+
* // Validation
|
|
2365
|
+
* const isValid = TLD_TYPE_VALUES.includes(someValue);
|
|
2366
|
+
* ```
|
|
2367
|
+
*
|
|
2368
|
+
* @see {@link TLDType} - The TypeScript type definition
|
|
2369
|
+
* @see {@link TLD_TYPE} - The object form of this enum
|
|
2370
|
+
*/
|
|
2371
|
+
export const TLD_TYPE_VALUES = [
|
|
2372
|
+
'gTLD',
|
|
2373
|
+
'ccTLD'
|
|
2374
|
+
] as const satisfies [string, ...string[]] | TLDType[];
|
|
2375
|
+
|
|
2376
|
+
/**
|
|
2377
|
+
* TransferAckType. Auto-generated enum for TransferAckType
|
|
2378
|
+
*
|
|
2379
|
+
* @remarks
|
|
2380
|
+
* This constant provides both object and array forms for the TransferAckType enum.
|
|
2381
|
+
* The object form allows key-value access, while the array form enables iteration and validation.
|
|
2382
|
+
*
|
|
2383
|
+
* @example
|
|
2384
|
+
* ```typescript
|
|
2385
|
+
* // Using the object form for key-value access
|
|
2386
|
+
* const status = TRANSFER_ACK_TYPE.SUCCESS;
|
|
2387
|
+
*
|
|
2388
|
+
* // Using the array form for iteration
|
|
2389
|
+
* const allStatuses = TRANSFER_ACK_TYPE_VALUES;
|
|
2390
|
+
* console.log(`Available statuses: ${allStatuses.join(', ')}`);
|
|
2391
|
+
* ```
|
|
2392
|
+
*
|
|
2393
|
+
* @see {@link TransferAckType} - The TypeScript type definition
|
|
2394
|
+
*/
|
|
2395
|
+
export const TRANSFER_ACK_TYPE = {
|
|
2396
|
+
NONE: "none",
|
|
2397
|
+
REGISTRAR: "registrar",
|
|
2398
|
+
REGISTRANT: "registrant",
|
|
2399
|
+
BOTH: "both",
|
|
2400
|
+
} as const satisfies Record<string, TransferAckType>;
|
|
2401
|
+
|
|
2402
|
+
/**
|
|
2403
|
+
* Array of all TransferAckType enum values
|
|
2404
|
+
*
|
|
2405
|
+
* @remarks
|
|
2406
|
+
* This constant provides a array containing all valid TransferAckType enum values.
|
|
2407
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
2408
|
+
*
|
|
2409
|
+
* @example
|
|
2410
|
+
* ```typescript
|
|
2411
|
+
* // Iterating through all values
|
|
2412
|
+
* for (const value of TRANSFER_ACK_TYPE_VALUES) {
|
|
2413
|
+
* console.log(`Processing: ${value}`);
|
|
2414
|
+
* }
|
|
2415
|
+
*
|
|
2416
|
+
* // Validation
|
|
2417
|
+
* const isValid = TRANSFER_ACK_TYPE_VALUES.includes(someValue);
|
|
2418
|
+
* ```
|
|
2419
|
+
*
|
|
2420
|
+
* @see {@link TransferAckType} - The TypeScript type definition
|
|
2421
|
+
* @see {@link TRANSFER_ACK_TYPE} - The object form of this enum
|
|
2422
|
+
*/
|
|
2423
|
+
export const TRANSFER_ACK_TYPE_VALUES = [
|
|
2424
|
+
'none',
|
|
2425
|
+
'registrar',
|
|
2426
|
+
'registrant',
|
|
2427
|
+
'both'
|
|
2428
|
+
] as const satisfies [string, ...string[]] | TransferAckType[];
|
|
2429
|
+
|
|
1660
2430
|
/**
|
|
1661
2431
|
* UserNotificationStatus. Auto-generated enum for UserNotificationStatus
|
|
1662
2432
|
*
|