@opusdns/api 0.93.0 → 0.95.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/helpers/keys.ts +1359 -413
- package/src/helpers/requests.d.ts +335 -108
- package/src/helpers/responses.d.ts +1067 -173
- package/src/helpers/schemas-arrays.d.ts +25 -11
- package/src/helpers/schemas.d.ts +124 -28
- package/src/openapi.yaml +993 -159
- package/src/schema.d.ts +1055 -188
package/src/helpers/keys.ts
CHANGED
|
@@ -71,8 +71,11 @@ import { DomainDnssecData } from './schemas';
|
|
|
71
71
|
import { DomainForward } from './schemas';
|
|
72
72
|
import { DomainForwardPatchOp } from './schemas';
|
|
73
73
|
import { DomainForwardPatchOps } from './schemas';
|
|
74
|
-
import {
|
|
74
|
+
import { DomainForwardProtocolSetRequest } from './schemas';
|
|
75
|
+
import { DomainForwardProtocolSet } from './schemas';
|
|
75
76
|
import { DomainForwardRequest } from './schemas';
|
|
77
|
+
import { DomainForwardSetRequest } from './schemas';
|
|
78
|
+
import { DomainForwardSet } from './schemas';
|
|
76
79
|
import { DomainForwardZone } from './schemas';
|
|
77
80
|
import { DomainLifecycleBase } from './schemas';
|
|
78
81
|
import { DomainNameParts } from './schemas';
|
|
@@ -99,8 +102,10 @@ import { EventSchema } from './schemas';
|
|
|
99
102
|
import { GeneralAvailabilityBase } from './schemas';
|
|
100
103
|
import { GetPrices } from './schemas';
|
|
101
104
|
import { HTTPValidationError } from './schemas';
|
|
102
|
-
import {
|
|
105
|
+
import { HttpRedirectList } from './schemas';
|
|
103
106
|
import { HttpRedirectRemove } from './schemas';
|
|
107
|
+
import { HttpRedirectRequest } from './schemas';
|
|
108
|
+
import { HttpRedirectUpsert } from './schemas';
|
|
104
109
|
import { IdnBase } from './schemas';
|
|
105
110
|
import { Invoice } from './schemas';
|
|
106
111
|
import { IpRestrictionCreate } from './schemas';
|
|
@@ -127,7 +132,6 @@ import { PremiumDomainsBase } from './schemas';
|
|
|
127
132
|
import { PriceInfo } from './schemas';
|
|
128
133
|
import { PricingPeriod } from './schemas';
|
|
129
134
|
import { Problem } from './schemas';
|
|
130
|
-
import { ProtocolRedirects } from './schemas';
|
|
131
135
|
import { PublicAuthRequestForm } from './schemas';
|
|
132
136
|
import { RdapBase } from './schemas';
|
|
133
137
|
import { RegistryLockBase } from './schemas';
|
|
@@ -150,6 +154,7 @@ import { UserWithAttributes } from './schemas';
|
|
|
150
154
|
import { UserWithRelationPermissions } from './schemas';
|
|
151
155
|
import { ValidationError } from './schemas';
|
|
152
156
|
import { WhoisBase } from './schemas';
|
|
157
|
+
import { WildcardHttpRedirectRequest } from './schemas';
|
|
153
158
|
import { DomainAvailabilityList } from './schemas';
|
|
154
159
|
import { DomainAvailabilityCheck } from './schemas';
|
|
155
160
|
|
|
@@ -6364,129 +6369,153 @@ export const KEYS_DOMAIN_DNSSEC_DATA = [
|
|
|
6364
6369
|
*/
|
|
6365
6370
|
export const KEY_DOMAIN_FORWARD_CREATED_ON = 'created_on' as keyof DomainForward;
|
|
6366
6371
|
/**
|
|
6367
|
-
*
|
|
6372
|
+
* Enabled
|
|
6368
6373
|
*
|
|
6369
6374
|
*
|
|
6370
|
-
* @type {
|
|
6375
|
+
* @type {boolean}
|
|
6371
6376
|
*
|
|
6372
6377
|
*
|
|
6373
6378
|
* @remarks
|
|
6374
|
-
* This key constant provides type-safe access to the `
|
|
6379
|
+
* This key constant provides type-safe access to the `enabled` property of DomainForward objects.
|
|
6375
6380
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6376
6381
|
*
|
|
6377
6382
|
* @example
|
|
6378
6383
|
* ```typescript
|
|
6379
6384
|
* // Direct property access
|
|
6380
|
-
* const value = domainforward[
|
|
6385
|
+
* const value = domainforward[KEY_DOMAIN_FORWARD_ENABLED];
|
|
6381
6386
|
*
|
|
6382
6387
|
* // Dynamic property access
|
|
6383
|
-
* const propertyName =
|
|
6388
|
+
* const propertyName = KEY_DOMAIN_FORWARD_ENABLED;
|
|
6384
6389
|
* const value = domainforward[propertyName];
|
|
6385
6390
|
* ```
|
|
6386
6391
|
*
|
|
6387
6392
|
* @see {@link DomainForward} - The TypeScript type definition
|
|
6388
6393
|
* @see {@link KEYS_DOMAIN_FORWARD} - Array of all keys for this type
|
|
6389
6394
|
*/
|
|
6390
|
-
export const
|
|
6395
|
+
export const KEY_DOMAIN_FORWARD_ENABLED = 'enabled' as keyof DomainForward;
|
|
6391
6396
|
/**
|
|
6392
|
-
*
|
|
6397
|
+
* Hostname
|
|
6393
6398
|
*
|
|
6394
6399
|
*
|
|
6400
|
+
* @type {string}
|
|
6395
6401
|
*
|
|
6396
6402
|
*
|
|
6397
6403
|
* @remarks
|
|
6398
|
-
* This key constant provides type-safe access to the `
|
|
6404
|
+
* This key constant provides type-safe access to the `hostname` property of DomainForward objects.
|
|
6399
6405
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6400
6406
|
*
|
|
6401
6407
|
* @example
|
|
6402
6408
|
* ```typescript
|
|
6403
6409
|
* // Direct property access
|
|
6404
|
-
* const value = domainforward[
|
|
6410
|
+
* const value = domainforward[KEY_DOMAIN_FORWARD_HOSTNAME];
|
|
6405
6411
|
*
|
|
6406
6412
|
* // Dynamic property access
|
|
6407
|
-
* const propertyName =
|
|
6413
|
+
* const propertyName = KEY_DOMAIN_FORWARD_HOSTNAME;
|
|
6408
6414
|
* const value = domainforward[propertyName];
|
|
6409
6415
|
* ```
|
|
6410
6416
|
*
|
|
6411
6417
|
* @see {@link DomainForward} - The TypeScript type definition
|
|
6412
6418
|
* @see {@link KEYS_DOMAIN_FORWARD} - Array of all keys for this type
|
|
6413
6419
|
*/
|
|
6414
|
-
export const
|
|
6420
|
+
export const KEY_DOMAIN_FORWARD_HOSTNAME = 'hostname' as keyof DomainForward;
|
|
6415
6421
|
/**
|
|
6416
|
-
*
|
|
6422
|
+
* http property
|
|
6417
6423
|
*
|
|
6418
6424
|
*
|
|
6419
|
-
* @type {string}
|
|
6420
6425
|
*
|
|
6421
6426
|
*
|
|
6422
6427
|
* @remarks
|
|
6423
|
-
* This key constant provides type-safe access to the `
|
|
6428
|
+
* This key constant provides type-safe access to the `http` property of DomainForward objects.
|
|
6424
6429
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6425
6430
|
*
|
|
6426
6431
|
* @example
|
|
6427
6432
|
* ```typescript
|
|
6428
6433
|
* // Direct property access
|
|
6429
|
-
* const value = domainforward[
|
|
6434
|
+
* const value = domainforward[KEY_DOMAIN_FORWARD_HTTP];
|
|
6430
6435
|
*
|
|
6431
6436
|
* // Dynamic property access
|
|
6432
|
-
* const propertyName =
|
|
6437
|
+
* const propertyName = KEY_DOMAIN_FORWARD_HTTP;
|
|
6433
6438
|
* const value = domainforward[propertyName];
|
|
6434
6439
|
* ```
|
|
6435
6440
|
*
|
|
6436
6441
|
* @see {@link DomainForward} - The TypeScript type definition
|
|
6437
6442
|
* @see {@link KEYS_DOMAIN_FORWARD} - Array of all keys for this type
|
|
6438
6443
|
*/
|
|
6439
|
-
export const
|
|
6444
|
+
export const KEY_DOMAIN_FORWARD_HTTP = 'http' as keyof DomainForward;
|
|
6440
6445
|
/**
|
|
6441
|
-
*
|
|
6446
|
+
* https property
|
|
6442
6447
|
*
|
|
6443
6448
|
*
|
|
6444
|
-
* @type {boolean}
|
|
6445
6449
|
*
|
|
6446
6450
|
*
|
|
6447
6451
|
* @remarks
|
|
6448
|
-
* This key constant provides type-safe access to the `
|
|
6452
|
+
* This key constant provides type-safe access to the `https` property of DomainForward objects.
|
|
6449
6453
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6450
6454
|
*
|
|
6451
6455
|
* @example
|
|
6452
6456
|
* ```typescript
|
|
6453
6457
|
* // Direct property access
|
|
6454
|
-
* const value = domainforward[
|
|
6458
|
+
* const value = domainforward[KEY_DOMAIN_FORWARD_HTTPS];
|
|
6455
6459
|
*
|
|
6456
6460
|
* // Dynamic property access
|
|
6457
|
-
* const propertyName =
|
|
6461
|
+
* const propertyName = KEY_DOMAIN_FORWARD_HTTPS;
|
|
6458
6462
|
* const value = domainforward[propertyName];
|
|
6459
6463
|
* ```
|
|
6460
6464
|
*
|
|
6461
6465
|
* @see {@link DomainForward} - The TypeScript type definition
|
|
6462
6466
|
* @see {@link KEYS_DOMAIN_FORWARD} - Array of all keys for this type
|
|
6463
6467
|
*/
|
|
6464
|
-
export const
|
|
6468
|
+
export const KEY_DOMAIN_FORWARD_HTTPS = 'https' as keyof DomainForward;
|
|
6465
6469
|
/**
|
|
6466
|
-
*
|
|
6470
|
+
* Updated On
|
|
6467
6471
|
*
|
|
6468
6472
|
*
|
|
6469
6473
|
* @type {string}
|
|
6470
6474
|
*
|
|
6471
6475
|
*
|
|
6472
6476
|
* @remarks
|
|
6473
|
-
* This key constant provides type-safe access to the `
|
|
6477
|
+
* This key constant provides type-safe access to the `updated_on` property of DomainForward objects.
|
|
6478
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6479
|
+
*
|
|
6480
|
+
* @example
|
|
6481
|
+
* ```typescript
|
|
6482
|
+
* // Direct property access
|
|
6483
|
+
* const value = domainforward[KEY_DOMAIN_FORWARD_UPDATED_ON];
|
|
6484
|
+
*
|
|
6485
|
+
* // Dynamic property access
|
|
6486
|
+
* const propertyName = KEY_DOMAIN_FORWARD_UPDATED_ON;
|
|
6487
|
+
* const value = domainforward[propertyName];
|
|
6488
|
+
* ```
|
|
6489
|
+
*
|
|
6490
|
+
* @see {@link DomainForward} - The TypeScript type definition
|
|
6491
|
+
* @see {@link KEYS_DOMAIN_FORWARD} - Array of all keys for this type
|
|
6492
|
+
*/
|
|
6493
|
+
export const KEY_DOMAIN_FORWARD_UPDATED_ON = 'updated_on' as keyof DomainForward;
|
|
6494
|
+
/**
|
|
6495
|
+
* Wildcard
|
|
6496
|
+
*
|
|
6497
|
+
*
|
|
6498
|
+
* @type {boolean}
|
|
6499
|
+
*
|
|
6500
|
+
*
|
|
6501
|
+
* @remarks
|
|
6502
|
+
* This key constant provides type-safe access to the `wildcard` property of DomainForward objects.
|
|
6474
6503
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6475
6504
|
*
|
|
6476
6505
|
* @example
|
|
6477
6506
|
* ```typescript
|
|
6478
6507
|
* // Direct property access
|
|
6479
|
-
* const value = domainforward[
|
|
6508
|
+
* const value = domainforward[KEY_DOMAIN_FORWARD_WILDCARD];
|
|
6480
6509
|
*
|
|
6481
6510
|
* // Dynamic property access
|
|
6482
|
-
* const propertyName =
|
|
6511
|
+
* const propertyName = KEY_DOMAIN_FORWARD_WILDCARD;
|
|
6483
6512
|
* const value = domainforward[propertyName];
|
|
6484
6513
|
* ```
|
|
6485
6514
|
*
|
|
6486
6515
|
* @see {@link DomainForward} - The TypeScript type definition
|
|
6487
6516
|
* @see {@link KEYS_DOMAIN_FORWARD} - Array of all keys for this type
|
|
6488
6517
|
*/
|
|
6489
|
-
export const
|
|
6518
|
+
export const KEY_DOMAIN_FORWARD_WILDCARD = 'wildcard' as keyof DomainForward;
|
|
6490
6519
|
|
|
6491
6520
|
/**
|
|
6492
6521
|
* Array of all DomainForward property keys
|
|
@@ -6510,11 +6539,12 @@ export const KEY_DOMAIN_FORWARD_ZONE_NAME = 'zone_name' as keyof DomainForward;
|
|
|
6510
6539
|
*/
|
|
6511
6540
|
export const KEYS_DOMAIN_FORWARD = [
|
|
6512
6541
|
KEY_DOMAIN_FORWARD_CREATED_ON,
|
|
6513
|
-
|
|
6514
|
-
|
|
6542
|
+
KEY_DOMAIN_FORWARD_ENABLED,
|
|
6543
|
+
KEY_DOMAIN_FORWARD_HOSTNAME,
|
|
6544
|
+
KEY_DOMAIN_FORWARD_HTTP,
|
|
6545
|
+
KEY_DOMAIN_FORWARD_HTTPS,
|
|
6515
6546
|
KEY_DOMAIN_FORWARD_UPDATED_ON,
|
|
6516
6547
|
KEY_DOMAIN_FORWARD_WILDCARD,
|
|
6517
|
-
KEY_DOMAIN_FORWARD_ZONE_NAME,
|
|
6518
6548
|
] as const satisfies (keyof DomainForward)[];
|
|
6519
6549
|
|
|
6520
6550
|
/**
|
|
@@ -6565,55 +6595,6 @@ export const KEY_DOMAIN_FORWARD_PATCH_OP_OP = 'op' as keyof DomainForwardPatchOp
|
|
|
6565
6595
|
* @see {@link KEYS_DOMAIN_FORWARD_PATCH_OP} - Array of all keys for this type
|
|
6566
6596
|
*/
|
|
6567
6597
|
export const KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT = 'redirect' as keyof DomainForwardPatchOp;
|
|
6568
|
-
/**
|
|
6569
|
-
* request_protocol property
|
|
6570
|
-
*
|
|
6571
|
-
*
|
|
6572
|
-
*
|
|
6573
|
-
*
|
|
6574
|
-
* @remarks
|
|
6575
|
-
* This key constant provides type-safe access to the `request_protocol` property of DomainForwardPatchOp objects.
|
|
6576
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6577
|
-
*
|
|
6578
|
-
* @example
|
|
6579
|
-
* ```typescript
|
|
6580
|
-
* // Direct property access
|
|
6581
|
-
* const value = domainforwardpatchop[KEY_DOMAIN_FORWARD_PATCH_OP_REQUEST_PROTOCOL];
|
|
6582
|
-
*
|
|
6583
|
-
* // Dynamic property access
|
|
6584
|
-
* const propertyName = KEY_DOMAIN_FORWARD_PATCH_OP_REQUEST_PROTOCOL;
|
|
6585
|
-
* const value = domainforwardpatchop[propertyName];
|
|
6586
|
-
* ```
|
|
6587
|
-
*
|
|
6588
|
-
* @see {@link DomainForwardPatchOp} - The TypeScript type definition
|
|
6589
|
-
* @see {@link KEYS_DOMAIN_FORWARD_PATCH_OP} - Array of all keys for this type
|
|
6590
|
-
*/
|
|
6591
|
-
export const KEY_DOMAIN_FORWARD_PATCH_OP_REQUEST_PROTOCOL = 'request_protocol' as keyof DomainForwardPatchOp;
|
|
6592
|
-
/**
|
|
6593
|
-
* Zone Name
|
|
6594
|
-
*
|
|
6595
|
-
*
|
|
6596
|
-
* @type {string}
|
|
6597
|
-
*
|
|
6598
|
-
*
|
|
6599
|
-
* @remarks
|
|
6600
|
-
* This key constant provides type-safe access to the `zone_name` property of DomainForwardPatchOp objects.
|
|
6601
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6602
|
-
*
|
|
6603
|
-
* @example
|
|
6604
|
-
* ```typescript
|
|
6605
|
-
* // Direct property access
|
|
6606
|
-
* const value = domainforwardpatchop[KEY_DOMAIN_FORWARD_PATCH_OP_ZONE_NAME];
|
|
6607
|
-
*
|
|
6608
|
-
* // Dynamic property access
|
|
6609
|
-
* const propertyName = KEY_DOMAIN_FORWARD_PATCH_OP_ZONE_NAME;
|
|
6610
|
-
* const value = domainforwardpatchop[propertyName];
|
|
6611
|
-
* ```
|
|
6612
|
-
*
|
|
6613
|
-
* @see {@link DomainForwardPatchOp} - The TypeScript type definition
|
|
6614
|
-
* @see {@link KEYS_DOMAIN_FORWARD_PATCH_OP} - Array of all keys for this type
|
|
6615
|
-
*/
|
|
6616
|
-
export const KEY_DOMAIN_FORWARD_PATCH_OP_ZONE_NAME = 'zone_name' as keyof DomainForwardPatchOp;
|
|
6617
6598
|
|
|
6618
6599
|
/**
|
|
6619
6600
|
* Array of all DomainForwardPatchOp property keys
|
|
@@ -6638,8 +6619,6 @@ export const KEY_DOMAIN_FORWARD_PATCH_OP_ZONE_NAME = 'zone_name' as keyof Domain
|
|
|
6638
6619
|
export const KEYS_DOMAIN_FORWARD_PATCH_OP = [
|
|
6639
6620
|
KEY_DOMAIN_FORWARD_PATCH_OP_OP,
|
|
6640
6621
|
KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT,
|
|
6641
|
-
KEY_DOMAIN_FORWARD_PATCH_OP_REQUEST_PROTOCOL,
|
|
6642
|
-
KEY_DOMAIN_FORWARD_PATCH_OP_ZONE_NAME,
|
|
6643
6622
|
] as const satisfies (keyof DomainForwardPatchOp)[];
|
|
6644
6623
|
|
|
6645
6624
|
/**
|
|
@@ -6693,79 +6672,105 @@ export const KEYS_DOMAIN_FORWARD_PATCH_OPS = [
|
|
|
6693
6672
|
] as const satisfies (keyof DomainForwardPatchOps)[];
|
|
6694
6673
|
|
|
6695
6674
|
/**
|
|
6696
|
-
*
|
|
6675
|
+
* Redirects
|
|
6697
6676
|
*
|
|
6698
6677
|
*
|
|
6678
|
+
* @type {array}
|
|
6699
6679
|
*
|
|
6700
6680
|
*
|
|
6701
6681
|
* @remarks
|
|
6702
|
-
* This key constant provides type-safe access to the `
|
|
6682
|
+
* This key constant provides type-safe access to the `redirects` property of DomainForwardProtocolSetRequest objects.
|
|
6703
6683
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6704
6684
|
*
|
|
6705
6685
|
* @example
|
|
6706
6686
|
* ```typescript
|
|
6707
6687
|
* // Direct property access
|
|
6708
|
-
* const value =
|
|
6688
|
+
* const value = domainforwardprotocolsetrequest[KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_REDIRECTS];
|
|
6709
6689
|
*
|
|
6710
6690
|
* // Dynamic property access
|
|
6711
|
-
* const propertyName =
|
|
6712
|
-
* const value =
|
|
6691
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_REDIRECTS;
|
|
6692
|
+
* const value = domainforwardprotocolsetrequest[propertyName];
|
|
6713
6693
|
* ```
|
|
6714
6694
|
*
|
|
6715
|
-
* @see {@link
|
|
6716
|
-
* @see {@link
|
|
6695
|
+
* @see {@link DomainForwardProtocolSetRequest} - The TypeScript type definition
|
|
6696
|
+
* @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST} - Array of all keys for this type
|
|
6717
6697
|
*/
|
|
6718
|
-
export const
|
|
6698
|
+
export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_REDIRECTS = 'redirects' as keyof DomainForwardProtocolSetRequest;
|
|
6719
6699
|
/**
|
|
6720
|
-
*
|
|
6700
|
+
* Wildcard
|
|
6721
6701
|
*
|
|
6722
6702
|
*
|
|
6723
6703
|
*
|
|
6724
6704
|
*
|
|
6725
6705
|
* @remarks
|
|
6726
|
-
* This key constant provides type-safe access to the `
|
|
6706
|
+
* This key constant provides type-safe access to the `wildcard` property of DomainForwardProtocolSetRequest objects.
|
|
6727
6707
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6728
6708
|
*
|
|
6729
6709
|
* @example
|
|
6730
6710
|
* ```typescript
|
|
6731
6711
|
* // Direct property access
|
|
6732
|
-
* const value =
|
|
6712
|
+
* const value = domainforwardprotocolsetrequest[KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_WILDCARD];
|
|
6733
6713
|
*
|
|
6734
6714
|
* // Dynamic property access
|
|
6735
|
-
* const propertyName =
|
|
6736
|
-
* const value =
|
|
6715
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_WILDCARD;
|
|
6716
|
+
* const value = domainforwardprotocolsetrequest[propertyName];
|
|
6737
6717
|
* ```
|
|
6738
6718
|
*
|
|
6739
|
-
* @see {@link
|
|
6740
|
-
* @see {@link
|
|
6719
|
+
* @see {@link DomainForwardProtocolSetRequest} - The TypeScript type definition
|
|
6720
|
+
* @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST} - Array of all keys for this type
|
|
6741
6721
|
*/
|
|
6742
|
-
export const
|
|
6722
|
+
export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_WILDCARD = 'wildcard' as keyof DomainForwardProtocolSetRequest;
|
|
6743
6723
|
|
|
6744
6724
|
/**
|
|
6745
|
-
* Array of all
|
|
6725
|
+
* Array of all DomainForwardProtocolSetRequest property keys
|
|
6746
6726
|
*
|
|
6747
6727
|
* @remarks
|
|
6748
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
6728
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardProtocolSetRequest objects.
|
|
6749
6729
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
6750
6730
|
*
|
|
6751
6731
|
* @example
|
|
6752
6732
|
* ```typescript
|
|
6753
6733
|
* // Iterating through all keys
|
|
6754
|
-
* for (const key of
|
|
6755
|
-
* console.log(`Property: ${key}, Value: ${
|
|
6734
|
+
* for (const key of KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST) {
|
|
6735
|
+
* console.log(`Property: ${key}, Value: ${domainforwardprotocolsetrequest[key]}`);
|
|
6756
6736
|
* }
|
|
6757
6737
|
*
|
|
6758
6738
|
* // Validation
|
|
6759
|
-
* const isValidKey =
|
|
6739
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST.includes(someKey);
|
|
6760
6740
|
* ```
|
|
6761
6741
|
*
|
|
6762
|
-
* @see {@link
|
|
6742
|
+
* @see {@link DomainForwardProtocolSetRequest} - The TypeScript type definition
|
|
6763
6743
|
*/
|
|
6764
|
-
export const
|
|
6765
|
-
|
|
6766
|
-
|
|
6767
|
-
] as const satisfies (keyof
|
|
6744
|
+
export const KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST = [
|
|
6745
|
+
KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_REDIRECTS,
|
|
6746
|
+
KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_WILDCARD,
|
|
6747
|
+
] as const satisfies (keyof DomainForwardProtocolSetRequest)[];
|
|
6768
6748
|
|
|
6749
|
+
/**
|
|
6750
|
+
* Created On
|
|
6751
|
+
*
|
|
6752
|
+
*
|
|
6753
|
+
* @type {string}
|
|
6754
|
+
*
|
|
6755
|
+
*
|
|
6756
|
+
* @remarks
|
|
6757
|
+
* This key constant provides type-safe access to the `created_on` property of DomainForwardProtocolSet objects.
|
|
6758
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6759
|
+
*
|
|
6760
|
+
* @example
|
|
6761
|
+
* ```typescript
|
|
6762
|
+
* // Direct property access
|
|
6763
|
+
* const value = domainforwardprotocolset[KEY_DOMAIN_FORWARD_PROTOCOL_SET_CREATED_ON];
|
|
6764
|
+
*
|
|
6765
|
+
* // Dynamic property access
|
|
6766
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_CREATED_ON;
|
|
6767
|
+
* const value = domainforwardprotocolset[propertyName];
|
|
6768
|
+
* ```
|
|
6769
|
+
*
|
|
6770
|
+
* @see {@link DomainForwardProtocolSet} - The TypeScript type definition
|
|
6771
|
+
* @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET} - Array of all keys for this type
|
|
6772
|
+
*/
|
|
6773
|
+
export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_CREATED_ON = 'created_on' as keyof DomainForwardProtocolSet;
|
|
6769
6774
|
/**
|
|
6770
6775
|
* Redirects
|
|
6771
6776
|
*
|
|
@@ -6774,23 +6779,48 @@ export const KEYS_DOMAIN_FORWARD_PROTOCOLS = [
|
|
|
6774
6779
|
*
|
|
6775
6780
|
*
|
|
6776
6781
|
* @remarks
|
|
6777
|
-
* This key constant provides type-safe access to the `redirects` property of
|
|
6782
|
+
* This key constant provides type-safe access to the `redirects` property of DomainForwardProtocolSet objects.
|
|
6778
6783
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6779
6784
|
*
|
|
6780
6785
|
* @example
|
|
6781
6786
|
* ```typescript
|
|
6782
6787
|
* // Direct property access
|
|
6783
|
-
* const value =
|
|
6788
|
+
* const value = domainforwardprotocolset[KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS];
|
|
6784
6789
|
*
|
|
6785
6790
|
* // Dynamic property access
|
|
6786
|
-
* const propertyName =
|
|
6787
|
-
* const value =
|
|
6791
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS;
|
|
6792
|
+
* const value = domainforwardprotocolset[propertyName];
|
|
6788
6793
|
* ```
|
|
6789
6794
|
*
|
|
6790
|
-
* @see {@link
|
|
6791
|
-
* @see {@link
|
|
6795
|
+
* @see {@link DomainForwardProtocolSet} - The TypeScript type definition
|
|
6796
|
+
* @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET} - Array of all keys for this type
|
|
6797
|
+
*/
|
|
6798
|
+
export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS = 'redirects' as keyof DomainForwardProtocolSet;
|
|
6799
|
+
/**
|
|
6800
|
+
* Updated On
|
|
6801
|
+
*
|
|
6802
|
+
*
|
|
6803
|
+
* @type {string}
|
|
6804
|
+
*
|
|
6805
|
+
*
|
|
6806
|
+
* @remarks
|
|
6807
|
+
* This key constant provides type-safe access to the `updated_on` property of DomainForwardProtocolSet objects.
|
|
6808
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6809
|
+
*
|
|
6810
|
+
* @example
|
|
6811
|
+
* ```typescript
|
|
6812
|
+
* // Direct property access
|
|
6813
|
+
* const value = domainforwardprotocolset[KEY_DOMAIN_FORWARD_PROTOCOL_SET_UPDATED_ON];
|
|
6814
|
+
*
|
|
6815
|
+
* // Dynamic property access
|
|
6816
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_UPDATED_ON;
|
|
6817
|
+
* const value = domainforwardprotocolset[propertyName];
|
|
6818
|
+
* ```
|
|
6819
|
+
*
|
|
6820
|
+
* @see {@link DomainForwardProtocolSet} - The TypeScript type definition
|
|
6821
|
+
* @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET} - Array of all keys for this type
|
|
6792
6822
|
*/
|
|
6793
|
-
export const
|
|
6823
|
+
export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_UPDATED_ON = 'updated_on' as keyof DomainForwardProtocolSet;
|
|
6794
6824
|
/**
|
|
6795
6825
|
* Wildcard
|
|
6796
6826
|
*
|
|
@@ -6799,48 +6829,50 @@ export const KEY_DOMAIN_FORWARD_REQUEST_REDIRECTS = 'redirects' as keyof DomainF
|
|
|
6799
6829
|
*
|
|
6800
6830
|
*
|
|
6801
6831
|
* @remarks
|
|
6802
|
-
* This key constant provides type-safe access to the `wildcard` property of
|
|
6832
|
+
* This key constant provides type-safe access to the `wildcard` property of DomainForwardProtocolSet objects.
|
|
6803
6833
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6804
6834
|
*
|
|
6805
6835
|
* @example
|
|
6806
6836
|
* ```typescript
|
|
6807
6837
|
* // Direct property access
|
|
6808
|
-
* const value =
|
|
6838
|
+
* const value = domainforwardprotocolset[KEY_DOMAIN_FORWARD_PROTOCOL_SET_WILDCARD];
|
|
6809
6839
|
*
|
|
6810
6840
|
* // Dynamic property access
|
|
6811
|
-
* const propertyName =
|
|
6812
|
-
* const value =
|
|
6841
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_WILDCARD;
|
|
6842
|
+
* const value = domainforwardprotocolset[propertyName];
|
|
6813
6843
|
* ```
|
|
6814
6844
|
*
|
|
6815
|
-
* @see {@link
|
|
6816
|
-
* @see {@link
|
|
6845
|
+
* @see {@link DomainForwardProtocolSet} - The TypeScript type definition
|
|
6846
|
+
* @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET} - Array of all keys for this type
|
|
6817
6847
|
*/
|
|
6818
|
-
export const
|
|
6848
|
+
export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_WILDCARD = 'wildcard' as keyof DomainForwardProtocolSet;
|
|
6819
6849
|
|
|
6820
6850
|
/**
|
|
6821
|
-
* Array of all
|
|
6851
|
+
* Array of all DomainForwardProtocolSet property keys
|
|
6822
6852
|
*
|
|
6823
6853
|
* @remarks
|
|
6824
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
6854
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardProtocolSet objects.
|
|
6825
6855
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
6826
6856
|
*
|
|
6827
6857
|
* @example
|
|
6828
6858
|
* ```typescript
|
|
6829
6859
|
* // Iterating through all keys
|
|
6830
|
-
* for (const key of
|
|
6831
|
-
* console.log(`Property: ${key}, Value: ${
|
|
6860
|
+
* for (const key of KEYS_DOMAIN_FORWARD_PROTOCOL_SET) {
|
|
6861
|
+
* console.log(`Property: ${key}, Value: ${domainforwardprotocolset[key]}`);
|
|
6832
6862
|
* }
|
|
6833
6863
|
*
|
|
6834
6864
|
* // Validation
|
|
6835
|
-
* const isValidKey =
|
|
6865
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_PROTOCOL_SET.includes(someKey);
|
|
6836
6866
|
* ```
|
|
6837
6867
|
*
|
|
6838
|
-
* @see {@link
|
|
6868
|
+
* @see {@link DomainForwardProtocolSet} - The TypeScript type definition
|
|
6839
6869
|
*/
|
|
6840
|
-
export const
|
|
6841
|
-
|
|
6842
|
-
|
|
6843
|
-
|
|
6870
|
+
export const KEYS_DOMAIN_FORWARD_PROTOCOL_SET = [
|
|
6871
|
+
KEY_DOMAIN_FORWARD_PROTOCOL_SET_CREATED_ON,
|
|
6872
|
+
KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS,
|
|
6873
|
+
KEY_DOMAIN_FORWARD_PROTOCOL_SET_UPDATED_ON,
|
|
6874
|
+
KEY_DOMAIN_FORWARD_PROTOCOL_SET_WILDCARD,
|
|
6875
|
+
] as const satisfies (keyof DomainForwardProtocolSet)[];
|
|
6844
6876
|
|
|
6845
6877
|
/**
|
|
6846
6878
|
* Enabled
|
|
@@ -6850,194 +6882,523 @@ export const KEYS_DOMAIN_FORWARD_REQUEST = [
|
|
|
6850
6882
|
*
|
|
6851
6883
|
*
|
|
6852
6884
|
* @remarks
|
|
6853
|
-
* This key constant provides type-safe access to the `enabled` property of
|
|
6885
|
+
* This key constant provides type-safe access to the `enabled` property of DomainForwardRequest objects.
|
|
6854
6886
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6855
6887
|
*
|
|
6856
6888
|
* @example
|
|
6857
6889
|
* ```typescript
|
|
6858
6890
|
* // Direct property access
|
|
6859
|
-
* const value =
|
|
6891
|
+
* const value = domainforwardrequest[KEY_DOMAIN_FORWARD_REQUEST_ENABLED];
|
|
6860
6892
|
*
|
|
6861
6893
|
* // Dynamic property access
|
|
6862
|
-
* const propertyName =
|
|
6863
|
-
* const value =
|
|
6894
|
+
* const propertyName = KEY_DOMAIN_FORWARD_REQUEST_ENABLED;
|
|
6895
|
+
* const value = domainforwardrequest[propertyName];
|
|
6864
6896
|
* ```
|
|
6865
6897
|
*
|
|
6866
|
-
* @see {@link
|
|
6867
|
-
* @see {@link
|
|
6898
|
+
* @see {@link DomainForwardRequest} - The TypeScript type definition
|
|
6899
|
+
* @see {@link KEYS_DOMAIN_FORWARD_REQUEST} - Array of all keys for this type
|
|
6868
6900
|
*/
|
|
6869
|
-
export const
|
|
6901
|
+
export const KEY_DOMAIN_FORWARD_REQUEST_ENABLED = 'enabled' as keyof DomainForwardRequest;
|
|
6870
6902
|
/**
|
|
6871
|
-
*
|
|
6903
|
+
* http property
|
|
6872
6904
|
*
|
|
6873
6905
|
*
|
|
6874
6906
|
*
|
|
6875
6907
|
*
|
|
6876
6908
|
* @remarks
|
|
6877
|
-
* This key constant provides type-safe access to the `
|
|
6909
|
+
* This key constant provides type-safe access to the `http` property of DomainForwardRequest objects.
|
|
6878
6910
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6879
6911
|
*
|
|
6880
6912
|
* @example
|
|
6881
6913
|
* ```typescript
|
|
6882
6914
|
* // Direct property access
|
|
6883
|
-
* const value =
|
|
6915
|
+
* const value = domainforwardrequest[KEY_DOMAIN_FORWARD_REQUEST_HTTP];
|
|
6884
6916
|
*
|
|
6885
6917
|
* // Dynamic property access
|
|
6886
|
-
* const propertyName =
|
|
6887
|
-
* const value =
|
|
6918
|
+
* const propertyName = KEY_DOMAIN_FORWARD_REQUEST_HTTP;
|
|
6919
|
+
* const value = domainforwardrequest[propertyName];
|
|
6888
6920
|
* ```
|
|
6889
6921
|
*
|
|
6890
|
-
* @see {@link
|
|
6891
|
-
* @see {@link
|
|
6922
|
+
* @see {@link DomainForwardRequest} - The TypeScript type definition
|
|
6923
|
+
* @see {@link KEYS_DOMAIN_FORWARD_REQUEST} - Array of all keys for this type
|
|
6892
6924
|
*/
|
|
6893
|
-
export const
|
|
6925
|
+
export const KEY_DOMAIN_FORWARD_REQUEST_HTTP = 'http' as keyof DomainForwardRequest;
|
|
6894
6926
|
/**
|
|
6895
|
-
*
|
|
6927
|
+
* https property
|
|
6896
6928
|
*
|
|
6897
6929
|
*
|
|
6898
|
-
* @type {boolean}
|
|
6899
6930
|
*
|
|
6900
6931
|
*
|
|
6901
6932
|
* @remarks
|
|
6902
|
-
* This key constant provides type-safe access to the `
|
|
6933
|
+
* This key constant provides type-safe access to the `https` property of DomainForwardRequest objects.
|
|
6903
6934
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6904
6935
|
*
|
|
6905
6936
|
* @example
|
|
6906
6937
|
* ```typescript
|
|
6907
6938
|
* // Direct property access
|
|
6908
|
-
* const value =
|
|
6939
|
+
* const value = domainforwardrequest[KEY_DOMAIN_FORWARD_REQUEST_HTTPS];
|
|
6909
6940
|
*
|
|
6910
6941
|
* // Dynamic property access
|
|
6911
|
-
* const propertyName =
|
|
6912
|
-
* const value =
|
|
6942
|
+
* const propertyName = KEY_DOMAIN_FORWARD_REQUEST_HTTPS;
|
|
6943
|
+
* const value = domainforwardrequest[propertyName];
|
|
6913
6944
|
* ```
|
|
6914
6945
|
*
|
|
6915
|
-
* @see {@link
|
|
6916
|
-
* @see {@link
|
|
6946
|
+
* @see {@link DomainForwardRequest} - The TypeScript type definition
|
|
6947
|
+
* @see {@link KEYS_DOMAIN_FORWARD_REQUEST} - Array of all keys for this type
|
|
6917
6948
|
*/
|
|
6918
|
-
export const
|
|
6949
|
+
export const KEY_DOMAIN_FORWARD_REQUEST_HTTPS = 'https' as keyof DomainForwardRequest;
|
|
6919
6950
|
/**
|
|
6920
|
-
*
|
|
6951
|
+
* Wildcard
|
|
6921
6952
|
*
|
|
6922
6953
|
*
|
|
6923
|
-
* @type {string}
|
|
6924
6954
|
*
|
|
6925
6955
|
*
|
|
6926
6956
|
* @remarks
|
|
6927
|
-
* This key constant provides type-safe access to the `
|
|
6957
|
+
* This key constant provides type-safe access to the `wildcard` property of DomainForwardRequest objects.
|
|
6928
6958
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6929
6959
|
*
|
|
6930
6960
|
* @example
|
|
6931
6961
|
* ```typescript
|
|
6932
6962
|
* // Direct property access
|
|
6933
|
-
* const value =
|
|
6963
|
+
* const value = domainforwardrequest[KEY_DOMAIN_FORWARD_REQUEST_WILDCARD];
|
|
6934
6964
|
*
|
|
6935
6965
|
* // Dynamic property access
|
|
6936
|
-
* const propertyName =
|
|
6937
|
-
* const value =
|
|
6966
|
+
* const propertyName = KEY_DOMAIN_FORWARD_REQUEST_WILDCARD;
|
|
6967
|
+
* const value = domainforwardrequest[propertyName];
|
|
6938
6968
|
* ```
|
|
6939
6969
|
*
|
|
6940
|
-
* @see {@link
|
|
6941
|
-
* @see {@link
|
|
6970
|
+
* @see {@link DomainForwardRequest} - The TypeScript type definition
|
|
6971
|
+
* @see {@link KEYS_DOMAIN_FORWARD_REQUEST} - Array of all keys for this type
|
|
6942
6972
|
*/
|
|
6943
|
-
export const
|
|
6973
|
+
export const KEY_DOMAIN_FORWARD_REQUEST_WILDCARD = 'wildcard' as keyof DomainForwardRequest;
|
|
6944
6974
|
|
|
6945
6975
|
/**
|
|
6946
|
-
* Array of all
|
|
6976
|
+
* Array of all DomainForwardRequest property keys
|
|
6947
6977
|
*
|
|
6948
6978
|
* @remarks
|
|
6949
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
6979
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardRequest objects.
|
|
6950
6980
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
6951
6981
|
*
|
|
6952
6982
|
* @example
|
|
6953
6983
|
* ```typescript
|
|
6954
6984
|
* // Iterating through all keys
|
|
6955
|
-
* for (const key of
|
|
6956
|
-
* console.log(`Property: ${key}, Value: ${
|
|
6985
|
+
* for (const key of KEYS_DOMAIN_FORWARD_REQUEST) {
|
|
6986
|
+
* console.log(`Property: ${key}, Value: ${domainforwardrequest[key]}`);
|
|
6957
6987
|
* }
|
|
6958
6988
|
*
|
|
6959
6989
|
* // Validation
|
|
6960
|
-
* const isValidKey =
|
|
6990
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_REQUEST.includes(someKey);
|
|
6961
6991
|
* ```
|
|
6962
6992
|
*
|
|
6963
|
-
* @see {@link
|
|
6993
|
+
* @see {@link DomainForwardRequest} - The TypeScript type definition
|
|
6964
6994
|
*/
|
|
6965
|
-
export const
|
|
6966
|
-
|
|
6967
|
-
|
|
6968
|
-
|
|
6969
|
-
|
|
6970
|
-
] as const satisfies (keyof
|
|
6995
|
+
export const KEYS_DOMAIN_FORWARD_REQUEST = [
|
|
6996
|
+
KEY_DOMAIN_FORWARD_REQUEST_ENABLED,
|
|
6997
|
+
KEY_DOMAIN_FORWARD_REQUEST_HTTP,
|
|
6998
|
+
KEY_DOMAIN_FORWARD_REQUEST_HTTPS,
|
|
6999
|
+
KEY_DOMAIN_FORWARD_REQUEST_WILDCARD,
|
|
7000
|
+
] as const satisfies (keyof DomainForwardRequest)[];
|
|
6971
7001
|
|
|
6972
7002
|
/**
|
|
6973
|
-
*
|
|
7003
|
+
* Redirects
|
|
6974
7004
|
*
|
|
6975
|
-
* Add grace period in days after registration in ISO 8601 format (e.g., 5D, 3D)
|
|
6976
7005
|
*
|
|
7006
|
+
* @type {array}
|
|
6977
7007
|
*
|
|
6978
7008
|
*
|
|
6979
7009
|
* @remarks
|
|
6980
|
-
* This key constant provides type-safe access to the `
|
|
7010
|
+
* This key constant provides type-safe access to the `redirects` property of DomainForwardSetRequest objects.
|
|
6981
7011
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6982
7012
|
*
|
|
6983
7013
|
* @example
|
|
6984
7014
|
* ```typescript
|
|
6985
7015
|
* // Direct property access
|
|
6986
|
-
* const value =
|
|
7016
|
+
* const value = domainforwardsetrequest[KEY_DOMAIN_FORWARD_SET_REQUEST_REDIRECTS];
|
|
6987
7017
|
*
|
|
6988
7018
|
* // Dynamic property access
|
|
6989
|
-
* const propertyName =
|
|
6990
|
-
* const value =
|
|
7019
|
+
* const propertyName = KEY_DOMAIN_FORWARD_SET_REQUEST_REDIRECTS;
|
|
7020
|
+
* const value = domainforwardsetrequest[propertyName];
|
|
6991
7021
|
* ```
|
|
6992
7022
|
*
|
|
6993
|
-
* @see {@link
|
|
6994
|
-
* @see {@link
|
|
7023
|
+
* @see {@link DomainForwardSetRequest} - The TypeScript type definition
|
|
7024
|
+
* @see {@link KEYS_DOMAIN_FORWARD_SET_REQUEST} - Array of all keys for this type
|
|
6995
7025
|
*/
|
|
6996
|
-
export const
|
|
7026
|
+
export const KEY_DOMAIN_FORWARD_SET_REQUEST_REDIRECTS = 'redirects' as keyof DomainForwardSetRequest;
|
|
7027
|
+
|
|
6997
7028
|
/**
|
|
6998
|
-
*
|
|
7029
|
+
* Array of all DomainForwardSetRequest property keys
|
|
7030
|
+
*
|
|
7031
|
+
* @remarks
|
|
7032
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardSetRequest objects.
|
|
7033
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7034
|
+
*
|
|
7035
|
+
* @example
|
|
7036
|
+
* ```typescript
|
|
7037
|
+
* // Iterating through all keys
|
|
7038
|
+
* for (const key of KEYS_DOMAIN_FORWARD_SET_REQUEST) {
|
|
7039
|
+
* console.log(`Property: ${key}, Value: ${domainforwardsetrequest[key]}`);
|
|
7040
|
+
* }
|
|
7041
|
+
*
|
|
7042
|
+
* // Validation
|
|
7043
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_SET_REQUEST.includes(someKey);
|
|
7044
|
+
* ```
|
|
7045
|
+
*
|
|
7046
|
+
* @see {@link DomainForwardSetRequest} - The TypeScript type definition
|
|
7047
|
+
*/
|
|
7048
|
+
export const KEYS_DOMAIN_FORWARD_SET_REQUEST = [
|
|
7049
|
+
KEY_DOMAIN_FORWARD_SET_REQUEST_REDIRECTS,
|
|
7050
|
+
] as const satisfies (keyof DomainForwardSetRequest)[];
|
|
7051
|
+
|
|
7052
|
+
/**
|
|
7053
|
+
* Created On
|
|
6999
7054
|
*
|
|
7000
|
-
* Time before expiration to auto-renew a domain in ISO 8601 format (e.g., 5D, -7D)
|
|
7001
7055
|
*
|
|
7056
|
+
* @type {string}
|
|
7002
7057
|
*
|
|
7003
7058
|
*
|
|
7004
7059
|
* @remarks
|
|
7005
|
-
* This key constant provides type-safe access to the `
|
|
7060
|
+
* This key constant provides type-safe access to the `created_on` property of DomainForwardSet objects.
|
|
7006
7061
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7007
7062
|
*
|
|
7008
7063
|
* @example
|
|
7009
7064
|
* ```typescript
|
|
7010
7065
|
* // Direct property access
|
|
7011
|
-
* const value =
|
|
7066
|
+
* const value = domainforwardset[KEY_DOMAIN_FORWARD_SET_CREATED_ON];
|
|
7012
7067
|
*
|
|
7013
7068
|
* // Dynamic property access
|
|
7014
|
-
* const propertyName =
|
|
7015
|
-
* const value =
|
|
7069
|
+
* const propertyName = KEY_DOMAIN_FORWARD_SET_CREATED_ON;
|
|
7070
|
+
* const value = domainforwardset[propertyName];
|
|
7016
7071
|
* ```
|
|
7017
7072
|
*
|
|
7018
|
-
* @see {@link
|
|
7019
|
-
* @see {@link
|
|
7073
|
+
* @see {@link DomainForwardSet} - The TypeScript type definition
|
|
7074
|
+
* @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
|
|
7020
7075
|
*/
|
|
7021
|
-
export const
|
|
7076
|
+
export const KEY_DOMAIN_FORWARD_SET_CREATED_ON = 'created_on' as keyof DomainForwardSet;
|
|
7022
7077
|
/**
|
|
7023
|
-
*
|
|
7078
|
+
* Hostname
|
|
7024
7079
|
*
|
|
7025
|
-
* Time before expiration to delete a domain in ISO 8601 format (e.g., 5D, -7D)
|
|
7026
7080
|
*
|
|
7081
|
+
* @type {string}
|
|
7027
7082
|
*
|
|
7028
7083
|
*
|
|
7029
7084
|
* @remarks
|
|
7030
|
-
* This key constant provides type-safe access to the `
|
|
7085
|
+
* This key constant provides type-safe access to the `hostname` property of DomainForwardSet objects.
|
|
7031
7086
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7032
7087
|
*
|
|
7033
7088
|
* @example
|
|
7034
7089
|
* ```typescript
|
|
7035
7090
|
* // Direct property access
|
|
7036
|
-
* const value =
|
|
7091
|
+
* const value = domainforwardset[KEY_DOMAIN_FORWARD_SET_HOSTNAME];
|
|
7037
7092
|
*
|
|
7038
7093
|
* // Dynamic property access
|
|
7039
|
-
* const propertyName =
|
|
7040
|
-
* const value =
|
|
7094
|
+
* const propertyName = KEY_DOMAIN_FORWARD_SET_HOSTNAME;
|
|
7095
|
+
* const value = domainforwardset[propertyName];
|
|
7096
|
+
* ```
|
|
7097
|
+
*
|
|
7098
|
+
* @see {@link DomainForwardSet} - The TypeScript type definition
|
|
7099
|
+
* @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
|
|
7100
|
+
*/
|
|
7101
|
+
export const KEY_DOMAIN_FORWARD_SET_HOSTNAME = 'hostname' as keyof DomainForwardSet;
|
|
7102
|
+
/**
|
|
7103
|
+
* protocol property
|
|
7104
|
+
*
|
|
7105
|
+
*
|
|
7106
|
+
*
|
|
7107
|
+
*
|
|
7108
|
+
* @remarks
|
|
7109
|
+
* This key constant provides type-safe access to the `protocol` property of DomainForwardSet objects.
|
|
7110
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7111
|
+
*
|
|
7112
|
+
* @example
|
|
7113
|
+
* ```typescript
|
|
7114
|
+
* // Direct property access
|
|
7115
|
+
* const value = domainforwardset[KEY_DOMAIN_FORWARD_SET_PROTOCOL];
|
|
7116
|
+
*
|
|
7117
|
+
* // Dynamic property access
|
|
7118
|
+
* const propertyName = KEY_DOMAIN_FORWARD_SET_PROTOCOL;
|
|
7119
|
+
* const value = domainforwardset[propertyName];
|
|
7120
|
+
* ```
|
|
7121
|
+
*
|
|
7122
|
+
* @see {@link DomainForwardSet} - The TypeScript type definition
|
|
7123
|
+
* @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
|
|
7124
|
+
*/
|
|
7125
|
+
export const KEY_DOMAIN_FORWARD_SET_PROTOCOL = 'protocol' as keyof DomainForwardSet;
|
|
7126
|
+
/**
|
|
7127
|
+
* Redirects
|
|
7128
|
+
*
|
|
7129
|
+
*
|
|
7130
|
+
* @type {array}
|
|
7131
|
+
*
|
|
7132
|
+
*
|
|
7133
|
+
* @remarks
|
|
7134
|
+
* This key constant provides type-safe access to the `redirects` property of DomainForwardSet objects.
|
|
7135
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7136
|
+
*
|
|
7137
|
+
* @example
|
|
7138
|
+
* ```typescript
|
|
7139
|
+
* // Direct property access
|
|
7140
|
+
* const value = domainforwardset[KEY_DOMAIN_FORWARD_SET_REDIRECTS];
|
|
7141
|
+
*
|
|
7142
|
+
* // Dynamic property access
|
|
7143
|
+
* const propertyName = KEY_DOMAIN_FORWARD_SET_REDIRECTS;
|
|
7144
|
+
* const value = domainforwardset[propertyName];
|
|
7145
|
+
* ```
|
|
7146
|
+
*
|
|
7147
|
+
* @see {@link DomainForwardSet} - The TypeScript type definition
|
|
7148
|
+
* @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
|
|
7149
|
+
*/
|
|
7150
|
+
export const KEY_DOMAIN_FORWARD_SET_REDIRECTS = 'redirects' as keyof DomainForwardSet;
|
|
7151
|
+
/**
|
|
7152
|
+
* Updated On
|
|
7153
|
+
*
|
|
7154
|
+
*
|
|
7155
|
+
* @type {string}
|
|
7156
|
+
*
|
|
7157
|
+
*
|
|
7158
|
+
* @remarks
|
|
7159
|
+
* This key constant provides type-safe access to the `updated_on` property of DomainForwardSet objects.
|
|
7160
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7161
|
+
*
|
|
7162
|
+
* @example
|
|
7163
|
+
* ```typescript
|
|
7164
|
+
* // Direct property access
|
|
7165
|
+
* const value = domainforwardset[KEY_DOMAIN_FORWARD_SET_UPDATED_ON];
|
|
7166
|
+
*
|
|
7167
|
+
* // Dynamic property access
|
|
7168
|
+
* const propertyName = KEY_DOMAIN_FORWARD_SET_UPDATED_ON;
|
|
7169
|
+
* const value = domainforwardset[propertyName];
|
|
7170
|
+
* ```
|
|
7171
|
+
*
|
|
7172
|
+
* @see {@link DomainForwardSet} - The TypeScript type definition
|
|
7173
|
+
* @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
|
|
7174
|
+
*/
|
|
7175
|
+
export const KEY_DOMAIN_FORWARD_SET_UPDATED_ON = 'updated_on' as keyof DomainForwardSet;
|
|
7176
|
+
/**
|
|
7177
|
+
* Wildcard
|
|
7178
|
+
*
|
|
7179
|
+
*
|
|
7180
|
+
* @type {boolean}
|
|
7181
|
+
*
|
|
7182
|
+
*
|
|
7183
|
+
* @remarks
|
|
7184
|
+
* This key constant provides type-safe access to the `wildcard` property of DomainForwardSet objects.
|
|
7185
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7186
|
+
*
|
|
7187
|
+
* @example
|
|
7188
|
+
* ```typescript
|
|
7189
|
+
* // Direct property access
|
|
7190
|
+
* const value = domainforwardset[KEY_DOMAIN_FORWARD_SET_WILDCARD];
|
|
7191
|
+
*
|
|
7192
|
+
* // Dynamic property access
|
|
7193
|
+
* const propertyName = KEY_DOMAIN_FORWARD_SET_WILDCARD;
|
|
7194
|
+
* const value = domainforwardset[propertyName];
|
|
7195
|
+
* ```
|
|
7196
|
+
*
|
|
7197
|
+
* @see {@link DomainForwardSet} - The TypeScript type definition
|
|
7198
|
+
* @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
|
|
7199
|
+
*/
|
|
7200
|
+
export const KEY_DOMAIN_FORWARD_SET_WILDCARD = 'wildcard' as keyof DomainForwardSet;
|
|
7201
|
+
|
|
7202
|
+
/**
|
|
7203
|
+
* Array of all DomainForwardSet property keys
|
|
7204
|
+
*
|
|
7205
|
+
* @remarks
|
|
7206
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardSet objects.
|
|
7207
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7208
|
+
*
|
|
7209
|
+
* @example
|
|
7210
|
+
* ```typescript
|
|
7211
|
+
* // Iterating through all keys
|
|
7212
|
+
* for (const key of KEYS_DOMAIN_FORWARD_SET) {
|
|
7213
|
+
* console.log(`Property: ${key}, Value: ${domainforwardset[key]}`);
|
|
7214
|
+
* }
|
|
7215
|
+
*
|
|
7216
|
+
* // Validation
|
|
7217
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_SET.includes(someKey);
|
|
7218
|
+
* ```
|
|
7219
|
+
*
|
|
7220
|
+
* @see {@link DomainForwardSet} - The TypeScript type definition
|
|
7221
|
+
*/
|
|
7222
|
+
export const KEYS_DOMAIN_FORWARD_SET = [
|
|
7223
|
+
KEY_DOMAIN_FORWARD_SET_CREATED_ON,
|
|
7224
|
+
KEY_DOMAIN_FORWARD_SET_HOSTNAME,
|
|
7225
|
+
KEY_DOMAIN_FORWARD_SET_PROTOCOL,
|
|
7226
|
+
KEY_DOMAIN_FORWARD_SET_REDIRECTS,
|
|
7227
|
+
KEY_DOMAIN_FORWARD_SET_UPDATED_ON,
|
|
7228
|
+
KEY_DOMAIN_FORWARD_SET_WILDCARD,
|
|
7229
|
+
] as const satisfies (keyof DomainForwardSet)[];
|
|
7230
|
+
|
|
7231
|
+
/**
|
|
7232
|
+
* Domain Forwards
|
|
7233
|
+
*
|
|
7234
|
+
*
|
|
7235
|
+
* @type {array}
|
|
7236
|
+
*
|
|
7237
|
+
*
|
|
7238
|
+
* @remarks
|
|
7239
|
+
* This key constant provides type-safe access to the `domain_forwards` property of DomainForwardZone objects.
|
|
7240
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7241
|
+
*
|
|
7242
|
+
* @example
|
|
7243
|
+
* ```typescript
|
|
7244
|
+
* // Direct property access
|
|
7245
|
+
* const value = domainforwardzone[KEY_DOMAIN_FORWARD_ZONE_DOMAIN_FORWARDS];
|
|
7246
|
+
*
|
|
7247
|
+
* // Dynamic property access
|
|
7248
|
+
* const propertyName = KEY_DOMAIN_FORWARD_ZONE_DOMAIN_FORWARDS;
|
|
7249
|
+
* const value = domainforwardzone[propertyName];
|
|
7250
|
+
* ```
|
|
7251
|
+
*
|
|
7252
|
+
* @see {@link DomainForwardZone} - The TypeScript type definition
|
|
7253
|
+
* @see {@link KEYS_DOMAIN_FORWARD_ZONE} - Array of all keys for this type
|
|
7254
|
+
*/
|
|
7255
|
+
export const KEY_DOMAIN_FORWARD_ZONE_DOMAIN_FORWARDS = 'domain_forwards' as keyof DomainForwardZone;
|
|
7256
|
+
/**
|
|
7257
|
+
* Zone Id
|
|
7258
|
+
*
|
|
7259
|
+
*
|
|
7260
|
+
* @type {string}
|
|
7261
|
+
*
|
|
7262
|
+
*
|
|
7263
|
+
* @remarks
|
|
7264
|
+
* This key constant provides type-safe access to the `zone_id` property of DomainForwardZone objects.
|
|
7265
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7266
|
+
*
|
|
7267
|
+
* @example
|
|
7268
|
+
* ```typescript
|
|
7269
|
+
* // Direct property access
|
|
7270
|
+
* const value = domainforwardzone[KEY_DOMAIN_FORWARD_ZONE_ZONE_ID];
|
|
7271
|
+
*
|
|
7272
|
+
* // Dynamic property access
|
|
7273
|
+
* const propertyName = KEY_DOMAIN_FORWARD_ZONE_ZONE_ID;
|
|
7274
|
+
* const value = domainforwardzone[propertyName];
|
|
7275
|
+
* ```
|
|
7276
|
+
*
|
|
7277
|
+
* @see {@link DomainForwardZone} - The TypeScript type definition
|
|
7278
|
+
* @see {@link KEYS_DOMAIN_FORWARD_ZONE} - Array of all keys for this type
|
|
7279
|
+
*/
|
|
7280
|
+
export const KEY_DOMAIN_FORWARD_ZONE_ZONE_ID = 'zone_id' as keyof DomainForwardZone;
|
|
7281
|
+
/**
|
|
7282
|
+
* Zone Name
|
|
7283
|
+
*
|
|
7284
|
+
*
|
|
7285
|
+
* @type {string}
|
|
7286
|
+
*
|
|
7287
|
+
*
|
|
7288
|
+
* @remarks
|
|
7289
|
+
* This key constant provides type-safe access to the `zone_name` property of DomainForwardZone objects.
|
|
7290
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7291
|
+
*
|
|
7292
|
+
* @example
|
|
7293
|
+
* ```typescript
|
|
7294
|
+
* // Direct property access
|
|
7295
|
+
* const value = domainforwardzone[KEY_DOMAIN_FORWARD_ZONE_ZONE_NAME];
|
|
7296
|
+
*
|
|
7297
|
+
* // Dynamic property access
|
|
7298
|
+
* const propertyName = KEY_DOMAIN_FORWARD_ZONE_ZONE_NAME;
|
|
7299
|
+
* const value = domainforwardzone[propertyName];
|
|
7300
|
+
* ```
|
|
7301
|
+
*
|
|
7302
|
+
* @see {@link DomainForwardZone} - The TypeScript type definition
|
|
7303
|
+
* @see {@link KEYS_DOMAIN_FORWARD_ZONE} - Array of all keys for this type
|
|
7304
|
+
*/
|
|
7305
|
+
export const KEY_DOMAIN_FORWARD_ZONE_ZONE_NAME = 'zone_name' as keyof DomainForwardZone;
|
|
7306
|
+
|
|
7307
|
+
/**
|
|
7308
|
+
* Array of all DomainForwardZone property keys
|
|
7309
|
+
*
|
|
7310
|
+
* @remarks
|
|
7311
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardZone objects.
|
|
7312
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7313
|
+
*
|
|
7314
|
+
* @example
|
|
7315
|
+
* ```typescript
|
|
7316
|
+
* // Iterating through all keys
|
|
7317
|
+
* for (const key of KEYS_DOMAIN_FORWARD_ZONE) {
|
|
7318
|
+
* console.log(`Property: ${key}, Value: ${domainforwardzone[key]}`);
|
|
7319
|
+
* }
|
|
7320
|
+
*
|
|
7321
|
+
* // Validation
|
|
7322
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_ZONE.includes(someKey);
|
|
7323
|
+
* ```
|
|
7324
|
+
*
|
|
7325
|
+
* @see {@link DomainForwardZone} - The TypeScript type definition
|
|
7326
|
+
*/
|
|
7327
|
+
export const KEYS_DOMAIN_FORWARD_ZONE = [
|
|
7328
|
+
KEY_DOMAIN_FORWARD_ZONE_DOMAIN_FORWARDS,
|
|
7329
|
+
KEY_DOMAIN_FORWARD_ZONE_ZONE_ID,
|
|
7330
|
+
KEY_DOMAIN_FORWARD_ZONE_ZONE_NAME,
|
|
7331
|
+
] as const satisfies (keyof DomainForwardZone)[];
|
|
7332
|
+
|
|
7333
|
+
/**
|
|
7334
|
+
* Add Grace Period
|
|
7335
|
+
*
|
|
7336
|
+
* Add grace period in days after registration in ISO 8601 format (e.g., 5D, 3D)
|
|
7337
|
+
*
|
|
7338
|
+
*
|
|
7339
|
+
*
|
|
7340
|
+
* @remarks
|
|
7341
|
+
* This key constant provides type-safe access to the `add_grace_period` property of DomainLifecycleBase objects.
|
|
7342
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7343
|
+
*
|
|
7344
|
+
* @example
|
|
7345
|
+
* ```typescript
|
|
7346
|
+
* // Direct property access
|
|
7347
|
+
* const value = domainlifecyclebase[KEY_DOMAIN_LIFECYCLE_BASE_ADD_GRACE_PERIOD];
|
|
7348
|
+
*
|
|
7349
|
+
* // Dynamic property access
|
|
7350
|
+
* const propertyName = KEY_DOMAIN_LIFECYCLE_BASE_ADD_GRACE_PERIOD;
|
|
7351
|
+
* const value = domainlifecyclebase[propertyName];
|
|
7352
|
+
* ```
|
|
7353
|
+
*
|
|
7354
|
+
* @see {@link DomainLifecycleBase} - The TypeScript type definition
|
|
7355
|
+
* @see {@link KEYS_DOMAIN_LIFECYCLE_BASE} - Array of all keys for this type
|
|
7356
|
+
*/
|
|
7357
|
+
export const KEY_DOMAIN_LIFECYCLE_BASE_ADD_GRACE_PERIOD = 'add_grace_period' as keyof DomainLifecycleBase;
|
|
7358
|
+
/**
|
|
7359
|
+
* Auto Renew Before Expiration
|
|
7360
|
+
*
|
|
7361
|
+
* Time before expiration to auto-renew a domain in ISO 8601 format (e.g., 5D, -7D)
|
|
7362
|
+
*
|
|
7363
|
+
*
|
|
7364
|
+
*
|
|
7365
|
+
* @remarks
|
|
7366
|
+
* This key constant provides type-safe access to the `auto_renew_before_expiration` property of DomainLifecycleBase objects.
|
|
7367
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7368
|
+
*
|
|
7369
|
+
* @example
|
|
7370
|
+
* ```typescript
|
|
7371
|
+
* // Direct property access
|
|
7372
|
+
* const value = domainlifecyclebase[KEY_DOMAIN_LIFECYCLE_BASE_AUTO_RENEW_BEFORE_EXPIRATION];
|
|
7373
|
+
*
|
|
7374
|
+
* // Dynamic property access
|
|
7375
|
+
* const propertyName = KEY_DOMAIN_LIFECYCLE_BASE_AUTO_RENEW_BEFORE_EXPIRATION;
|
|
7376
|
+
* const value = domainlifecyclebase[propertyName];
|
|
7377
|
+
* ```
|
|
7378
|
+
*
|
|
7379
|
+
* @see {@link DomainLifecycleBase} - The TypeScript type definition
|
|
7380
|
+
* @see {@link KEYS_DOMAIN_LIFECYCLE_BASE} - Array of all keys for this type
|
|
7381
|
+
*/
|
|
7382
|
+
export const KEY_DOMAIN_LIFECYCLE_BASE_AUTO_RENEW_BEFORE_EXPIRATION = 'auto_renew_before_expiration' as keyof DomainLifecycleBase;
|
|
7383
|
+
/**
|
|
7384
|
+
* Delete Before Expiration
|
|
7385
|
+
*
|
|
7386
|
+
* Time before expiration to delete a domain in ISO 8601 format (e.g., 5D, -7D)
|
|
7387
|
+
*
|
|
7388
|
+
*
|
|
7389
|
+
*
|
|
7390
|
+
* @remarks
|
|
7391
|
+
* This key constant provides type-safe access to the `delete_before_expiration` property of DomainLifecycleBase objects.
|
|
7392
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7393
|
+
*
|
|
7394
|
+
* @example
|
|
7395
|
+
* ```typescript
|
|
7396
|
+
* // Direct property access
|
|
7397
|
+
* const value = domainlifecyclebase[KEY_DOMAIN_LIFECYCLE_BASE_DELETE_BEFORE_EXPIRATION];
|
|
7398
|
+
*
|
|
7399
|
+
* // Dynamic property access
|
|
7400
|
+
* const propertyName = KEY_DOMAIN_LIFECYCLE_BASE_DELETE_BEFORE_EXPIRATION;
|
|
7401
|
+
* const value = domainlifecyclebase[propertyName];
|
|
7041
7402
|
* ```
|
|
7042
7403
|
*
|
|
7043
7404
|
* @see {@link DomainLifecycleBase} - The TypeScript type definition
|
|
@@ -10432,84 +10793,590 @@ export const KEY_H_T_T_P_VALIDATION_ERROR_ERRORS = 'errors' as keyof HTTPValidat
|
|
|
10432
10793
|
* @see {@link HTTPValidationError} - The TypeScript type definition
|
|
10433
10794
|
* @see {@link KEYS_H_T_T_P_VALIDATION_ERROR} - Array of all keys for this type
|
|
10434
10795
|
*/
|
|
10435
|
-
export const KEY_H_T_T_P_VALIDATION_ERROR_STATUS = 'status' as keyof HTTPValidationError;
|
|
10796
|
+
export const KEY_H_T_T_P_VALIDATION_ERROR_STATUS = 'status' as keyof HTTPValidationError;
|
|
10797
|
+
/**
|
|
10798
|
+
* Problem Title
|
|
10799
|
+
*
|
|
10800
|
+
*
|
|
10801
|
+
* @type {string}
|
|
10802
|
+
*
|
|
10803
|
+
*
|
|
10804
|
+
* @remarks
|
|
10805
|
+
* This key constant provides type-safe access to the `title` property of HTTPValidationError objects.
|
|
10806
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10807
|
+
*
|
|
10808
|
+
* @example
|
|
10809
|
+
* ```typescript
|
|
10810
|
+
* // Direct property access
|
|
10811
|
+
* const value = httpvalidationerror[KEY_H_T_T_P_VALIDATION_ERROR_TITLE];
|
|
10812
|
+
*
|
|
10813
|
+
* // Dynamic property access
|
|
10814
|
+
* const propertyName = KEY_H_T_T_P_VALIDATION_ERROR_TITLE;
|
|
10815
|
+
* const value = httpvalidationerror[propertyName];
|
|
10816
|
+
* ```
|
|
10817
|
+
*
|
|
10818
|
+
* @see {@link HTTPValidationError} - The TypeScript type definition
|
|
10819
|
+
* @see {@link KEYS_H_T_T_P_VALIDATION_ERROR} - Array of all keys for this type
|
|
10820
|
+
*/
|
|
10821
|
+
export const KEY_H_T_T_P_VALIDATION_ERROR_TITLE = 'title' as keyof HTTPValidationError;
|
|
10822
|
+
/**
|
|
10823
|
+
* Problem type
|
|
10824
|
+
*
|
|
10825
|
+
*
|
|
10826
|
+
* @type {string}
|
|
10827
|
+
*
|
|
10828
|
+
*
|
|
10829
|
+
* @remarks
|
|
10830
|
+
* This key constant provides type-safe access to the `type` property of HTTPValidationError objects.
|
|
10831
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10832
|
+
*
|
|
10833
|
+
* @example
|
|
10834
|
+
* ```typescript
|
|
10835
|
+
* // Direct property access
|
|
10836
|
+
* const value = httpvalidationerror[KEY_H_T_T_P_VALIDATION_ERROR_TYPE];
|
|
10837
|
+
*
|
|
10838
|
+
* // Dynamic property access
|
|
10839
|
+
* const propertyName = KEY_H_T_T_P_VALIDATION_ERROR_TYPE;
|
|
10840
|
+
* const value = httpvalidationerror[propertyName];
|
|
10841
|
+
* ```
|
|
10842
|
+
*
|
|
10843
|
+
* @see {@link HTTPValidationError} - The TypeScript type definition
|
|
10844
|
+
* @see {@link KEYS_H_T_T_P_VALIDATION_ERROR} - Array of all keys for this type
|
|
10845
|
+
*/
|
|
10846
|
+
export const KEY_H_T_T_P_VALIDATION_ERROR_TYPE = 'type' as keyof HTTPValidationError;
|
|
10847
|
+
|
|
10848
|
+
/**
|
|
10849
|
+
* Array of all HTTPValidationError property keys
|
|
10850
|
+
*
|
|
10851
|
+
* @remarks
|
|
10852
|
+
* This constant provides a readonly array containing all valid property keys for HTTPValidationError objects.
|
|
10853
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
10854
|
+
*
|
|
10855
|
+
* @example
|
|
10856
|
+
* ```typescript
|
|
10857
|
+
* // Iterating through all keys
|
|
10858
|
+
* for (const key of KEYS_H_T_T_P_VALIDATION_ERROR) {
|
|
10859
|
+
* console.log(`Property: ${key}, Value: ${httpvalidationerror[key]}`);
|
|
10860
|
+
* }
|
|
10861
|
+
*
|
|
10862
|
+
* // Validation
|
|
10863
|
+
* const isValidKey = KEYS_H_T_T_P_VALIDATION_ERROR.includes(someKey);
|
|
10864
|
+
* ```
|
|
10865
|
+
*
|
|
10866
|
+
* @see {@link HTTPValidationError} - The TypeScript type definition
|
|
10867
|
+
*/
|
|
10868
|
+
export const KEYS_H_T_T_P_VALIDATION_ERROR = [
|
|
10869
|
+
KEY_H_T_T_P_VALIDATION_ERROR_ERRORS,
|
|
10870
|
+
KEY_H_T_T_P_VALIDATION_ERROR_STATUS,
|
|
10871
|
+
KEY_H_T_T_P_VALIDATION_ERROR_TITLE,
|
|
10872
|
+
KEY_H_T_T_P_VALIDATION_ERROR_TYPE,
|
|
10873
|
+
] as const satisfies (keyof HTTPValidationError)[];
|
|
10874
|
+
|
|
10875
|
+
/**
|
|
10876
|
+
* redirect_code property
|
|
10877
|
+
*
|
|
10878
|
+
*
|
|
10879
|
+
*
|
|
10880
|
+
*
|
|
10881
|
+
* @remarks
|
|
10882
|
+
* This key constant provides type-safe access to the `redirect_code` property of HttpRedirectList objects.
|
|
10883
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10884
|
+
*
|
|
10885
|
+
* @example
|
|
10886
|
+
* ```typescript
|
|
10887
|
+
* // Direct property access
|
|
10888
|
+
* const value = httpredirectlist[KEY_HTTP_REDIRECT_LIST_REDIRECT_CODE];
|
|
10889
|
+
*
|
|
10890
|
+
* // Dynamic property access
|
|
10891
|
+
* const propertyName = KEY_HTTP_REDIRECT_LIST_REDIRECT_CODE;
|
|
10892
|
+
* const value = httpredirectlist[propertyName];
|
|
10893
|
+
* ```
|
|
10894
|
+
*
|
|
10895
|
+
* @see {@link HttpRedirectList} - The TypeScript type definition
|
|
10896
|
+
* @see {@link KEYS_HTTP_REDIRECT_LIST} - Array of all keys for this type
|
|
10897
|
+
*/
|
|
10898
|
+
export const KEY_HTTP_REDIRECT_LIST_REDIRECT_CODE = 'redirect_code' as keyof HttpRedirectList;
|
|
10899
|
+
/**
|
|
10900
|
+
* Request Hostname
|
|
10901
|
+
*
|
|
10902
|
+
*
|
|
10903
|
+
* @type {string}
|
|
10904
|
+
*
|
|
10905
|
+
*
|
|
10906
|
+
* @remarks
|
|
10907
|
+
* This key constant provides type-safe access to the `request_hostname` property of HttpRedirectList objects.
|
|
10908
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10909
|
+
*
|
|
10910
|
+
* @example
|
|
10911
|
+
* ```typescript
|
|
10912
|
+
* // Direct property access
|
|
10913
|
+
* const value = httpredirectlist[KEY_HTTP_REDIRECT_LIST_REQUEST_HOSTNAME];
|
|
10914
|
+
*
|
|
10915
|
+
* // Dynamic property access
|
|
10916
|
+
* const propertyName = KEY_HTTP_REDIRECT_LIST_REQUEST_HOSTNAME;
|
|
10917
|
+
* const value = httpredirectlist[propertyName];
|
|
10918
|
+
* ```
|
|
10919
|
+
*
|
|
10920
|
+
* @see {@link HttpRedirectList} - The TypeScript type definition
|
|
10921
|
+
* @see {@link KEYS_HTTP_REDIRECT_LIST} - Array of all keys for this type
|
|
10922
|
+
*/
|
|
10923
|
+
export const KEY_HTTP_REDIRECT_LIST_REQUEST_HOSTNAME = 'request_hostname' as keyof HttpRedirectList;
|
|
10924
|
+
/**
|
|
10925
|
+
* Request Path
|
|
10926
|
+
*
|
|
10927
|
+
*
|
|
10928
|
+
* @type {string}
|
|
10929
|
+
*
|
|
10930
|
+
*
|
|
10931
|
+
* @remarks
|
|
10932
|
+
* This key constant provides type-safe access to the `request_path` property of HttpRedirectList objects.
|
|
10933
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10934
|
+
*
|
|
10935
|
+
* @example
|
|
10936
|
+
* ```typescript
|
|
10937
|
+
* // Direct property access
|
|
10938
|
+
* const value = httpredirectlist[KEY_HTTP_REDIRECT_LIST_REQUEST_PATH];
|
|
10939
|
+
*
|
|
10940
|
+
* // Dynamic property access
|
|
10941
|
+
* const propertyName = KEY_HTTP_REDIRECT_LIST_REQUEST_PATH;
|
|
10942
|
+
* const value = httpredirectlist[propertyName];
|
|
10943
|
+
* ```
|
|
10944
|
+
*
|
|
10945
|
+
* @see {@link HttpRedirectList} - The TypeScript type definition
|
|
10946
|
+
* @see {@link KEYS_HTTP_REDIRECT_LIST} - Array of all keys for this type
|
|
10947
|
+
*/
|
|
10948
|
+
export const KEY_HTTP_REDIRECT_LIST_REQUEST_PATH = 'request_path' as keyof HttpRedirectList;
|
|
10949
|
+
/**
|
|
10950
|
+
* request_protocol property
|
|
10951
|
+
*
|
|
10952
|
+
*
|
|
10953
|
+
*
|
|
10954
|
+
*
|
|
10955
|
+
* @remarks
|
|
10956
|
+
* This key constant provides type-safe access to the `request_protocol` property of HttpRedirectList objects.
|
|
10957
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10958
|
+
*
|
|
10959
|
+
* @example
|
|
10960
|
+
* ```typescript
|
|
10961
|
+
* // Direct property access
|
|
10962
|
+
* const value = httpredirectlist[KEY_HTTP_REDIRECT_LIST_REQUEST_PROTOCOL];
|
|
10963
|
+
*
|
|
10964
|
+
* // Dynamic property access
|
|
10965
|
+
* const propertyName = KEY_HTTP_REDIRECT_LIST_REQUEST_PROTOCOL;
|
|
10966
|
+
* const value = httpredirectlist[propertyName];
|
|
10967
|
+
* ```
|
|
10968
|
+
*
|
|
10969
|
+
* @see {@link HttpRedirectList} - The TypeScript type definition
|
|
10970
|
+
* @see {@link KEYS_HTTP_REDIRECT_LIST} - Array of all keys for this type
|
|
10971
|
+
*/
|
|
10972
|
+
export const KEY_HTTP_REDIRECT_LIST_REQUEST_PROTOCOL = 'request_protocol' as keyof HttpRedirectList;
|
|
10973
|
+
/**
|
|
10974
|
+
* Request Subdomain
|
|
10975
|
+
*
|
|
10976
|
+
*
|
|
10977
|
+
*
|
|
10978
|
+
*
|
|
10979
|
+
* @remarks
|
|
10980
|
+
* This key constant provides type-safe access to the `request_subdomain` property of HttpRedirectList objects.
|
|
10981
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10982
|
+
*
|
|
10983
|
+
* @example
|
|
10984
|
+
* ```typescript
|
|
10985
|
+
* // Direct property access
|
|
10986
|
+
* const value = httpredirectlist[KEY_HTTP_REDIRECT_LIST_REQUEST_SUBDOMAIN];
|
|
10987
|
+
*
|
|
10988
|
+
* // Dynamic property access
|
|
10989
|
+
* const propertyName = KEY_HTTP_REDIRECT_LIST_REQUEST_SUBDOMAIN;
|
|
10990
|
+
* const value = httpredirectlist[propertyName];
|
|
10991
|
+
* ```
|
|
10992
|
+
*
|
|
10993
|
+
* @see {@link HttpRedirectList} - The TypeScript type definition
|
|
10994
|
+
* @see {@link KEYS_HTTP_REDIRECT_LIST} - Array of all keys for this type
|
|
10995
|
+
*/
|
|
10996
|
+
export const KEY_HTTP_REDIRECT_LIST_REQUEST_SUBDOMAIN = 'request_subdomain' as keyof HttpRedirectList;
|
|
10997
|
+
/**
|
|
10998
|
+
* Target Hostname
|
|
10999
|
+
*
|
|
11000
|
+
*
|
|
11001
|
+
* @type {string}
|
|
11002
|
+
*
|
|
11003
|
+
*
|
|
11004
|
+
* @remarks
|
|
11005
|
+
* This key constant provides type-safe access to the `target_hostname` property of HttpRedirectList objects.
|
|
11006
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11007
|
+
*
|
|
11008
|
+
* @example
|
|
11009
|
+
* ```typescript
|
|
11010
|
+
* // Direct property access
|
|
11011
|
+
* const value = httpredirectlist[KEY_HTTP_REDIRECT_LIST_TARGET_HOSTNAME];
|
|
11012
|
+
*
|
|
11013
|
+
* // Dynamic property access
|
|
11014
|
+
* const propertyName = KEY_HTTP_REDIRECT_LIST_TARGET_HOSTNAME;
|
|
11015
|
+
* const value = httpredirectlist[propertyName];
|
|
11016
|
+
* ```
|
|
11017
|
+
*
|
|
11018
|
+
* @see {@link HttpRedirectList} - The TypeScript type definition
|
|
11019
|
+
* @see {@link KEYS_HTTP_REDIRECT_LIST} - Array of all keys for this type
|
|
11020
|
+
*/
|
|
11021
|
+
export const KEY_HTTP_REDIRECT_LIST_TARGET_HOSTNAME = 'target_hostname' as keyof HttpRedirectList;
|
|
11022
|
+
/**
|
|
11023
|
+
* Target Path
|
|
11024
|
+
*
|
|
11025
|
+
*
|
|
11026
|
+
* @type {string}
|
|
11027
|
+
*
|
|
11028
|
+
*
|
|
11029
|
+
* @remarks
|
|
11030
|
+
* This key constant provides type-safe access to the `target_path` property of HttpRedirectList objects.
|
|
11031
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11032
|
+
*
|
|
11033
|
+
* @example
|
|
11034
|
+
* ```typescript
|
|
11035
|
+
* // Direct property access
|
|
11036
|
+
* const value = httpredirectlist[KEY_HTTP_REDIRECT_LIST_TARGET_PATH];
|
|
11037
|
+
*
|
|
11038
|
+
* // Dynamic property access
|
|
11039
|
+
* const propertyName = KEY_HTTP_REDIRECT_LIST_TARGET_PATH;
|
|
11040
|
+
* const value = httpredirectlist[propertyName];
|
|
11041
|
+
* ```
|
|
11042
|
+
*
|
|
11043
|
+
* @see {@link HttpRedirectList} - The TypeScript type definition
|
|
11044
|
+
* @see {@link KEYS_HTTP_REDIRECT_LIST} - Array of all keys for this type
|
|
11045
|
+
*/
|
|
11046
|
+
export const KEY_HTTP_REDIRECT_LIST_TARGET_PATH = 'target_path' as keyof HttpRedirectList;
|
|
11047
|
+
/**
|
|
11048
|
+
* target_protocol property
|
|
11049
|
+
*
|
|
11050
|
+
*
|
|
11051
|
+
*
|
|
11052
|
+
*
|
|
11053
|
+
* @remarks
|
|
11054
|
+
* This key constant provides type-safe access to the `target_protocol` property of HttpRedirectList objects.
|
|
11055
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11056
|
+
*
|
|
11057
|
+
* @example
|
|
11058
|
+
* ```typescript
|
|
11059
|
+
* // Direct property access
|
|
11060
|
+
* const value = httpredirectlist[KEY_HTTP_REDIRECT_LIST_TARGET_PROTOCOL];
|
|
11061
|
+
*
|
|
11062
|
+
* // Dynamic property access
|
|
11063
|
+
* const propertyName = KEY_HTTP_REDIRECT_LIST_TARGET_PROTOCOL;
|
|
11064
|
+
* const value = httpredirectlist[propertyName];
|
|
11065
|
+
* ```
|
|
11066
|
+
*
|
|
11067
|
+
* @see {@link HttpRedirectList} - The TypeScript type definition
|
|
11068
|
+
* @see {@link KEYS_HTTP_REDIRECT_LIST} - Array of all keys for this type
|
|
11069
|
+
*/
|
|
11070
|
+
export const KEY_HTTP_REDIRECT_LIST_TARGET_PROTOCOL = 'target_protocol' as keyof HttpRedirectList;
|
|
11071
|
+
|
|
11072
|
+
/**
|
|
11073
|
+
* Array of all HttpRedirectList property keys
|
|
11074
|
+
*
|
|
11075
|
+
* @remarks
|
|
11076
|
+
* This constant provides a readonly array containing all valid property keys for HttpRedirectList objects.
|
|
11077
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
11078
|
+
*
|
|
11079
|
+
* @example
|
|
11080
|
+
* ```typescript
|
|
11081
|
+
* // Iterating through all keys
|
|
11082
|
+
* for (const key of KEYS_HTTP_REDIRECT_LIST) {
|
|
11083
|
+
* console.log(`Property: ${key}, Value: ${httpredirectlist[key]}`);
|
|
11084
|
+
* }
|
|
11085
|
+
*
|
|
11086
|
+
* // Validation
|
|
11087
|
+
* const isValidKey = KEYS_HTTP_REDIRECT_LIST.includes(someKey);
|
|
11088
|
+
* ```
|
|
11089
|
+
*
|
|
11090
|
+
* @see {@link HttpRedirectList} - The TypeScript type definition
|
|
11091
|
+
*/
|
|
11092
|
+
export const KEYS_HTTP_REDIRECT_LIST = [
|
|
11093
|
+
KEY_HTTP_REDIRECT_LIST_REDIRECT_CODE,
|
|
11094
|
+
KEY_HTTP_REDIRECT_LIST_REQUEST_HOSTNAME,
|
|
11095
|
+
KEY_HTTP_REDIRECT_LIST_REQUEST_PATH,
|
|
11096
|
+
KEY_HTTP_REDIRECT_LIST_REQUEST_PROTOCOL,
|
|
11097
|
+
KEY_HTTP_REDIRECT_LIST_REQUEST_SUBDOMAIN,
|
|
11098
|
+
KEY_HTTP_REDIRECT_LIST_TARGET_HOSTNAME,
|
|
11099
|
+
KEY_HTTP_REDIRECT_LIST_TARGET_PATH,
|
|
11100
|
+
KEY_HTTP_REDIRECT_LIST_TARGET_PROTOCOL,
|
|
11101
|
+
] as const satisfies (keyof HttpRedirectList)[];
|
|
11102
|
+
|
|
11103
|
+
/**
|
|
11104
|
+
* Request Hostname
|
|
11105
|
+
*
|
|
11106
|
+
*
|
|
11107
|
+
* @type {string}
|
|
11108
|
+
*
|
|
11109
|
+
*
|
|
11110
|
+
* @remarks
|
|
11111
|
+
* This key constant provides type-safe access to the `request_hostname` property of HttpRedirectRemove objects.
|
|
11112
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11113
|
+
*
|
|
11114
|
+
* @example
|
|
11115
|
+
* ```typescript
|
|
11116
|
+
* // Direct property access
|
|
11117
|
+
* const value = httpredirectremove[KEY_HTTP_REDIRECT_REMOVE_REQUEST_HOSTNAME];
|
|
11118
|
+
*
|
|
11119
|
+
* // Dynamic property access
|
|
11120
|
+
* const propertyName = KEY_HTTP_REDIRECT_REMOVE_REQUEST_HOSTNAME;
|
|
11121
|
+
* const value = httpredirectremove[propertyName];
|
|
11122
|
+
* ```
|
|
11123
|
+
*
|
|
11124
|
+
* @see {@link HttpRedirectRemove} - The TypeScript type definition
|
|
11125
|
+
* @see {@link KEYS_HTTP_REDIRECT_REMOVE} - Array of all keys for this type
|
|
11126
|
+
*/
|
|
11127
|
+
export const KEY_HTTP_REDIRECT_REMOVE_REQUEST_HOSTNAME = 'request_hostname' as keyof HttpRedirectRemove;
|
|
11128
|
+
/**
|
|
11129
|
+
* Request Path
|
|
11130
|
+
*
|
|
11131
|
+
*
|
|
11132
|
+
* @type {string}
|
|
11133
|
+
*
|
|
11134
|
+
*
|
|
11135
|
+
* @remarks
|
|
11136
|
+
* This key constant provides type-safe access to the `request_path` property of HttpRedirectRemove objects.
|
|
11137
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11138
|
+
*
|
|
11139
|
+
* @example
|
|
11140
|
+
* ```typescript
|
|
11141
|
+
* // Direct property access
|
|
11142
|
+
* const value = httpredirectremove[KEY_HTTP_REDIRECT_REMOVE_REQUEST_PATH];
|
|
11143
|
+
*
|
|
11144
|
+
* // Dynamic property access
|
|
11145
|
+
* const propertyName = KEY_HTTP_REDIRECT_REMOVE_REQUEST_PATH;
|
|
11146
|
+
* const value = httpredirectremove[propertyName];
|
|
11147
|
+
* ```
|
|
11148
|
+
*
|
|
11149
|
+
* @see {@link HttpRedirectRemove} - The TypeScript type definition
|
|
11150
|
+
* @see {@link KEYS_HTTP_REDIRECT_REMOVE} - Array of all keys for this type
|
|
11151
|
+
*/
|
|
11152
|
+
export const KEY_HTTP_REDIRECT_REMOVE_REQUEST_PATH = 'request_path' as keyof HttpRedirectRemove;
|
|
11153
|
+
/**
|
|
11154
|
+
* request_protocol property
|
|
11155
|
+
*
|
|
11156
|
+
*
|
|
11157
|
+
*
|
|
11158
|
+
*
|
|
11159
|
+
* @remarks
|
|
11160
|
+
* This key constant provides type-safe access to the `request_protocol` property of HttpRedirectRemove objects.
|
|
11161
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11162
|
+
*
|
|
11163
|
+
* @example
|
|
11164
|
+
* ```typescript
|
|
11165
|
+
* // Direct property access
|
|
11166
|
+
* const value = httpredirectremove[KEY_HTTP_REDIRECT_REMOVE_REQUEST_PROTOCOL];
|
|
11167
|
+
*
|
|
11168
|
+
* // Dynamic property access
|
|
11169
|
+
* const propertyName = KEY_HTTP_REDIRECT_REMOVE_REQUEST_PROTOCOL;
|
|
11170
|
+
* const value = httpredirectremove[propertyName];
|
|
11171
|
+
* ```
|
|
11172
|
+
*
|
|
11173
|
+
* @see {@link HttpRedirectRemove} - The TypeScript type definition
|
|
11174
|
+
* @see {@link KEYS_HTTP_REDIRECT_REMOVE} - Array of all keys for this type
|
|
11175
|
+
*/
|
|
11176
|
+
export const KEY_HTTP_REDIRECT_REMOVE_REQUEST_PROTOCOL = 'request_protocol' as keyof HttpRedirectRemove;
|
|
11177
|
+
/**
|
|
11178
|
+
* Request Subdomain
|
|
11179
|
+
*
|
|
11180
|
+
*
|
|
11181
|
+
*
|
|
11182
|
+
*
|
|
11183
|
+
* @remarks
|
|
11184
|
+
* This key constant provides type-safe access to the `request_subdomain` property of HttpRedirectRemove objects.
|
|
11185
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11186
|
+
*
|
|
11187
|
+
* @example
|
|
11188
|
+
* ```typescript
|
|
11189
|
+
* // Direct property access
|
|
11190
|
+
* const value = httpredirectremove[KEY_HTTP_REDIRECT_REMOVE_REQUEST_SUBDOMAIN];
|
|
11191
|
+
*
|
|
11192
|
+
* // Dynamic property access
|
|
11193
|
+
* const propertyName = KEY_HTTP_REDIRECT_REMOVE_REQUEST_SUBDOMAIN;
|
|
11194
|
+
* const value = httpredirectremove[propertyName];
|
|
11195
|
+
* ```
|
|
11196
|
+
*
|
|
11197
|
+
* @see {@link HttpRedirectRemove} - The TypeScript type definition
|
|
11198
|
+
* @see {@link KEYS_HTTP_REDIRECT_REMOVE} - Array of all keys for this type
|
|
11199
|
+
*/
|
|
11200
|
+
export const KEY_HTTP_REDIRECT_REMOVE_REQUEST_SUBDOMAIN = 'request_subdomain' as keyof HttpRedirectRemove;
|
|
11201
|
+
|
|
11202
|
+
/**
|
|
11203
|
+
* Array of all HttpRedirectRemove property keys
|
|
11204
|
+
*
|
|
11205
|
+
* @remarks
|
|
11206
|
+
* This constant provides a readonly array containing all valid property keys for HttpRedirectRemove objects.
|
|
11207
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
11208
|
+
*
|
|
11209
|
+
* @example
|
|
11210
|
+
* ```typescript
|
|
11211
|
+
* // Iterating through all keys
|
|
11212
|
+
* for (const key of KEYS_HTTP_REDIRECT_REMOVE) {
|
|
11213
|
+
* console.log(`Property: ${key}, Value: ${httpredirectremove[key]}`);
|
|
11214
|
+
* }
|
|
11215
|
+
*
|
|
11216
|
+
* // Validation
|
|
11217
|
+
* const isValidKey = KEYS_HTTP_REDIRECT_REMOVE.includes(someKey);
|
|
11218
|
+
* ```
|
|
11219
|
+
*
|
|
11220
|
+
* @see {@link HttpRedirectRemove} - The TypeScript type definition
|
|
11221
|
+
*/
|
|
11222
|
+
export const KEYS_HTTP_REDIRECT_REMOVE = [
|
|
11223
|
+
KEY_HTTP_REDIRECT_REMOVE_REQUEST_HOSTNAME,
|
|
11224
|
+
KEY_HTTP_REDIRECT_REMOVE_REQUEST_PATH,
|
|
11225
|
+
KEY_HTTP_REDIRECT_REMOVE_REQUEST_PROTOCOL,
|
|
11226
|
+
KEY_HTTP_REDIRECT_REMOVE_REQUEST_SUBDOMAIN,
|
|
11227
|
+
] as const satisfies (keyof HttpRedirectRemove)[];
|
|
11228
|
+
|
|
11229
|
+
/**
|
|
11230
|
+
* redirect_code property
|
|
11231
|
+
*
|
|
11232
|
+
*
|
|
11233
|
+
*
|
|
11234
|
+
*
|
|
11235
|
+
* @remarks
|
|
11236
|
+
* This key constant provides type-safe access to the `redirect_code` property of HttpRedirectRequest objects.
|
|
11237
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11238
|
+
*
|
|
11239
|
+
* @example
|
|
11240
|
+
* ```typescript
|
|
11241
|
+
* // Direct property access
|
|
11242
|
+
* const value = httpredirectrequest[KEY_HTTP_REDIRECT_REQUEST_REDIRECT_CODE];
|
|
11243
|
+
*
|
|
11244
|
+
* // Dynamic property access
|
|
11245
|
+
* const propertyName = KEY_HTTP_REDIRECT_REQUEST_REDIRECT_CODE;
|
|
11246
|
+
* const value = httpredirectrequest[propertyName];
|
|
11247
|
+
* ```
|
|
11248
|
+
*
|
|
11249
|
+
* @see {@link HttpRedirectRequest} - The TypeScript type definition
|
|
11250
|
+
* @see {@link KEYS_HTTP_REDIRECT_REQUEST} - Array of all keys for this type
|
|
11251
|
+
*/
|
|
11252
|
+
export const KEY_HTTP_REDIRECT_REQUEST_REDIRECT_CODE = 'redirect_code' as keyof HttpRedirectRequest;
|
|
11253
|
+
/**
|
|
11254
|
+
* Request Path
|
|
11255
|
+
*
|
|
11256
|
+
*
|
|
11257
|
+
* @type {string}
|
|
11258
|
+
*
|
|
11259
|
+
*
|
|
11260
|
+
* @remarks
|
|
11261
|
+
* This key constant provides type-safe access to the `request_path` property of HttpRedirectRequest objects.
|
|
11262
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11263
|
+
*
|
|
11264
|
+
* @example
|
|
11265
|
+
* ```typescript
|
|
11266
|
+
* // Direct property access
|
|
11267
|
+
* const value = httpredirectrequest[KEY_HTTP_REDIRECT_REQUEST_REQUEST_PATH];
|
|
11268
|
+
*
|
|
11269
|
+
* // Dynamic property access
|
|
11270
|
+
* const propertyName = KEY_HTTP_REDIRECT_REQUEST_REQUEST_PATH;
|
|
11271
|
+
* const value = httpredirectrequest[propertyName];
|
|
11272
|
+
* ```
|
|
11273
|
+
*
|
|
11274
|
+
* @see {@link HttpRedirectRequest} - The TypeScript type definition
|
|
11275
|
+
* @see {@link KEYS_HTTP_REDIRECT_REQUEST} - Array of all keys for this type
|
|
11276
|
+
*/
|
|
11277
|
+
export const KEY_HTTP_REDIRECT_REQUEST_REQUEST_PATH = 'request_path' as keyof HttpRedirectRequest;
|
|
11278
|
+
/**
|
|
11279
|
+
* Target Hostname
|
|
11280
|
+
*
|
|
11281
|
+
*
|
|
11282
|
+
* @type {string}
|
|
11283
|
+
*
|
|
11284
|
+
*
|
|
11285
|
+
* @remarks
|
|
11286
|
+
* This key constant provides type-safe access to the `target_hostname` property of HttpRedirectRequest objects.
|
|
11287
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11288
|
+
*
|
|
11289
|
+
* @example
|
|
11290
|
+
* ```typescript
|
|
11291
|
+
* // Direct property access
|
|
11292
|
+
* const value = httpredirectrequest[KEY_HTTP_REDIRECT_REQUEST_TARGET_HOSTNAME];
|
|
11293
|
+
*
|
|
11294
|
+
* // Dynamic property access
|
|
11295
|
+
* const propertyName = KEY_HTTP_REDIRECT_REQUEST_TARGET_HOSTNAME;
|
|
11296
|
+
* const value = httpredirectrequest[propertyName];
|
|
11297
|
+
* ```
|
|
11298
|
+
*
|
|
11299
|
+
* @see {@link HttpRedirectRequest} - The TypeScript type definition
|
|
11300
|
+
* @see {@link KEYS_HTTP_REDIRECT_REQUEST} - Array of all keys for this type
|
|
11301
|
+
*/
|
|
11302
|
+
export const KEY_HTTP_REDIRECT_REQUEST_TARGET_HOSTNAME = 'target_hostname' as keyof HttpRedirectRequest;
|
|
10436
11303
|
/**
|
|
10437
|
-
*
|
|
11304
|
+
* Target Path
|
|
10438
11305
|
*
|
|
10439
11306
|
*
|
|
10440
11307
|
* @type {string}
|
|
10441
11308
|
*
|
|
10442
11309
|
*
|
|
10443
11310
|
* @remarks
|
|
10444
|
-
* This key constant provides type-safe access to the `
|
|
11311
|
+
* This key constant provides type-safe access to the `target_path` property of HttpRedirectRequest objects.
|
|
10445
11312
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10446
11313
|
*
|
|
10447
11314
|
* @example
|
|
10448
11315
|
* ```typescript
|
|
10449
11316
|
* // Direct property access
|
|
10450
|
-
* const value =
|
|
11317
|
+
* const value = httpredirectrequest[KEY_HTTP_REDIRECT_REQUEST_TARGET_PATH];
|
|
10451
11318
|
*
|
|
10452
11319
|
* // Dynamic property access
|
|
10453
|
-
* const propertyName =
|
|
10454
|
-
* const value =
|
|
11320
|
+
* const propertyName = KEY_HTTP_REDIRECT_REQUEST_TARGET_PATH;
|
|
11321
|
+
* const value = httpredirectrequest[propertyName];
|
|
10455
11322
|
* ```
|
|
10456
11323
|
*
|
|
10457
|
-
* @see {@link
|
|
10458
|
-
* @see {@link
|
|
11324
|
+
* @see {@link HttpRedirectRequest} - The TypeScript type definition
|
|
11325
|
+
* @see {@link KEYS_HTTP_REDIRECT_REQUEST} - Array of all keys for this type
|
|
10459
11326
|
*/
|
|
10460
|
-
export const
|
|
11327
|
+
export const KEY_HTTP_REDIRECT_REQUEST_TARGET_PATH = 'target_path' as keyof HttpRedirectRequest;
|
|
10461
11328
|
/**
|
|
10462
|
-
*
|
|
11329
|
+
* target_protocol property
|
|
10463
11330
|
*
|
|
10464
11331
|
*
|
|
10465
|
-
* @type {string}
|
|
10466
11332
|
*
|
|
10467
11333
|
*
|
|
10468
11334
|
* @remarks
|
|
10469
|
-
* This key constant provides type-safe access to the `
|
|
11335
|
+
* This key constant provides type-safe access to the `target_protocol` property of HttpRedirectRequest objects.
|
|
10470
11336
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10471
11337
|
*
|
|
10472
11338
|
* @example
|
|
10473
11339
|
* ```typescript
|
|
10474
11340
|
* // Direct property access
|
|
10475
|
-
* const value =
|
|
11341
|
+
* const value = httpredirectrequest[KEY_HTTP_REDIRECT_REQUEST_TARGET_PROTOCOL];
|
|
10476
11342
|
*
|
|
10477
11343
|
* // Dynamic property access
|
|
10478
|
-
* const propertyName =
|
|
10479
|
-
* const value =
|
|
11344
|
+
* const propertyName = KEY_HTTP_REDIRECT_REQUEST_TARGET_PROTOCOL;
|
|
11345
|
+
* const value = httpredirectrequest[propertyName];
|
|
10480
11346
|
* ```
|
|
10481
11347
|
*
|
|
10482
|
-
* @see {@link
|
|
10483
|
-
* @see {@link
|
|
11348
|
+
* @see {@link HttpRedirectRequest} - The TypeScript type definition
|
|
11349
|
+
* @see {@link KEYS_HTTP_REDIRECT_REQUEST} - Array of all keys for this type
|
|
10484
11350
|
*/
|
|
10485
|
-
export const
|
|
11351
|
+
export const KEY_HTTP_REDIRECT_REQUEST_TARGET_PROTOCOL = 'target_protocol' as keyof HttpRedirectRequest;
|
|
10486
11352
|
|
|
10487
11353
|
/**
|
|
10488
|
-
* Array of all
|
|
11354
|
+
* Array of all HttpRedirectRequest property keys
|
|
10489
11355
|
*
|
|
10490
11356
|
* @remarks
|
|
10491
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
11357
|
+
* This constant provides a readonly array containing all valid property keys for HttpRedirectRequest objects.
|
|
10492
11358
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
10493
11359
|
*
|
|
10494
11360
|
* @example
|
|
10495
11361
|
* ```typescript
|
|
10496
11362
|
* // Iterating through all keys
|
|
10497
|
-
* for (const key of
|
|
10498
|
-
* console.log(`Property: ${key}, Value: ${
|
|
11363
|
+
* for (const key of KEYS_HTTP_REDIRECT_REQUEST) {
|
|
11364
|
+
* console.log(`Property: ${key}, Value: ${httpredirectrequest[key]}`);
|
|
10499
11365
|
* }
|
|
10500
11366
|
*
|
|
10501
11367
|
* // Validation
|
|
10502
|
-
* const isValidKey =
|
|
11368
|
+
* const isValidKey = KEYS_HTTP_REDIRECT_REQUEST.includes(someKey);
|
|
10503
11369
|
* ```
|
|
10504
11370
|
*
|
|
10505
|
-
* @see {@link
|
|
11371
|
+
* @see {@link HttpRedirectRequest} - The TypeScript type definition
|
|
10506
11372
|
*/
|
|
10507
|
-
export const
|
|
10508
|
-
|
|
10509
|
-
|
|
10510
|
-
|
|
10511
|
-
|
|
10512
|
-
|
|
11373
|
+
export const KEYS_HTTP_REDIRECT_REQUEST = [
|
|
11374
|
+
KEY_HTTP_REDIRECT_REQUEST_REDIRECT_CODE,
|
|
11375
|
+
KEY_HTTP_REDIRECT_REQUEST_REQUEST_PATH,
|
|
11376
|
+
KEY_HTTP_REDIRECT_REQUEST_TARGET_HOSTNAME,
|
|
11377
|
+
KEY_HTTP_REDIRECT_REQUEST_TARGET_PATH,
|
|
11378
|
+
KEY_HTTP_REDIRECT_REQUEST_TARGET_PROTOCOL,
|
|
11379
|
+
] as const satisfies (keyof HttpRedirectRequest)[];
|
|
10513
11380
|
|
|
10514
11381
|
/**
|
|
10515
11382
|
* redirect_code property
|
|
@@ -10518,275 +11385,226 @@ export const KEYS_H_T_T_P_VALIDATION_ERROR = [
|
|
|
10518
11385
|
*
|
|
10519
11386
|
*
|
|
10520
11387
|
* @remarks
|
|
10521
|
-
* This key constant provides type-safe access to the `redirect_code` property of
|
|
11388
|
+
* This key constant provides type-safe access to the `redirect_code` property of HttpRedirectUpsert objects.
|
|
10522
11389
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10523
11390
|
*
|
|
10524
11391
|
* @example
|
|
10525
11392
|
* ```typescript
|
|
10526
11393
|
* // Direct property access
|
|
10527
|
-
* const value =
|
|
11394
|
+
* const value = httpredirectupsert[KEY_HTTP_REDIRECT_UPSERT_REDIRECT_CODE];
|
|
10528
11395
|
*
|
|
10529
11396
|
* // Dynamic property access
|
|
10530
|
-
* const propertyName =
|
|
10531
|
-
* const value =
|
|
11397
|
+
* const propertyName = KEY_HTTP_REDIRECT_UPSERT_REDIRECT_CODE;
|
|
11398
|
+
* const value = httpredirectupsert[propertyName];
|
|
10532
11399
|
* ```
|
|
10533
11400
|
*
|
|
10534
|
-
* @see {@link
|
|
10535
|
-
* @see {@link
|
|
11401
|
+
* @see {@link HttpRedirectUpsert} - The TypeScript type definition
|
|
11402
|
+
* @see {@link KEYS_HTTP_REDIRECT_UPSERT} - Array of all keys for this type
|
|
10536
11403
|
*/
|
|
10537
|
-
export const
|
|
11404
|
+
export const KEY_HTTP_REDIRECT_UPSERT_REDIRECT_CODE = 'redirect_code' as keyof HttpRedirectUpsert;
|
|
10538
11405
|
/**
|
|
10539
|
-
* Request
|
|
11406
|
+
* Request Hostname
|
|
10540
11407
|
*
|
|
10541
11408
|
*
|
|
10542
11409
|
* @type {string}
|
|
10543
11410
|
*
|
|
10544
11411
|
*
|
|
10545
11412
|
* @remarks
|
|
10546
|
-
* This key constant provides type-safe access to the `
|
|
10547
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10548
|
-
*
|
|
10549
|
-
* @example
|
|
10550
|
-
* ```typescript
|
|
10551
|
-
* // Direct property access
|
|
10552
|
-
* const value = httpredirect[KEY_HTTP_REDIRECT_REQUEST_PATH];
|
|
10553
|
-
*
|
|
10554
|
-
* // Dynamic property access
|
|
10555
|
-
* const propertyName = KEY_HTTP_REDIRECT_REQUEST_PATH;
|
|
10556
|
-
* const value = httpredirect[propertyName];
|
|
10557
|
-
* ```
|
|
10558
|
-
*
|
|
10559
|
-
* @see {@link HttpRedirect} - The TypeScript type definition
|
|
10560
|
-
* @see {@link KEYS_HTTP_REDIRECT} - Array of all keys for this type
|
|
10561
|
-
*/
|
|
10562
|
-
export const KEY_HTTP_REDIRECT_REQUEST_PATH = 'request_path' as keyof HttpRedirect;
|
|
10563
|
-
/**
|
|
10564
|
-
* Request Subdomain
|
|
10565
|
-
*
|
|
10566
|
-
*
|
|
10567
|
-
*
|
|
10568
|
-
*
|
|
10569
|
-
* @remarks
|
|
10570
|
-
* This key constant provides type-safe access to the `request_subdomain` property of HttpRedirect objects.
|
|
11413
|
+
* This key constant provides type-safe access to the `request_hostname` property of HttpRedirectUpsert objects.
|
|
10571
11414
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10572
11415
|
*
|
|
10573
11416
|
* @example
|
|
10574
11417
|
* ```typescript
|
|
10575
11418
|
* // Direct property access
|
|
10576
|
-
* const value =
|
|
11419
|
+
* const value = httpredirectupsert[KEY_HTTP_REDIRECT_UPSERT_REQUEST_HOSTNAME];
|
|
10577
11420
|
*
|
|
10578
11421
|
* // Dynamic property access
|
|
10579
|
-
* const propertyName =
|
|
10580
|
-
* const value =
|
|
11422
|
+
* const propertyName = KEY_HTTP_REDIRECT_UPSERT_REQUEST_HOSTNAME;
|
|
11423
|
+
* const value = httpredirectupsert[propertyName];
|
|
10581
11424
|
* ```
|
|
10582
11425
|
*
|
|
10583
|
-
* @see {@link
|
|
10584
|
-
* @see {@link
|
|
11426
|
+
* @see {@link HttpRedirectUpsert} - The TypeScript type definition
|
|
11427
|
+
* @see {@link KEYS_HTTP_REDIRECT_UPSERT} - Array of all keys for this type
|
|
10585
11428
|
*/
|
|
10586
|
-
export const
|
|
11429
|
+
export const KEY_HTTP_REDIRECT_UPSERT_REQUEST_HOSTNAME = 'request_hostname' as keyof HttpRedirectUpsert;
|
|
10587
11430
|
/**
|
|
10588
|
-
*
|
|
11431
|
+
* Request Path
|
|
10589
11432
|
*
|
|
10590
11433
|
*
|
|
10591
11434
|
* @type {string}
|
|
10592
11435
|
*
|
|
10593
11436
|
*
|
|
10594
11437
|
* @remarks
|
|
10595
|
-
* This key constant provides type-safe access to the `
|
|
11438
|
+
* This key constant provides type-safe access to the `request_path` property of HttpRedirectUpsert objects.
|
|
10596
11439
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10597
11440
|
*
|
|
10598
11441
|
* @example
|
|
10599
11442
|
* ```typescript
|
|
10600
11443
|
* // Direct property access
|
|
10601
|
-
* const value =
|
|
11444
|
+
* const value = httpredirectupsert[KEY_HTTP_REDIRECT_UPSERT_REQUEST_PATH];
|
|
10602
11445
|
*
|
|
10603
11446
|
* // Dynamic property access
|
|
10604
|
-
* const propertyName =
|
|
10605
|
-
* const value =
|
|
11447
|
+
* const propertyName = KEY_HTTP_REDIRECT_UPSERT_REQUEST_PATH;
|
|
11448
|
+
* const value = httpredirectupsert[propertyName];
|
|
10606
11449
|
* ```
|
|
10607
11450
|
*
|
|
10608
|
-
* @see {@link
|
|
10609
|
-
* @see {@link
|
|
11451
|
+
* @see {@link HttpRedirectUpsert} - The TypeScript type definition
|
|
11452
|
+
* @see {@link KEYS_HTTP_REDIRECT_UPSERT} - Array of all keys for this type
|
|
10610
11453
|
*/
|
|
10611
|
-
export const
|
|
11454
|
+
export const KEY_HTTP_REDIRECT_UPSERT_REQUEST_PATH = 'request_path' as keyof HttpRedirectUpsert;
|
|
10612
11455
|
/**
|
|
10613
|
-
*
|
|
11456
|
+
* request_protocol property
|
|
10614
11457
|
*
|
|
10615
11458
|
*
|
|
10616
|
-
* @type {string}
|
|
10617
11459
|
*
|
|
10618
11460
|
*
|
|
10619
11461
|
* @remarks
|
|
10620
|
-
* This key constant provides type-safe access to the `
|
|
11462
|
+
* This key constant provides type-safe access to the `request_protocol` property of HttpRedirectUpsert objects.
|
|
10621
11463
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10622
11464
|
*
|
|
10623
11465
|
* @example
|
|
10624
11466
|
* ```typescript
|
|
10625
11467
|
* // Direct property access
|
|
10626
|
-
* const value =
|
|
11468
|
+
* const value = httpredirectupsert[KEY_HTTP_REDIRECT_UPSERT_REQUEST_PROTOCOL];
|
|
10627
11469
|
*
|
|
10628
11470
|
* // Dynamic property access
|
|
10629
|
-
* const propertyName =
|
|
10630
|
-
* const value =
|
|
11471
|
+
* const propertyName = KEY_HTTP_REDIRECT_UPSERT_REQUEST_PROTOCOL;
|
|
11472
|
+
* const value = httpredirectupsert[propertyName];
|
|
10631
11473
|
* ```
|
|
10632
11474
|
*
|
|
10633
|
-
* @see {@link
|
|
10634
|
-
* @see {@link
|
|
11475
|
+
* @see {@link HttpRedirectUpsert} - The TypeScript type definition
|
|
11476
|
+
* @see {@link KEYS_HTTP_REDIRECT_UPSERT} - Array of all keys for this type
|
|
10635
11477
|
*/
|
|
10636
|
-
export const
|
|
11478
|
+
export const KEY_HTTP_REDIRECT_UPSERT_REQUEST_PROTOCOL = 'request_protocol' as keyof HttpRedirectUpsert;
|
|
10637
11479
|
/**
|
|
10638
|
-
*
|
|
11480
|
+
* Request Subdomain
|
|
10639
11481
|
*
|
|
10640
11482
|
*
|
|
10641
11483
|
*
|
|
10642
11484
|
*
|
|
10643
11485
|
* @remarks
|
|
10644
|
-
* This key constant provides type-safe access to the `
|
|
11486
|
+
* This key constant provides type-safe access to the `request_subdomain` property of HttpRedirectUpsert objects.
|
|
10645
11487
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10646
11488
|
*
|
|
10647
11489
|
* @example
|
|
10648
11490
|
* ```typescript
|
|
10649
11491
|
* // Direct property access
|
|
10650
|
-
* const value =
|
|
11492
|
+
* const value = httpredirectupsert[KEY_HTTP_REDIRECT_UPSERT_REQUEST_SUBDOMAIN];
|
|
10651
11493
|
*
|
|
10652
11494
|
* // Dynamic property access
|
|
10653
|
-
* const propertyName =
|
|
10654
|
-
* const value =
|
|
11495
|
+
* const propertyName = KEY_HTTP_REDIRECT_UPSERT_REQUEST_SUBDOMAIN;
|
|
11496
|
+
* const value = httpredirectupsert[propertyName];
|
|
10655
11497
|
* ```
|
|
10656
11498
|
*
|
|
10657
|
-
* @see {@link
|
|
10658
|
-
* @see {@link
|
|
11499
|
+
* @see {@link HttpRedirectUpsert} - The TypeScript type definition
|
|
11500
|
+
* @see {@link KEYS_HTTP_REDIRECT_UPSERT} - Array of all keys for this type
|
|
10659
11501
|
*/
|
|
10660
|
-
export const
|
|
11502
|
+
export const KEY_HTTP_REDIRECT_UPSERT_REQUEST_SUBDOMAIN = 'request_subdomain' as keyof HttpRedirectUpsert;
|
|
10661
11503
|
/**
|
|
10662
|
-
* Target
|
|
11504
|
+
* Target Hostname
|
|
10663
11505
|
*
|
|
10664
11506
|
*
|
|
11507
|
+
* @type {string}
|
|
10665
11508
|
*
|
|
10666
11509
|
*
|
|
10667
11510
|
* @remarks
|
|
10668
|
-
* This key constant provides type-safe access to the `
|
|
11511
|
+
* This key constant provides type-safe access to the `target_hostname` property of HttpRedirectUpsert objects.
|
|
10669
11512
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10670
11513
|
*
|
|
10671
11514
|
* @example
|
|
10672
11515
|
* ```typescript
|
|
10673
11516
|
* // Direct property access
|
|
10674
|
-
* const value =
|
|
11517
|
+
* const value = httpredirectupsert[KEY_HTTP_REDIRECT_UPSERT_TARGET_HOSTNAME];
|
|
10675
11518
|
*
|
|
10676
11519
|
* // Dynamic property access
|
|
10677
|
-
* const propertyName =
|
|
10678
|
-
* const value =
|
|
10679
|
-
* ```
|
|
10680
|
-
*
|
|
10681
|
-
* @see {@link HttpRedirect} - The TypeScript type definition
|
|
10682
|
-
* @see {@link KEYS_HTTP_REDIRECT} - Array of all keys for this type
|
|
10683
|
-
*/
|
|
10684
|
-
export const KEY_HTTP_REDIRECT_TARGET_SUBDOMAIN = 'target_subdomain' as keyof HttpRedirect;
|
|
10685
|
-
|
|
10686
|
-
/**
|
|
10687
|
-
* Array of all HttpRedirect property keys
|
|
10688
|
-
*
|
|
10689
|
-
* @remarks
|
|
10690
|
-
* This constant provides a readonly array containing all valid property keys for HttpRedirect objects.
|
|
10691
|
-
* Useful for iteration, validation, and generating dynamic UI components.
|
|
10692
|
-
*
|
|
10693
|
-
* @example
|
|
10694
|
-
* ```typescript
|
|
10695
|
-
* // Iterating through all keys
|
|
10696
|
-
* for (const key of KEYS_HTTP_REDIRECT) {
|
|
10697
|
-
* console.log(`Property: ${key}, Value: ${httpredirect[key]}`);
|
|
10698
|
-
* }
|
|
10699
|
-
*
|
|
10700
|
-
* // Validation
|
|
10701
|
-
* const isValidKey = KEYS_HTTP_REDIRECT.includes(someKey);
|
|
11520
|
+
* const propertyName = KEY_HTTP_REDIRECT_UPSERT_TARGET_HOSTNAME;
|
|
11521
|
+
* const value = httpredirectupsert[propertyName];
|
|
10702
11522
|
* ```
|
|
10703
11523
|
*
|
|
10704
|
-
* @see {@link
|
|
11524
|
+
* @see {@link HttpRedirectUpsert} - The TypeScript type definition
|
|
11525
|
+
* @see {@link KEYS_HTTP_REDIRECT_UPSERT} - Array of all keys for this type
|
|
10705
11526
|
*/
|
|
10706
|
-
export const
|
|
10707
|
-
KEY_HTTP_REDIRECT_REDIRECT_CODE,
|
|
10708
|
-
KEY_HTTP_REDIRECT_REQUEST_PATH,
|
|
10709
|
-
KEY_HTTP_REDIRECT_REQUEST_SUBDOMAIN,
|
|
10710
|
-
KEY_HTTP_REDIRECT_TARGET_DOMAIN,
|
|
10711
|
-
KEY_HTTP_REDIRECT_TARGET_PATH,
|
|
10712
|
-
KEY_HTTP_REDIRECT_TARGET_PROTOCOL,
|
|
10713
|
-
KEY_HTTP_REDIRECT_TARGET_SUBDOMAIN,
|
|
10714
|
-
] as const satisfies (keyof HttpRedirect)[];
|
|
10715
|
-
|
|
11527
|
+
export const KEY_HTTP_REDIRECT_UPSERT_TARGET_HOSTNAME = 'target_hostname' as keyof HttpRedirectUpsert;
|
|
10716
11528
|
/**
|
|
10717
|
-
*
|
|
11529
|
+
* Target Path
|
|
10718
11530
|
*
|
|
10719
11531
|
*
|
|
10720
11532
|
* @type {string}
|
|
10721
11533
|
*
|
|
10722
11534
|
*
|
|
10723
11535
|
* @remarks
|
|
10724
|
-
* This key constant provides type-safe access to the `
|
|
11536
|
+
* This key constant provides type-safe access to the `target_path` property of HttpRedirectUpsert objects.
|
|
10725
11537
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10726
11538
|
*
|
|
10727
11539
|
* @example
|
|
10728
11540
|
* ```typescript
|
|
10729
11541
|
* // Direct property access
|
|
10730
|
-
* const value =
|
|
11542
|
+
* const value = httpredirectupsert[KEY_HTTP_REDIRECT_UPSERT_TARGET_PATH];
|
|
10731
11543
|
*
|
|
10732
11544
|
* // Dynamic property access
|
|
10733
|
-
* const propertyName =
|
|
10734
|
-
* const value =
|
|
11545
|
+
* const propertyName = KEY_HTTP_REDIRECT_UPSERT_TARGET_PATH;
|
|
11546
|
+
* const value = httpredirectupsert[propertyName];
|
|
10735
11547
|
* ```
|
|
10736
11548
|
*
|
|
10737
|
-
* @see {@link
|
|
10738
|
-
* @see {@link
|
|
11549
|
+
* @see {@link HttpRedirectUpsert} - The TypeScript type definition
|
|
11550
|
+
* @see {@link KEYS_HTTP_REDIRECT_UPSERT} - Array of all keys for this type
|
|
10739
11551
|
*/
|
|
10740
|
-
export const
|
|
11552
|
+
export const KEY_HTTP_REDIRECT_UPSERT_TARGET_PATH = 'target_path' as keyof HttpRedirectUpsert;
|
|
10741
11553
|
/**
|
|
10742
|
-
*
|
|
11554
|
+
* target_protocol property
|
|
10743
11555
|
*
|
|
10744
11556
|
*
|
|
10745
11557
|
*
|
|
10746
11558
|
*
|
|
10747
11559
|
* @remarks
|
|
10748
|
-
* This key constant provides type-safe access to the `
|
|
11560
|
+
* This key constant provides type-safe access to the `target_protocol` property of HttpRedirectUpsert objects.
|
|
10749
11561
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10750
11562
|
*
|
|
10751
11563
|
* @example
|
|
10752
11564
|
* ```typescript
|
|
10753
11565
|
* // Direct property access
|
|
10754
|
-
* const value =
|
|
11566
|
+
* const value = httpredirectupsert[KEY_HTTP_REDIRECT_UPSERT_TARGET_PROTOCOL];
|
|
10755
11567
|
*
|
|
10756
11568
|
* // Dynamic property access
|
|
10757
|
-
* const propertyName =
|
|
10758
|
-
* const value =
|
|
11569
|
+
* const propertyName = KEY_HTTP_REDIRECT_UPSERT_TARGET_PROTOCOL;
|
|
11570
|
+
* const value = httpredirectupsert[propertyName];
|
|
10759
11571
|
* ```
|
|
10760
11572
|
*
|
|
10761
|
-
* @see {@link
|
|
10762
|
-
* @see {@link
|
|
11573
|
+
* @see {@link HttpRedirectUpsert} - The TypeScript type definition
|
|
11574
|
+
* @see {@link KEYS_HTTP_REDIRECT_UPSERT} - Array of all keys for this type
|
|
10763
11575
|
*/
|
|
10764
|
-
export const
|
|
11576
|
+
export const KEY_HTTP_REDIRECT_UPSERT_TARGET_PROTOCOL = 'target_protocol' as keyof HttpRedirectUpsert;
|
|
10765
11577
|
|
|
10766
11578
|
/**
|
|
10767
|
-
* Array of all
|
|
11579
|
+
* Array of all HttpRedirectUpsert property keys
|
|
10768
11580
|
*
|
|
10769
11581
|
* @remarks
|
|
10770
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
11582
|
+
* This constant provides a readonly array containing all valid property keys for HttpRedirectUpsert objects.
|
|
10771
11583
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
10772
11584
|
*
|
|
10773
11585
|
* @example
|
|
10774
11586
|
* ```typescript
|
|
10775
11587
|
* // Iterating through all keys
|
|
10776
|
-
* for (const key of
|
|
10777
|
-
* console.log(`Property: ${key}, Value: ${
|
|
11588
|
+
* for (const key of KEYS_HTTP_REDIRECT_UPSERT) {
|
|
11589
|
+
* console.log(`Property: ${key}, Value: ${httpredirectupsert[key]}`);
|
|
10778
11590
|
* }
|
|
10779
11591
|
*
|
|
10780
11592
|
* // Validation
|
|
10781
|
-
* const isValidKey =
|
|
11593
|
+
* const isValidKey = KEYS_HTTP_REDIRECT_UPSERT.includes(someKey);
|
|
10782
11594
|
* ```
|
|
10783
11595
|
*
|
|
10784
|
-
* @see {@link
|
|
11596
|
+
* @see {@link HttpRedirectUpsert} - The TypeScript type definition
|
|
10785
11597
|
*/
|
|
10786
|
-
export const
|
|
10787
|
-
|
|
10788
|
-
|
|
10789
|
-
|
|
11598
|
+
export const KEYS_HTTP_REDIRECT_UPSERT = [
|
|
11599
|
+
KEY_HTTP_REDIRECT_UPSERT_REDIRECT_CODE,
|
|
11600
|
+
KEY_HTTP_REDIRECT_UPSERT_REQUEST_HOSTNAME,
|
|
11601
|
+
KEY_HTTP_REDIRECT_UPSERT_REQUEST_PATH,
|
|
11602
|
+
KEY_HTTP_REDIRECT_UPSERT_REQUEST_PROTOCOL,
|
|
11603
|
+
KEY_HTTP_REDIRECT_UPSERT_REQUEST_SUBDOMAIN,
|
|
11604
|
+
KEY_HTTP_REDIRECT_UPSERT_TARGET_HOSTNAME,
|
|
11605
|
+
KEY_HTTP_REDIRECT_UPSERT_TARGET_PATH,
|
|
11606
|
+
KEY_HTTP_REDIRECT_UPSERT_TARGET_PROTOCOL,
|
|
11607
|
+
] as const satisfies (keyof HttpRedirectUpsert)[];
|
|
10790
11608
|
|
|
10791
11609
|
/**
|
|
10792
11610
|
* Idn Capable
|
|
@@ -15579,56 +16397,6 @@ export const KEYS_PROBLEM = [
|
|
|
15579
16397
|
KEY_PROBLEM_TYPE,
|
|
15580
16398
|
] as const satisfies (keyof Problem)[];
|
|
15581
16399
|
|
|
15582
|
-
/**
|
|
15583
|
-
* Redirects
|
|
15584
|
-
*
|
|
15585
|
-
*
|
|
15586
|
-
* @type {array}
|
|
15587
|
-
*
|
|
15588
|
-
*
|
|
15589
|
-
* @remarks
|
|
15590
|
-
* This key constant provides type-safe access to the `redirects` property of ProtocolRedirects objects.
|
|
15591
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
15592
|
-
*
|
|
15593
|
-
* @example
|
|
15594
|
-
* ```typescript
|
|
15595
|
-
* // Direct property access
|
|
15596
|
-
* const value = protocolredirects[KEY_PROTOCOL_REDIRECTS_REDIRECTS];
|
|
15597
|
-
*
|
|
15598
|
-
* // Dynamic property access
|
|
15599
|
-
* const propertyName = KEY_PROTOCOL_REDIRECTS_REDIRECTS;
|
|
15600
|
-
* const value = protocolredirects[propertyName];
|
|
15601
|
-
* ```
|
|
15602
|
-
*
|
|
15603
|
-
* @see {@link ProtocolRedirects} - The TypeScript type definition
|
|
15604
|
-
* @see {@link KEYS_PROTOCOL_REDIRECTS} - Array of all keys for this type
|
|
15605
|
-
*/
|
|
15606
|
-
export const KEY_PROTOCOL_REDIRECTS_REDIRECTS = 'redirects' as keyof ProtocolRedirects;
|
|
15607
|
-
|
|
15608
|
-
/**
|
|
15609
|
-
* Array of all ProtocolRedirects property keys
|
|
15610
|
-
*
|
|
15611
|
-
* @remarks
|
|
15612
|
-
* This constant provides a readonly array containing all valid property keys for ProtocolRedirects objects.
|
|
15613
|
-
* Useful for iteration, validation, and generating dynamic UI components.
|
|
15614
|
-
*
|
|
15615
|
-
* @example
|
|
15616
|
-
* ```typescript
|
|
15617
|
-
* // Iterating through all keys
|
|
15618
|
-
* for (const key of KEYS_PROTOCOL_REDIRECTS) {
|
|
15619
|
-
* console.log(`Property: ${key}, Value: ${protocolredirects[key]}`);
|
|
15620
|
-
* }
|
|
15621
|
-
*
|
|
15622
|
-
* // Validation
|
|
15623
|
-
* const isValidKey = KEYS_PROTOCOL_REDIRECTS.includes(someKey);
|
|
15624
|
-
* ```
|
|
15625
|
-
*
|
|
15626
|
-
* @see {@link ProtocolRedirects} - The TypeScript type definition
|
|
15627
|
-
*/
|
|
15628
|
-
export const KEYS_PROTOCOL_REDIRECTS = [
|
|
15629
|
-
KEY_PROTOCOL_REDIRECTS_REDIRECTS,
|
|
15630
|
-
] as const satisfies (keyof ProtocolRedirects)[];
|
|
15631
|
-
|
|
15632
16400
|
/**
|
|
15633
16401
|
* Client Id
|
|
15634
16402
|
*
|
|
@@ -19391,6 +20159,184 @@ export const KEYS_WHOIS_BASE = [
|
|
|
19391
20159
|
KEY_WHOIS_BASE_WHOIS_SERVER,
|
|
19392
20160
|
] as const satisfies (keyof WhoisBase)[];
|
|
19393
20161
|
|
|
20162
|
+
/**
|
|
20163
|
+
* redirect_code property
|
|
20164
|
+
*
|
|
20165
|
+
*
|
|
20166
|
+
*
|
|
20167
|
+
*
|
|
20168
|
+
* @remarks
|
|
20169
|
+
* This key constant provides type-safe access to the `redirect_code` property of WildcardHttpRedirectRequest objects.
|
|
20170
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
20171
|
+
*
|
|
20172
|
+
* @example
|
|
20173
|
+
* ```typescript
|
|
20174
|
+
* // Direct property access
|
|
20175
|
+
* const value = wildcardhttpredirectrequest[KEY_WILDCARD_HTTP_REDIRECT_REQUEST_REDIRECT_CODE];
|
|
20176
|
+
*
|
|
20177
|
+
* // Dynamic property access
|
|
20178
|
+
* const propertyName = KEY_WILDCARD_HTTP_REDIRECT_REQUEST_REDIRECT_CODE;
|
|
20179
|
+
* const value = wildcardhttpredirectrequest[propertyName];
|
|
20180
|
+
* ```
|
|
20181
|
+
*
|
|
20182
|
+
* @see {@link WildcardHttpRedirectRequest} - The TypeScript type definition
|
|
20183
|
+
* @see {@link KEYS_WILDCARD_HTTP_REDIRECT_REQUEST} - Array of all keys for this type
|
|
20184
|
+
*/
|
|
20185
|
+
export const KEY_WILDCARD_HTTP_REDIRECT_REQUEST_REDIRECT_CODE = 'redirect_code' as keyof WildcardHttpRedirectRequest;
|
|
20186
|
+
/**
|
|
20187
|
+
* Request Path
|
|
20188
|
+
*
|
|
20189
|
+
*
|
|
20190
|
+
* @type {string}
|
|
20191
|
+
*
|
|
20192
|
+
*
|
|
20193
|
+
* @remarks
|
|
20194
|
+
* This key constant provides type-safe access to the `request_path` property of WildcardHttpRedirectRequest objects.
|
|
20195
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
20196
|
+
*
|
|
20197
|
+
* @example
|
|
20198
|
+
* ```typescript
|
|
20199
|
+
* // Direct property access
|
|
20200
|
+
* const value = wildcardhttpredirectrequest[KEY_WILDCARD_HTTP_REDIRECT_REQUEST_REQUEST_PATH];
|
|
20201
|
+
*
|
|
20202
|
+
* // Dynamic property access
|
|
20203
|
+
* const propertyName = KEY_WILDCARD_HTTP_REDIRECT_REQUEST_REQUEST_PATH;
|
|
20204
|
+
* const value = wildcardhttpredirectrequest[propertyName];
|
|
20205
|
+
* ```
|
|
20206
|
+
*
|
|
20207
|
+
* @see {@link WildcardHttpRedirectRequest} - The TypeScript type definition
|
|
20208
|
+
* @see {@link KEYS_WILDCARD_HTTP_REDIRECT_REQUEST} - Array of all keys for this type
|
|
20209
|
+
*/
|
|
20210
|
+
export const KEY_WILDCARD_HTTP_REDIRECT_REQUEST_REQUEST_PATH = 'request_path' as keyof WildcardHttpRedirectRequest;
|
|
20211
|
+
/**
|
|
20212
|
+
* Request Subdomain
|
|
20213
|
+
*
|
|
20214
|
+
*
|
|
20215
|
+
* @type {string}
|
|
20216
|
+
*
|
|
20217
|
+
*
|
|
20218
|
+
* @remarks
|
|
20219
|
+
* This key constant provides type-safe access to the `request_subdomain` property of WildcardHttpRedirectRequest objects.
|
|
20220
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
20221
|
+
*
|
|
20222
|
+
* @example
|
|
20223
|
+
* ```typescript
|
|
20224
|
+
* // Direct property access
|
|
20225
|
+
* const value = wildcardhttpredirectrequest[KEY_WILDCARD_HTTP_REDIRECT_REQUEST_REQUEST_SUBDOMAIN];
|
|
20226
|
+
*
|
|
20227
|
+
* // Dynamic property access
|
|
20228
|
+
* const propertyName = KEY_WILDCARD_HTTP_REDIRECT_REQUEST_REQUEST_SUBDOMAIN;
|
|
20229
|
+
* const value = wildcardhttpredirectrequest[propertyName];
|
|
20230
|
+
* ```
|
|
20231
|
+
*
|
|
20232
|
+
* @see {@link WildcardHttpRedirectRequest} - The TypeScript type definition
|
|
20233
|
+
* @see {@link KEYS_WILDCARD_HTTP_REDIRECT_REQUEST} - Array of all keys for this type
|
|
20234
|
+
*/
|
|
20235
|
+
export const KEY_WILDCARD_HTTP_REDIRECT_REQUEST_REQUEST_SUBDOMAIN = 'request_subdomain' as keyof WildcardHttpRedirectRequest;
|
|
20236
|
+
/**
|
|
20237
|
+
* Target Hostname
|
|
20238
|
+
*
|
|
20239
|
+
*
|
|
20240
|
+
* @type {string}
|
|
20241
|
+
*
|
|
20242
|
+
*
|
|
20243
|
+
* @remarks
|
|
20244
|
+
* This key constant provides type-safe access to the `target_hostname` property of WildcardHttpRedirectRequest objects.
|
|
20245
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
20246
|
+
*
|
|
20247
|
+
* @example
|
|
20248
|
+
* ```typescript
|
|
20249
|
+
* // Direct property access
|
|
20250
|
+
* const value = wildcardhttpredirectrequest[KEY_WILDCARD_HTTP_REDIRECT_REQUEST_TARGET_HOSTNAME];
|
|
20251
|
+
*
|
|
20252
|
+
* // Dynamic property access
|
|
20253
|
+
* const propertyName = KEY_WILDCARD_HTTP_REDIRECT_REQUEST_TARGET_HOSTNAME;
|
|
20254
|
+
* const value = wildcardhttpredirectrequest[propertyName];
|
|
20255
|
+
* ```
|
|
20256
|
+
*
|
|
20257
|
+
* @see {@link WildcardHttpRedirectRequest} - The TypeScript type definition
|
|
20258
|
+
* @see {@link KEYS_WILDCARD_HTTP_REDIRECT_REQUEST} - Array of all keys for this type
|
|
20259
|
+
*/
|
|
20260
|
+
export const KEY_WILDCARD_HTTP_REDIRECT_REQUEST_TARGET_HOSTNAME = 'target_hostname' as keyof WildcardHttpRedirectRequest;
|
|
20261
|
+
/**
|
|
20262
|
+
* Target Path
|
|
20263
|
+
*
|
|
20264
|
+
*
|
|
20265
|
+
* @type {string}
|
|
20266
|
+
*
|
|
20267
|
+
*
|
|
20268
|
+
* @remarks
|
|
20269
|
+
* This key constant provides type-safe access to the `target_path` property of WildcardHttpRedirectRequest objects.
|
|
20270
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
20271
|
+
*
|
|
20272
|
+
* @example
|
|
20273
|
+
* ```typescript
|
|
20274
|
+
* // Direct property access
|
|
20275
|
+
* const value = wildcardhttpredirectrequest[KEY_WILDCARD_HTTP_REDIRECT_REQUEST_TARGET_PATH];
|
|
20276
|
+
*
|
|
20277
|
+
* // Dynamic property access
|
|
20278
|
+
* const propertyName = KEY_WILDCARD_HTTP_REDIRECT_REQUEST_TARGET_PATH;
|
|
20279
|
+
* const value = wildcardhttpredirectrequest[propertyName];
|
|
20280
|
+
* ```
|
|
20281
|
+
*
|
|
20282
|
+
* @see {@link WildcardHttpRedirectRequest} - The TypeScript type definition
|
|
20283
|
+
* @see {@link KEYS_WILDCARD_HTTP_REDIRECT_REQUEST} - Array of all keys for this type
|
|
20284
|
+
*/
|
|
20285
|
+
export const KEY_WILDCARD_HTTP_REDIRECT_REQUEST_TARGET_PATH = 'target_path' as keyof WildcardHttpRedirectRequest;
|
|
20286
|
+
/**
|
|
20287
|
+
* target_protocol property
|
|
20288
|
+
*
|
|
20289
|
+
*
|
|
20290
|
+
*
|
|
20291
|
+
*
|
|
20292
|
+
* @remarks
|
|
20293
|
+
* This key constant provides type-safe access to the `target_protocol` property of WildcardHttpRedirectRequest objects.
|
|
20294
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
20295
|
+
*
|
|
20296
|
+
* @example
|
|
20297
|
+
* ```typescript
|
|
20298
|
+
* // Direct property access
|
|
20299
|
+
* const value = wildcardhttpredirectrequest[KEY_WILDCARD_HTTP_REDIRECT_REQUEST_TARGET_PROTOCOL];
|
|
20300
|
+
*
|
|
20301
|
+
* // Dynamic property access
|
|
20302
|
+
* const propertyName = KEY_WILDCARD_HTTP_REDIRECT_REQUEST_TARGET_PROTOCOL;
|
|
20303
|
+
* const value = wildcardhttpredirectrequest[propertyName];
|
|
20304
|
+
* ```
|
|
20305
|
+
*
|
|
20306
|
+
* @see {@link WildcardHttpRedirectRequest} - The TypeScript type definition
|
|
20307
|
+
* @see {@link KEYS_WILDCARD_HTTP_REDIRECT_REQUEST} - Array of all keys for this type
|
|
20308
|
+
*/
|
|
20309
|
+
export const KEY_WILDCARD_HTTP_REDIRECT_REQUEST_TARGET_PROTOCOL = 'target_protocol' as keyof WildcardHttpRedirectRequest;
|
|
20310
|
+
|
|
20311
|
+
/**
|
|
20312
|
+
* Array of all WildcardHttpRedirectRequest property keys
|
|
20313
|
+
*
|
|
20314
|
+
* @remarks
|
|
20315
|
+
* This constant provides a readonly array containing all valid property keys for WildcardHttpRedirectRequest objects.
|
|
20316
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
20317
|
+
*
|
|
20318
|
+
* @example
|
|
20319
|
+
* ```typescript
|
|
20320
|
+
* // Iterating through all keys
|
|
20321
|
+
* for (const key of KEYS_WILDCARD_HTTP_REDIRECT_REQUEST) {
|
|
20322
|
+
* console.log(`Property: ${key}, Value: ${wildcardhttpredirectrequest[key]}`);
|
|
20323
|
+
* }
|
|
20324
|
+
*
|
|
20325
|
+
* // Validation
|
|
20326
|
+
* const isValidKey = KEYS_WILDCARD_HTTP_REDIRECT_REQUEST.includes(someKey);
|
|
20327
|
+
* ```
|
|
20328
|
+
*
|
|
20329
|
+
* @see {@link WildcardHttpRedirectRequest} - The TypeScript type definition
|
|
20330
|
+
*/
|
|
20331
|
+
export const KEYS_WILDCARD_HTTP_REDIRECT_REQUEST = [
|
|
20332
|
+
KEY_WILDCARD_HTTP_REDIRECT_REQUEST_REDIRECT_CODE,
|
|
20333
|
+
KEY_WILDCARD_HTTP_REDIRECT_REQUEST_REQUEST_PATH,
|
|
20334
|
+
KEY_WILDCARD_HTTP_REDIRECT_REQUEST_REQUEST_SUBDOMAIN,
|
|
20335
|
+
KEY_WILDCARD_HTTP_REDIRECT_REQUEST_TARGET_HOSTNAME,
|
|
20336
|
+
KEY_WILDCARD_HTTP_REDIRECT_REQUEST_TARGET_PATH,
|
|
20337
|
+
KEY_WILDCARD_HTTP_REDIRECT_REQUEST_TARGET_PROTOCOL,
|
|
20338
|
+
] as const satisfies (keyof WildcardHttpRedirectRequest)[];
|
|
20339
|
+
|
|
19394
20340
|
/**
|
|
19395
20341
|
* meta property
|
|
19396
20342
|
*
|