@opusdns/api 0.139.0 → 0.141.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/helpers/constants.ts +159 -1
- package/src/helpers/keys.ts +1398 -268
- package/src/helpers/requests.d.ts +388 -8
- package/src/helpers/responses.d.ts +559 -7
- package/src/helpers/schemas-arrays.d.ts +113 -1
- package/src/helpers/schemas.d.ts +326 -6
- package/src/openapi.yaml +764 -198
- package/src/schema.d.ts +629 -39
package/src/helpers/keys.ts
CHANGED
|
@@ -33,6 +33,7 @@ import { AllowedNumberOfNameserverBase } from './schemas';
|
|
|
33
33
|
import { BillingMetadata } from './schemas';
|
|
34
34
|
import { BillingPlan } from './schemas';
|
|
35
35
|
import { BillingTransaction } from './schemas';
|
|
36
|
+
import { BrowserStatsBucket } from './schemas';
|
|
36
37
|
import { ContactAttributeDefinition } from './schemas';
|
|
37
38
|
import { ContactConfigBase } from './schemas';
|
|
38
39
|
import { ContactCreate } from './schemas';
|
|
@@ -70,14 +71,23 @@ import { DomainCreate } from './schemas';
|
|
|
70
71
|
import { DomainDnssecDataCreate } from './schemas';
|
|
71
72
|
import { DomainDnssecData } from './schemas';
|
|
72
73
|
import { DomainForward } from './schemas';
|
|
74
|
+
import { DomainForwardBrowserStats } from './schemas';
|
|
73
75
|
import { DomainForwardCreateRequest } from './schemas';
|
|
76
|
+
import { DomainForwardGeoStats } from './schemas';
|
|
77
|
+
import { DomainForwardMetrics } from './schemas';
|
|
78
|
+
import { DomainForwardMetricsTimeSeries } from './schemas';
|
|
74
79
|
import { DomainForwardPatchOp } from './schemas';
|
|
75
80
|
import { DomainForwardPatchOps } from './schemas';
|
|
81
|
+
import { DomainForwardPlatformStats } from './schemas';
|
|
76
82
|
import { DomainForwardProtocolSetRequest } from './schemas';
|
|
77
83
|
import { DomainForwardProtocolSet } from './schemas';
|
|
78
|
-
import {
|
|
84
|
+
import { DomainForwardReferrerStats } from './schemas';
|
|
85
|
+
import { DomainForwardSetCreateRequest } from './schemas';
|
|
79
86
|
import { DomainForwardSetRequest } from './schemas';
|
|
80
87
|
import { DomainForwardSet } from './schemas';
|
|
88
|
+
import { DomainForwardStatusCodeStats } from './schemas';
|
|
89
|
+
import { DomainForwardUserAgentStats } from './schemas';
|
|
90
|
+
import { DomainForwardVisitsByKey } from './schemas';
|
|
81
91
|
import { DomainForwardZone } from './schemas';
|
|
82
92
|
import { DomainHost } from './schemas';
|
|
83
93
|
import { DomainLifecycleBase } from './schemas';
|
|
@@ -114,6 +124,7 @@ import { EmailForwardZone } from './schemas';
|
|
|
114
124
|
import { EventResponse } from './schemas';
|
|
115
125
|
import { EventSchema } from './schemas';
|
|
116
126
|
import { GeneralAvailabilityBase } from './schemas';
|
|
127
|
+
import { GeoStatsBucket } from './schemas';
|
|
117
128
|
import { GetPrices } from './schemas';
|
|
118
129
|
import { HTTPValidationError } from './schemas';
|
|
119
130
|
import { HostSchema } from './schemas';
|
|
@@ -144,12 +155,14 @@ import { PaginationMetadata } from './schemas';
|
|
|
144
155
|
import { PasswordUpdate } from './schemas';
|
|
145
156
|
import { Period } from './schemas';
|
|
146
157
|
import { PermissionSet } from './schemas';
|
|
158
|
+
import { PlatformStatsBucket } from './schemas';
|
|
147
159
|
import { PremiumDomainsBase } from './schemas';
|
|
148
160
|
import { PriceInfo } from './schemas';
|
|
149
161
|
import { PricingPeriod } from './schemas';
|
|
150
162
|
import { Problem } from './schemas';
|
|
151
163
|
import { PublicAuthRequestForm } from './schemas';
|
|
152
164
|
import { RdapBase } from './schemas';
|
|
165
|
+
import { ReferrerStatsBucket } from './schemas';
|
|
153
166
|
import { RegistryLockBase } from './schemas';
|
|
154
167
|
import { RelationSet } from './schemas';
|
|
155
168
|
import { RenewalEvent } from './schemas';
|
|
@@ -158,6 +171,8 @@ import { ReservedDomainsBase } from './schemas';
|
|
|
158
171
|
import { RgpOperations } from './schemas';
|
|
159
172
|
import { SldLength } from './schemas';
|
|
160
173
|
import { SpiceDbRelationshipUpdate } from './schemas';
|
|
174
|
+
import { StatusCodeStatsBucket } from './schemas';
|
|
175
|
+
import { TimeSeriesBucket } from './schemas';
|
|
161
176
|
import { TldBase } from './schemas';
|
|
162
177
|
import { TldResponseShort } from './schemas';
|
|
163
178
|
import { TldSpecification } from './schemas';
|
|
@@ -166,6 +181,7 @@ import { TransferEvent } from './schemas';
|
|
|
166
181
|
import { TransferLockPolicyBase } from './schemas';
|
|
167
182
|
import { TransferPoliciesBase } from './schemas';
|
|
168
183
|
import { User } from './schemas';
|
|
184
|
+
import { UserAgentStatsBucket } from './schemas';
|
|
169
185
|
import { UserAttributeBase } from './schemas';
|
|
170
186
|
import { UserAttribute } from './schemas';
|
|
171
187
|
import { UserCreate } from './schemas';
|
|
@@ -175,6 +191,7 @@ import { UserToken } from './schemas';
|
|
|
175
191
|
import { UserUpdate } from './schemas';
|
|
176
192
|
import { UserWithRelationPermissions } from './schemas';
|
|
177
193
|
import { ValidationError } from './schemas';
|
|
194
|
+
import { VisitsByKeyBucket } from './schemas';
|
|
178
195
|
import { WhoisBase } from './schemas';
|
|
179
196
|
import { WildcardHttpRedirectRequest } from './schemas';
|
|
180
197
|
import { RequestAuthcode } from './schemas';
|
|
@@ -911,6 +928,108 @@ export const KEYS_BILLING_TRANSACTION = [
|
|
|
911
928
|
KEY_BILLING_TRANSACTION_UPDATED_ON,
|
|
912
929
|
] as const satisfies (keyof BillingTransaction)[];
|
|
913
930
|
|
|
931
|
+
/**
|
|
932
|
+
* Key
|
|
933
|
+
*
|
|
934
|
+
*
|
|
935
|
+
* @type {string}
|
|
936
|
+
*
|
|
937
|
+
*
|
|
938
|
+
* @remarks
|
|
939
|
+
* This key constant provides type-safe access to the `key` property of BrowserStatsBucket objects.
|
|
940
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
941
|
+
*
|
|
942
|
+
* @example
|
|
943
|
+
* ```typescript
|
|
944
|
+
* // Direct property access
|
|
945
|
+
* const value = browserstatsbucket[KEY_BROWSER_STATS_BUCKET_KEY];
|
|
946
|
+
*
|
|
947
|
+
* // Dynamic property access
|
|
948
|
+
* const propertyName = KEY_BROWSER_STATS_BUCKET_KEY;
|
|
949
|
+
* const value = browserstatsbucket[propertyName];
|
|
950
|
+
* ```
|
|
951
|
+
*
|
|
952
|
+
* @see {@link BrowserStatsBucket} - The TypeScript type definition
|
|
953
|
+
* @see {@link KEYS_BROWSER_STATS_BUCKET} - Array of all keys for this type
|
|
954
|
+
*/
|
|
955
|
+
export const KEY_BROWSER_STATS_BUCKET_KEY: keyof BrowserStatsBucket = 'key';
|
|
956
|
+
/**
|
|
957
|
+
* Total
|
|
958
|
+
*
|
|
959
|
+
*
|
|
960
|
+
* @type {integer}
|
|
961
|
+
*
|
|
962
|
+
*
|
|
963
|
+
* @remarks
|
|
964
|
+
* This key constant provides type-safe access to the `total` property of BrowserStatsBucket objects.
|
|
965
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
966
|
+
*
|
|
967
|
+
* @example
|
|
968
|
+
* ```typescript
|
|
969
|
+
* // Direct property access
|
|
970
|
+
* const value = browserstatsbucket[KEY_BROWSER_STATS_BUCKET_TOTAL];
|
|
971
|
+
*
|
|
972
|
+
* // Dynamic property access
|
|
973
|
+
* const propertyName = KEY_BROWSER_STATS_BUCKET_TOTAL;
|
|
974
|
+
* const value = browserstatsbucket[propertyName];
|
|
975
|
+
* ```
|
|
976
|
+
*
|
|
977
|
+
* @see {@link BrowserStatsBucket} - The TypeScript type definition
|
|
978
|
+
* @see {@link KEYS_BROWSER_STATS_BUCKET} - Array of all keys for this type
|
|
979
|
+
*/
|
|
980
|
+
export const KEY_BROWSER_STATS_BUCKET_TOTAL: keyof BrowserStatsBucket = 'total';
|
|
981
|
+
/**
|
|
982
|
+
* Unique
|
|
983
|
+
*
|
|
984
|
+
*
|
|
985
|
+
* @type {integer}
|
|
986
|
+
*
|
|
987
|
+
*
|
|
988
|
+
* @remarks
|
|
989
|
+
* This key constant provides type-safe access to the `unique` property of BrowserStatsBucket objects.
|
|
990
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
991
|
+
*
|
|
992
|
+
* @example
|
|
993
|
+
* ```typescript
|
|
994
|
+
* // Direct property access
|
|
995
|
+
* const value = browserstatsbucket[KEY_BROWSER_STATS_BUCKET_UNIQUE];
|
|
996
|
+
*
|
|
997
|
+
* // Dynamic property access
|
|
998
|
+
* const propertyName = KEY_BROWSER_STATS_BUCKET_UNIQUE;
|
|
999
|
+
* const value = browserstatsbucket[propertyName];
|
|
1000
|
+
* ```
|
|
1001
|
+
*
|
|
1002
|
+
* @see {@link BrowserStatsBucket} - The TypeScript type definition
|
|
1003
|
+
* @see {@link KEYS_BROWSER_STATS_BUCKET} - Array of all keys for this type
|
|
1004
|
+
*/
|
|
1005
|
+
export const KEY_BROWSER_STATS_BUCKET_UNIQUE: keyof BrowserStatsBucket = 'unique';
|
|
1006
|
+
|
|
1007
|
+
/**
|
|
1008
|
+
* Array of all BrowserStatsBucket property keys
|
|
1009
|
+
*
|
|
1010
|
+
* @remarks
|
|
1011
|
+
* This constant provides a readonly array containing all valid property keys for BrowserStatsBucket objects.
|
|
1012
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
1013
|
+
*
|
|
1014
|
+
* @example
|
|
1015
|
+
* ```typescript
|
|
1016
|
+
* // Iterating through all keys
|
|
1017
|
+
* for (const key of KEYS_BROWSER_STATS_BUCKET) {
|
|
1018
|
+
* console.log(`Property: ${key}, Value: ${browserstatsbucket[key]}`);
|
|
1019
|
+
* }
|
|
1020
|
+
*
|
|
1021
|
+
* // Validation
|
|
1022
|
+
* const isValidKey = KEYS_BROWSER_STATS_BUCKET.includes(someKey);
|
|
1023
|
+
* ```
|
|
1024
|
+
*
|
|
1025
|
+
* @see {@link BrowserStatsBucket} - The TypeScript type definition
|
|
1026
|
+
*/
|
|
1027
|
+
export const KEYS_BROWSER_STATS_BUCKET = [
|
|
1028
|
+
KEY_BROWSER_STATS_BUCKET_KEY,
|
|
1029
|
+
KEY_BROWSER_STATS_BUCKET_TOTAL,
|
|
1030
|
+
KEY_BROWSER_STATS_BUCKET_UNIQUE,
|
|
1031
|
+
] as const satisfies (keyof BrowserStatsBucket)[];
|
|
1032
|
+
|
|
914
1033
|
/**
|
|
915
1034
|
* key property
|
|
916
1035
|
*
|
|
@@ -6590,61 +6709,85 @@ export const KEY_DOMAIN_FORWARD_HTTPS: keyof DomainForward = 'https';
|
|
|
6590
6709
|
* @see {@link KEYS_DOMAIN_FORWARD} - Array of all keys for this type
|
|
6591
6710
|
*/
|
|
6592
6711
|
export const KEY_DOMAIN_FORWARD_UPDATED_ON: keyof DomainForward = 'updated_on';
|
|
6712
|
+
|
|
6593
6713
|
/**
|
|
6594
|
-
*
|
|
6714
|
+
* Array of all DomainForward property keys
|
|
6595
6715
|
*
|
|
6716
|
+
* @remarks
|
|
6717
|
+
* This constant provides a readonly array containing all valid property keys for DomainForward objects.
|
|
6718
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
6719
|
+
*
|
|
6720
|
+
* @example
|
|
6721
|
+
* ```typescript
|
|
6722
|
+
* // Iterating through all keys
|
|
6723
|
+
* for (const key of KEYS_DOMAIN_FORWARD) {
|
|
6724
|
+
* console.log(`Property: ${key}, Value: ${domainforward[key]}`);
|
|
6725
|
+
* }
|
|
6726
|
+
*
|
|
6727
|
+
* // Validation
|
|
6728
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD.includes(someKey);
|
|
6729
|
+
* ```
|
|
6730
|
+
*
|
|
6731
|
+
* @see {@link DomainForward} - The TypeScript type definition
|
|
6732
|
+
*/
|
|
6733
|
+
export const KEYS_DOMAIN_FORWARD = [
|
|
6734
|
+
KEY_DOMAIN_FORWARD_CREATED_ON,
|
|
6735
|
+
KEY_DOMAIN_FORWARD_ENABLED,
|
|
6736
|
+
KEY_DOMAIN_FORWARD_HOSTNAME,
|
|
6737
|
+
KEY_DOMAIN_FORWARD_HTTP,
|
|
6738
|
+
KEY_DOMAIN_FORWARD_HTTPS,
|
|
6739
|
+
KEY_DOMAIN_FORWARD_UPDATED_ON,
|
|
6740
|
+
] as const satisfies (keyof DomainForward)[];
|
|
6741
|
+
|
|
6742
|
+
/**
|
|
6743
|
+
* Results
|
|
6596
6744
|
*
|
|
6597
|
-
*
|
|
6745
|
+
*
|
|
6746
|
+
* @type {array}
|
|
6598
6747
|
*
|
|
6599
6748
|
*
|
|
6600
6749
|
* @remarks
|
|
6601
|
-
* This key constant provides type-safe access to the `
|
|
6750
|
+
* This key constant provides type-safe access to the `results` property of DomainForwardBrowserStats objects.
|
|
6602
6751
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6603
6752
|
*
|
|
6604
6753
|
* @example
|
|
6605
6754
|
* ```typescript
|
|
6606
6755
|
* // Direct property access
|
|
6607
|
-
* const value =
|
|
6756
|
+
* const value = domainforwardbrowserstats[KEY_DOMAIN_FORWARD_BROWSER_STATS_RESULTS];
|
|
6608
6757
|
*
|
|
6609
6758
|
* // Dynamic property access
|
|
6610
|
-
* const propertyName =
|
|
6611
|
-
* const value =
|
|
6759
|
+
* const propertyName = KEY_DOMAIN_FORWARD_BROWSER_STATS_RESULTS;
|
|
6760
|
+
* const value = domainforwardbrowserstats[propertyName];
|
|
6612
6761
|
* ```
|
|
6613
6762
|
*
|
|
6614
|
-
* @see {@link
|
|
6615
|
-
* @see {@link
|
|
6763
|
+
* @see {@link DomainForwardBrowserStats} - The TypeScript type definition
|
|
6764
|
+
* @see {@link KEYS_DOMAIN_FORWARD_BROWSER_STATS} - Array of all keys for this type
|
|
6616
6765
|
*/
|
|
6617
|
-
export const
|
|
6766
|
+
export const KEY_DOMAIN_FORWARD_BROWSER_STATS_RESULTS: keyof DomainForwardBrowserStats = 'results';
|
|
6618
6767
|
|
|
6619
6768
|
/**
|
|
6620
|
-
* Array of all
|
|
6769
|
+
* Array of all DomainForwardBrowserStats property keys
|
|
6621
6770
|
*
|
|
6622
6771
|
* @remarks
|
|
6623
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
6772
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardBrowserStats objects.
|
|
6624
6773
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
6625
6774
|
*
|
|
6626
6775
|
* @example
|
|
6627
6776
|
* ```typescript
|
|
6628
6777
|
* // Iterating through all keys
|
|
6629
|
-
* for (const key of
|
|
6630
|
-
* console.log(`Property: ${key}, Value: ${
|
|
6778
|
+
* for (const key of KEYS_DOMAIN_FORWARD_BROWSER_STATS) {
|
|
6779
|
+
* console.log(`Property: ${key}, Value: ${domainforwardbrowserstats[key]}`);
|
|
6631
6780
|
* }
|
|
6632
6781
|
*
|
|
6633
6782
|
* // Validation
|
|
6634
|
-
* const isValidKey =
|
|
6783
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_BROWSER_STATS.includes(someKey);
|
|
6635
6784
|
* ```
|
|
6636
6785
|
*
|
|
6637
|
-
* @see {@link
|
|
6786
|
+
* @see {@link DomainForwardBrowserStats} - The TypeScript type definition
|
|
6638
6787
|
*/
|
|
6639
|
-
export const
|
|
6640
|
-
|
|
6641
|
-
|
|
6642
|
-
KEY_DOMAIN_FORWARD_HOSTNAME,
|
|
6643
|
-
KEY_DOMAIN_FORWARD_HTTP,
|
|
6644
|
-
KEY_DOMAIN_FORWARD_HTTPS,
|
|
6645
|
-
KEY_DOMAIN_FORWARD_UPDATED_ON,
|
|
6646
|
-
KEY_DOMAIN_FORWARD_WILDCARD,
|
|
6647
|
-
] as const satisfies (keyof DomainForward)[];
|
|
6788
|
+
export const KEYS_DOMAIN_FORWARD_BROWSER_STATS = [
|
|
6789
|
+
KEY_DOMAIN_FORWARD_BROWSER_STATS_RESULTS,
|
|
6790
|
+
] as const satisfies (keyof DomainForwardBrowserStats)[];
|
|
6648
6791
|
|
|
6649
6792
|
/**
|
|
6650
6793
|
* Enabled
|
|
@@ -6773,304 +6916,532 @@ export const KEYS_DOMAIN_FORWARD_CREATE_REQUEST = [
|
|
|
6773
6916
|
] as const satisfies (keyof DomainForwardCreateRequest)[];
|
|
6774
6917
|
|
|
6775
6918
|
/**
|
|
6776
|
-
*
|
|
6777
|
-
*
|
|
6778
|
-
*
|
|
6779
|
-
*
|
|
6780
|
-
*
|
|
6781
|
-
* @remarks
|
|
6782
|
-
* This key constant provides type-safe access to the `op` property of DomainForwardPatchOp objects.
|
|
6783
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6784
|
-
*
|
|
6785
|
-
* @example
|
|
6786
|
-
* ```typescript
|
|
6787
|
-
* // Direct property access
|
|
6788
|
-
* const value = domainforwardpatchop[KEY_DOMAIN_FORWARD_PATCH_OP_OP];
|
|
6789
|
-
*
|
|
6790
|
-
* // Dynamic property access
|
|
6791
|
-
* const propertyName = KEY_DOMAIN_FORWARD_PATCH_OP_OP;
|
|
6792
|
-
* const value = domainforwardpatchop[propertyName];
|
|
6793
|
-
* ```
|
|
6794
|
-
*
|
|
6795
|
-
* @see {@link DomainForwardPatchOp} - The TypeScript type definition
|
|
6796
|
-
* @see {@link KEYS_DOMAIN_FORWARD_PATCH_OP} - Array of all keys for this type
|
|
6797
|
-
*/
|
|
6798
|
-
export const KEY_DOMAIN_FORWARD_PATCH_OP_OP: keyof DomainForwardPatchOp = 'op';
|
|
6799
|
-
/**
|
|
6800
|
-
* Redirect
|
|
6919
|
+
* Results
|
|
6801
6920
|
*
|
|
6802
6921
|
*
|
|
6922
|
+
* @type {array}
|
|
6803
6923
|
*
|
|
6804
6924
|
*
|
|
6805
6925
|
* @remarks
|
|
6806
|
-
* This key constant provides type-safe access to the `
|
|
6926
|
+
* This key constant provides type-safe access to the `results` property of DomainForwardGeoStats objects.
|
|
6807
6927
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6808
6928
|
*
|
|
6809
6929
|
* @example
|
|
6810
6930
|
* ```typescript
|
|
6811
6931
|
* // Direct property access
|
|
6812
|
-
* const value =
|
|
6932
|
+
* const value = domainforwardgeostats[KEY_DOMAIN_FORWARD_GEO_STATS_RESULTS];
|
|
6813
6933
|
*
|
|
6814
6934
|
* // Dynamic property access
|
|
6815
|
-
* const propertyName =
|
|
6816
|
-
* const value =
|
|
6935
|
+
* const propertyName = KEY_DOMAIN_FORWARD_GEO_STATS_RESULTS;
|
|
6936
|
+
* const value = domainforwardgeostats[propertyName];
|
|
6817
6937
|
* ```
|
|
6818
6938
|
*
|
|
6819
|
-
* @see {@link
|
|
6820
|
-
* @see {@link
|
|
6939
|
+
* @see {@link DomainForwardGeoStats} - The TypeScript type definition
|
|
6940
|
+
* @see {@link KEYS_DOMAIN_FORWARD_GEO_STATS} - Array of all keys for this type
|
|
6821
6941
|
*/
|
|
6822
|
-
export const
|
|
6942
|
+
export const KEY_DOMAIN_FORWARD_GEO_STATS_RESULTS: keyof DomainForwardGeoStats = 'results';
|
|
6823
6943
|
|
|
6824
6944
|
/**
|
|
6825
|
-
* Array of all
|
|
6945
|
+
* Array of all DomainForwardGeoStats property keys
|
|
6826
6946
|
*
|
|
6827
6947
|
* @remarks
|
|
6828
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
6948
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardGeoStats objects.
|
|
6829
6949
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
6830
6950
|
*
|
|
6831
6951
|
* @example
|
|
6832
6952
|
* ```typescript
|
|
6833
6953
|
* // Iterating through all keys
|
|
6834
|
-
* for (const key of
|
|
6835
|
-
* console.log(`Property: ${key}, Value: ${
|
|
6954
|
+
* for (const key of KEYS_DOMAIN_FORWARD_GEO_STATS) {
|
|
6955
|
+
* console.log(`Property: ${key}, Value: ${domainforwardgeostats[key]}`);
|
|
6836
6956
|
* }
|
|
6837
6957
|
*
|
|
6838
6958
|
* // Validation
|
|
6839
|
-
* const isValidKey =
|
|
6959
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_GEO_STATS.includes(someKey);
|
|
6840
6960
|
* ```
|
|
6841
6961
|
*
|
|
6842
|
-
* @see {@link
|
|
6962
|
+
* @see {@link DomainForwardGeoStats} - The TypeScript type definition
|
|
6843
6963
|
*/
|
|
6844
|
-
export const
|
|
6845
|
-
|
|
6846
|
-
|
|
6847
|
-
] as const satisfies (keyof DomainForwardPatchOp)[];
|
|
6964
|
+
export const KEYS_DOMAIN_FORWARD_GEO_STATS = [
|
|
6965
|
+
KEY_DOMAIN_FORWARD_GEO_STATS_RESULTS,
|
|
6966
|
+
] as const satisfies (keyof DomainForwardGeoStats)[];
|
|
6848
6967
|
|
|
6849
6968
|
/**
|
|
6850
|
-
*
|
|
6969
|
+
* Configured Forwards
|
|
6851
6970
|
*
|
|
6852
6971
|
*
|
|
6853
|
-
* @type {
|
|
6972
|
+
* @type {integer}
|
|
6854
6973
|
*
|
|
6855
6974
|
*
|
|
6856
6975
|
* @remarks
|
|
6857
|
-
* This key constant provides type-safe access to the `
|
|
6976
|
+
* This key constant provides type-safe access to the `configured_forwards` property of DomainForwardMetrics objects.
|
|
6858
6977
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6859
6978
|
*
|
|
6860
6979
|
* @example
|
|
6861
6980
|
* ```typescript
|
|
6862
6981
|
* // Direct property access
|
|
6863
|
-
* const value =
|
|
6982
|
+
* const value = domainforwardmetrics[KEY_DOMAIN_FORWARD_METRICS_CONFIGURED_FORWARDS];
|
|
6864
6983
|
*
|
|
6865
6984
|
* // Dynamic property access
|
|
6866
|
-
* const propertyName =
|
|
6867
|
-
* const value =
|
|
6985
|
+
* const propertyName = KEY_DOMAIN_FORWARD_METRICS_CONFIGURED_FORWARDS;
|
|
6986
|
+
* const value = domainforwardmetrics[propertyName];
|
|
6868
6987
|
* ```
|
|
6869
6988
|
*
|
|
6870
|
-
* @see {@link
|
|
6871
|
-
* @see {@link
|
|
6989
|
+
* @see {@link DomainForwardMetrics} - The TypeScript type definition
|
|
6990
|
+
* @see {@link KEYS_DOMAIN_FORWARD_METRICS} - Array of all keys for this type
|
|
6872
6991
|
*/
|
|
6873
|
-
export const
|
|
6874
|
-
|
|
6992
|
+
export const KEY_DOMAIN_FORWARD_METRICS_CONFIGURED_FORWARDS: keyof DomainForwardMetrics = 'configured_forwards';
|
|
6875
6993
|
/**
|
|
6876
|
-
*
|
|
6994
|
+
* Invoked Forwards
|
|
6995
|
+
*
|
|
6996
|
+
*
|
|
6997
|
+
* @type {integer}
|
|
6998
|
+
*
|
|
6877
6999
|
*
|
|
6878
7000
|
* @remarks
|
|
6879
|
-
* This constant provides
|
|
6880
|
-
*
|
|
7001
|
+
* This key constant provides type-safe access to the `invoked_forwards` property of DomainForwardMetrics objects.
|
|
7002
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6881
7003
|
*
|
|
6882
7004
|
* @example
|
|
6883
7005
|
* ```typescript
|
|
6884
|
-
* //
|
|
6885
|
-
*
|
|
6886
|
-
* console.log(`Property: ${key}, Value: ${domainforwardpatchops[key]}`);
|
|
6887
|
-
* }
|
|
7006
|
+
* // Direct property access
|
|
7007
|
+
* const value = domainforwardmetrics[KEY_DOMAIN_FORWARD_METRICS_INVOKED_FORWARDS];
|
|
6888
7008
|
*
|
|
6889
|
-
* //
|
|
6890
|
-
* const
|
|
7009
|
+
* // Dynamic property access
|
|
7010
|
+
* const propertyName = KEY_DOMAIN_FORWARD_METRICS_INVOKED_FORWARDS;
|
|
7011
|
+
* const value = domainforwardmetrics[propertyName];
|
|
6891
7012
|
* ```
|
|
6892
7013
|
*
|
|
6893
|
-
* @see {@link
|
|
7014
|
+
* @see {@link DomainForwardMetrics} - The TypeScript type definition
|
|
7015
|
+
* @see {@link KEYS_DOMAIN_FORWARD_METRICS} - Array of all keys for this type
|
|
6894
7016
|
*/
|
|
6895
|
-
export const
|
|
6896
|
-
KEY_DOMAIN_FORWARD_PATCH_OPS_OPS,
|
|
6897
|
-
] as const satisfies (keyof DomainForwardPatchOps)[];
|
|
6898
|
-
|
|
7017
|
+
export const KEY_DOMAIN_FORWARD_METRICS_INVOKED_FORWARDS: keyof DomainForwardMetrics = 'invoked_forwards';
|
|
6899
7018
|
/**
|
|
6900
|
-
*
|
|
7019
|
+
* Total Visits
|
|
6901
7020
|
*
|
|
6902
7021
|
*
|
|
6903
|
-
* @type {
|
|
7022
|
+
* @type {integer}
|
|
6904
7023
|
*
|
|
6905
7024
|
*
|
|
6906
7025
|
* @remarks
|
|
6907
|
-
* This key constant provides type-safe access to the `
|
|
7026
|
+
* This key constant provides type-safe access to the `total_visits` property of DomainForwardMetrics objects.
|
|
6908
7027
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6909
7028
|
*
|
|
6910
7029
|
* @example
|
|
6911
7030
|
* ```typescript
|
|
6912
7031
|
* // Direct property access
|
|
6913
|
-
* const value =
|
|
7032
|
+
* const value = domainforwardmetrics[KEY_DOMAIN_FORWARD_METRICS_TOTAL_VISITS];
|
|
6914
7033
|
*
|
|
6915
7034
|
* // Dynamic property access
|
|
6916
|
-
* const propertyName =
|
|
6917
|
-
* const value =
|
|
7035
|
+
* const propertyName = KEY_DOMAIN_FORWARD_METRICS_TOTAL_VISITS;
|
|
7036
|
+
* const value = domainforwardmetrics[propertyName];
|
|
6918
7037
|
* ```
|
|
6919
7038
|
*
|
|
6920
|
-
* @see {@link
|
|
6921
|
-
* @see {@link
|
|
7039
|
+
* @see {@link DomainForwardMetrics} - The TypeScript type definition
|
|
7040
|
+
* @see {@link KEYS_DOMAIN_FORWARD_METRICS} - Array of all keys for this type
|
|
6922
7041
|
*/
|
|
6923
|
-
export const
|
|
7042
|
+
export const KEY_DOMAIN_FORWARD_METRICS_TOTAL_VISITS: keyof DomainForwardMetrics = 'total_visits';
|
|
6924
7043
|
/**
|
|
6925
|
-
*
|
|
7044
|
+
* Unique Visits
|
|
6926
7045
|
*
|
|
6927
7046
|
*
|
|
7047
|
+
* @type {integer}
|
|
6928
7048
|
*
|
|
6929
7049
|
*
|
|
6930
7050
|
* @remarks
|
|
6931
|
-
* This key constant provides type-safe access to the `
|
|
7051
|
+
* This key constant provides type-safe access to the `unique_visits` property of DomainForwardMetrics objects.
|
|
6932
7052
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6933
7053
|
*
|
|
6934
7054
|
* @example
|
|
6935
7055
|
* ```typescript
|
|
6936
7056
|
* // Direct property access
|
|
6937
|
-
* const value =
|
|
7057
|
+
* const value = domainforwardmetrics[KEY_DOMAIN_FORWARD_METRICS_UNIQUE_VISITS];
|
|
6938
7058
|
*
|
|
6939
7059
|
* // Dynamic property access
|
|
6940
|
-
* const propertyName =
|
|
6941
|
-
* const value =
|
|
7060
|
+
* const propertyName = KEY_DOMAIN_FORWARD_METRICS_UNIQUE_VISITS;
|
|
7061
|
+
* const value = domainforwardmetrics[propertyName];
|
|
6942
7062
|
* ```
|
|
6943
7063
|
*
|
|
6944
|
-
* @see {@link
|
|
6945
|
-
* @see {@link
|
|
7064
|
+
* @see {@link DomainForwardMetrics} - The TypeScript type definition
|
|
7065
|
+
* @see {@link KEYS_DOMAIN_FORWARD_METRICS} - Array of all keys for this type
|
|
6946
7066
|
*/
|
|
6947
|
-
export const
|
|
7067
|
+
export const KEY_DOMAIN_FORWARD_METRICS_UNIQUE_VISITS: keyof DomainForwardMetrics = 'unique_visits';
|
|
6948
7068
|
|
|
6949
7069
|
/**
|
|
6950
|
-
* Array of all
|
|
7070
|
+
* Array of all DomainForwardMetrics property keys
|
|
6951
7071
|
*
|
|
6952
7072
|
* @remarks
|
|
6953
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
7073
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardMetrics objects.
|
|
6954
7074
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
6955
7075
|
*
|
|
6956
7076
|
* @example
|
|
6957
7077
|
* ```typescript
|
|
6958
7078
|
* // Iterating through all keys
|
|
6959
|
-
* for (const key of
|
|
6960
|
-
* console.log(`Property: ${key}, Value: ${
|
|
7079
|
+
* for (const key of KEYS_DOMAIN_FORWARD_METRICS) {
|
|
7080
|
+
* console.log(`Property: ${key}, Value: ${domainforwardmetrics[key]}`);
|
|
6961
7081
|
* }
|
|
6962
7082
|
*
|
|
6963
7083
|
* // Validation
|
|
6964
|
-
* const isValidKey =
|
|
7084
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_METRICS.includes(someKey);
|
|
6965
7085
|
* ```
|
|
6966
7086
|
*
|
|
6967
|
-
* @see {@link
|
|
7087
|
+
* @see {@link DomainForwardMetrics} - The TypeScript type definition
|
|
6968
7088
|
*/
|
|
6969
|
-
export const
|
|
6970
|
-
|
|
6971
|
-
|
|
6972
|
-
|
|
7089
|
+
export const KEYS_DOMAIN_FORWARD_METRICS = [
|
|
7090
|
+
KEY_DOMAIN_FORWARD_METRICS_CONFIGURED_FORWARDS,
|
|
7091
|
+
KEY_DOMAIN_FORWARD_METRICS_INVOKED_FORWARDS,
|
|
7092
|
+
KEY_DOMAIN_FORWARD_METRICS_TOTAL_VISITS,
|
|
7093
|
+
KEY_DOMAIN_FORWARD_METRICS_UNIQUE_VISITS,
|
|
7094
|
+
] as const satisfies (keyof DomainForwardMetrics)[];
|
|
6973
7095
|
|
|
6974
7096
|
/**
|
|
6975
|
-
*
|
|
7097
|
+
* Results
|
|
6976
7098
|
*
|
|
6977
7099
|
*
|
|
6978
|
-
* @type {
|
|
7100
|
+
* @type {array}
|
|
6979
7101
|
*
|
|
6980
7102
|
*
|
|
6981
7103
|
* @remarks
|
|
6982
|
-
* This key constant provides type-safe access to the `
|
|
7104
|
+
* This key constant provides type-safe access to the `results` property of DomainForwardMetricsTimeSeries objects.
|
|
6983
7105
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
6984
7106
|
*
|
|
6985
7107
|
* @example
|
|
6986
7108
|
* ```typescript
|
|
6987
7109
|
* // Direct property access
|
|
6988
|
-
* const value =
|
|
7110
|
+
* const value = domainforwardmetricstimeseries[KEY_DOMAIN_FORWARD_METRICS_TIME_SERIES_RESULTS];
|
|
6989
7111
|
*
|
|
6990
7112
|
* // Dynamic property access
|
|
6991
|
-
* const propertyName =
|
|
6992
|
-
* const value =
|
|
7113
|
+
* const propertyName = KEY_DOMAIN_FORWARD_METRICS_TIME_SERIES_RESULTS;
|
|
7114
|
+
* const value = domainforwardmetricstimeseries[propertyName];
|
|
6993
7115
|
* ```
|
|
6994
7116
|
*
|
|
6995
|
-
* @see {@link
|
|
6996
|
-
* @see {@link
|
|
7117
|
+
* @see {@link DomainForwardMetricsTimeSeries} - The TypeScript type definition
|
|
7118
|
+
* @see {@link KEYS_DOMAIN_FORWARD_METRICS_TIME_SERIES} - Array of all keys for this type
|
|
6997
7119
|
*/
|
|
6998
|
-
export const
|
|
7120
|
+
export const KEY_DOMAIN_FORWARD_METRICS_TIME_SERIES_RESULTS: keyof DomainForwardMetricsTimeSeries = 'results';
|
|
7121
|
+
|
|
6999
7122
|
/**
|
|
7000
|
-
*
|
|
7001
|
-
*
|
|
7002
|
-
*
|
|
7003
|
-
* @type {array}
|
|
7004
|
-
*
|
|
7123
|
+
* Array of all DomainForwardMetricsTimeSeries property keys
|
|
7005
7124
|
*
|
|
7006
7125
|
* @remarks
|
|
7007
|
-
* This
|
|
7008
|
-
*
|
|
7126
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardMetricsTimeSeries objects.
|
|
7127
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7009
7128
|
*
|
|
7010
7129
|
* @example
|
|
7011
7130
|
* ```typescript
|
|
7012
|
-
* //
|
|
7013
|
-
* const
|
|
7131
|
+
* // Iterating through all keys
|
|
7132
|
+
* for (const key of KEYS_DOMAIN_FORWARD_METRICS_TIME_SERIES) {
|
|
7133
|
+
* console.log(`Property: ${key}, Value: ${domainforwardmetricstimeseries[key]}`);
|
|
7134
|
+
* }
|
|
7014
7135
|
*
|
|
7015
|
-
* //
|
|
7016
|
-
* const
|
|
7017
|
-
* const value = domainforwardprotocolset[propertyName];
|
|
7136
|
+
* // Validation
|
|
7137
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_METRICS_TIME_SERIES.includes(someKey);
|
|
7018
7138
|
* ```
|
|
7019
7139
|
*
|
|
7020
|
-
* @see {@link
|
|
7021
|
-
* @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET} - Array of all keys for this type
|
|
7140
|
+
* @see {@link DomainForwardMetricsTimeSeries} - The TypeScript type definition
|
|
7022
7141
|
*/
|
|
7023
|
-
export const
|
|
7142
|
+
export const KEYS_DOMAIN_FORWARD_METRICS_TIME_SERIES = [
|
|
7143
|
+
KEY_DOMAIN_FORWARD_METRICS_TIME_SERIES_RESULTS,
|
|
7144
|
+
] as const satisfies (keyof DomainForwardMetricsTimeSeries)[];
|
|
7145
|
+
|
|
7024
7146
|
/**
|
|
7025
|
-
*
|
|
7147
|
+
* op property
|
|
7026
7148
|
*
|
|
7027
7149
|
*
|
|
7028
|
-
* @type {string}
|
|
7029
7150
|
*
|
|
7030
7151
|
*
|
|
7031
7152
|
* @remarks
|
|
7032
|
-
* This key constant provides type-safe access to the `
|
|
7153
|
+
* This key constant provides type-safe access to the `op` property of DomainForwardPatchOp objects.
|
|
7033
7154
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7034
7155
|
*
|
|
7035
7156
|
* @example
|
|
7036
7157
|
* ```typescript
|
|
7037
7158
|
* // Direct property access
|
|
7038
|
-
* const value =
|
|
7159
|
+
* const value = domainforwardpatchop[KEY_DOMAIN_FORWARD_PATCH_OP_OP];
|
|
7039
7160
|
*
|
|
7040
7161
|
* // Dynamic property access
|
|
7041
|
-
* const propertyName =
|
|
7162
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PATCH_OP_OP;
|
|
7163
|
+
* const value = domainforwardpatchop[propertyName];
|
|
7164
|
+
* ```
|
|
7165
|
+
*
|
|
7166
|
+
* @see {@link DomainForwardPatchOp} - The TypeScript type definition
|
|
7167
|
+
* @see {@link KEYS_DOMAIN_FORWARD_PATCH_OP} - Array of all keys for this type
|
|
7168
|
+
*/
|
|
7169
|
+
export const KEY_DOMAIN_FORWARD_PATCH_OP_OP: keyof DomainForwardPatchOp = 'op';
|
|
7170
|
+
/**
|
|
7171
|
+
* Redirect
|
|
7172
|
+
*
|
|
7173
|
+
*
|
|
7174
|
+
*
|
|
7175
|
+
*
|
|
7176
|
+
* @remarks
|
|
7177
|
+
* This key constant provides type-safe access to the `redirect` property of DomainForwardPatchOp objects.
|
|
7178
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7179
|
+
*
|
|
7180
|
+
* @example
|
|
7181
|
+
* ```typescript
|
|
7182
|
+
* // Direct property access
|
|
7183
|
+
* const value = domainforwardpatchop[KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT];
|
|
7184
|
+
*
|
|
7185
|
+
* // Dynamic property access
|
|
7186
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT;
|
|
7187
|
+
* const value = domainforwardpatchop[propertyName];
|
|
7188
|
+
* ```
|
|
7189
|
+
*
|
|
7190
|
+
* @see {@link DomainForwardPatchOp} - The TypeScript type definition
|
|
7191
|
+
* @see {@link KEYS_DOMAIN_FORWARD_PATCH_OP} - Array of all keys for this type
|
|
7192
|
+
*/
|
|
7193
|
+
export const KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT: keyof DomainForwardPatchOp = 'redirect';
|
|
7194
|
+
|
|
7195
|
+
/**
|
|
7196
|
+
* Array of all DomainForwardPatchOp property keys
|
|
7197
|
+
*
|
|
7198
|
+
* @remarks
|
|
7199
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardPatchOp objects.
|
|
7200
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7201
|
+
*
|
|
7202
|
+
* @example
|
|
7203
|
+
* ```typescript
|
|
7204
|
+
* // Iterating through all keys
|
|
7205
|
+
* for (const key of KEYS_DOMAIN_FORWARD_PATCH_OP) {
|
|
7206
|
+
* console.log(`Property: ${key}, Value: ${domainforwardpatchop[key]}`);
|
|
7207
|
+
* }
|
|
7208
|
+
*
|
|
7209
|
+
* // Validation
|
|
7210
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_PATCH_OP.includes(someKey);
|
|
7211
|
+
* ```
|
|
7212
|
+
*
|
|
7213
|
+
* @see {@link DomainForwardPatchOp} - The TypeScript type definition
|
|
7214
|
+
*/
|
|
7215
|
+
export const KEYS_DOMAIN_FORWARD_PATCH_OP = [
|
|
7216
|
+
KEY_DOMAIN_FORWARD_PATCH_OP_OP,
|
|
7217
|
+
KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT,
|
|
7218
|
+
] as const satisfies (keyof DomainForwardPatchOp)[];
|
|
7219
|
+
|
|
7220
|
+
/**
|
|
7221
|
+
* Ops
|
|
7222
|
+
*
|
|
7223
|
+
*
|
|
7224
|
+
* @type {array}
|
|
7225
|
+
*
|
|
7226
|
+
*
|
|
7227
|
+
* @remarks
|
|
7228
|
+
* This key constant provides type-safe access to the `ops` property of DomainForwardPatchOps objects.
|
|
7229
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7230
|
+
*
|
|
7231
|
+
* @example
|
|
7232
|
+
* ```typescript
|
|
7233
|
+
* // Direct property access
|
|
7234
|
+
* const value = domainforwardpatchops[KEY_DOMAIN_FORWARD_PATCH_OPS_OPS];
|
|
7235
|
+
*
|
|
7236
|
+
* // Dynamic property access
|
|
7237
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PATCH_OPS_OPS;
|
|
7238
|
+
* const value = domainforwardpatchops[propertyName];
|
|
7239
|
+
* ```
|
|
7240
|
+
*
|
|
7241
|
+
* @see {@link DomainForwardPatchOps} - The TypeScript type definition
|
|
7242
|
+
* @see {@link KEYS_DOMAIN_FORWARD_PATCH_OPS} - Array of all keys for this type
|
|
7243
|
+
*/
|
|
7244
|
+
export const KEY_DOMAIN_FORWARD_PATCH_OPS_OPS: keyof DomainForwardPatchOps = 'ops';
|
|
7245
|
+
|
|
7246
|
+
/**
|
|
7247
|
+
* Array of all DomainForwardPatchOps property keys
|
|
7248
|
+
*
|
|
7249
|
+
* @remarks
|
|
7250
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardPatchOps objects.
|
|
7251
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7252
|
+
*
|
|
7253
|
+
* @example
|
|
7254
|
+
* ```typescript
|
|
7255
|
+
* // Iterating through all keys
|
|
7256
|
+
* for (const key of KEYS_DOMAIN_FORWARD_PATCH_OPS) {
|
|
7257
|
+
* console.log(`Property: ${key}, Value: ${domainforwardpatchops[key]}`);
|
|
7258
|
+
* }
|
|
7259
|
+
*
|
|
7260
|
+
* // Validation
|
|
7261
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_PATCH_OPS.includes(someKey);
|
|
7262
|
+
* ```
|
|
7263
|
+
*
|
|
7264
|
+
* @see {@link DomainForwardPatchOps} - The TypeScript type definition
|
|
7265
|
+
*/
|
|
7266
|
+
export const KEYS_DOMAIN_FORWARD_PATCH_OPS = [
|
|
7267
|
+
KEY_DOMAIN_FORWARD_PATCH_OPS_OPS,
|
|
7268
|
+
] as const satisfies (keyof DomainForwardPatchOps)[];
|
|
7269
|
+
|
|
7270
|
+
/**
|
|
7271
|
+
* Results
|
|
7272
|
+
*
|
|
7273
|
+
*
|
|
7274
|
+
* @type {array}
|
|
7275
|
+
*
|
|
7276
|
+
*
|
|
7277
|
+
* @remarks
|
|
7278
|
+
* This key constant provides type-safe access to the `results` property of DomainForwardPlatformStats objects.
|
|
7279
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7280
|
+
*
|
|
7281
|
+
* @example
|
|
7282
|
+
* ```typescript
|
|
7283
|
+
* // Direct property access
|
|
7284
|
+
* const value = domainforwardplatformstats[KEY_DOMAIN_FORWARD_PLATFORM_STATS_RESULTS];
|
|
7285
|
+
*
|
|
7286
|
+
* // Dynamic property access
|
|
7287
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PLATFORM_STATS_RESULTS;
|
|
7288
|
+
* const value = domainforwardplatformstats[propertyName];
|
|
7289
|
+
* ```
|
|
7290
|
+
*
|
|
7291
|
+
* @see {@link DomainForwardPlatformStats} - The TypeScript type definition
|
|
7292
|
+
* @see {@link KEYS_DOMAIN_FORWARD_PLATFORM_STATS} - Array of all keys for this type
|
|
7293
|
+
*/
|
|
7294
|
+
export const KEY_DOMAIN_FORWARD_PLATFORM_STATS_RESULTS: keyof DomainForwardPlatformStats = 'results';
|
|
7295
|
+
|
|
7296
|
+
/**
|
|
7297
|
+
* Array of all DomainForwardPlatformStats property keys
|
|
7298
|
+
*
|
|
7299
|
+
* @remarks
|
|
7300
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardPlatformStats objects.
|
|
7301
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7302
|
+
*
|
|
7303
|
+
* @example
|
|
7304
|
+
* ```typescript
|
|
7305
|
+
* // Iterating through all keys
|
|
7306
|
+
* for (const key of KEYS_DOMAIN_FORWARD_PLATFORM_STATS) {
|
|
7307
|
+
* console.log(`Property: ${key}, Value: ${domainforwardplatformstats[key]}`);
|
|
7308
|
+
* }
|
|
7309
|
+
*
|
|
7310
|
+
* // Validation
|
|
7311
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_PLATFORM_STATS.includes(someKey);
|
|
7312
|
+
* ```
|
|
7313
|
+
*
|
|
7314
|
+
* @see {@link DomainForwardPlatformStats} - The TypeScript type definition
|
|
7315
|
+
*/
|
|
7316
|
+
export const KEYS_DOMAIN_FORWARD_PLATFORM_STATS = [
|
|
7317
|
+
KEY_DOMAIN_FORWARD_PLATFORM_STATS_RESULTS,
|
|
7318
|
+
] as const satisfies (keyof DomainForwardPlatformStats)[];
|
|
7319
|
+
|
|
7320
|
+
/**
|
|
7321
|
+
* Redirects
|
|
7322
|
+
*
|
|
7323
|
+
*
|
|
7324
|
+
* @type {array}
|
|
7325
|
+
*
|
|
7326
|
+
*
|
|
7327
|
+
* @remarks
|
|
7328
|
+
* This key constant provides type-safe access to the `redirects` property of DomainForwardProtocolSetRequest objects.
|
|
7329
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7330
|
+
*
|
|
7331
|
+
* @example
|
|
7332
|
+
* ```typescript
|
|
7333
|
+
* // Direct property access
|
|
7334
|
+
* const value = domainforwardprotocolsetrequest[KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_REDIRECTS];
|
|
7335
|
+
*
|
|
7336
|
+
* // Dynamic property access
|
|
7337
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_REDIRECTS;
|
|
7338
|
+
* const value = domainforwardprotocolsetrequest[propertyName];
|
|
7339
|
+
* ```
|
|
7340
|
+
*
|
|
7341
|
+
* @see {@link DomainForwardProtocolSetRequest} - The TypeScript type definition
|
|
7342
|
+
* @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST} - Array of all keys for this type
|
|
7343
|
+
*/
|
|
7344
|
+
export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_REDIRECTS: keyof DomainForwardProtocolSetRequest = 'redirects';
|
|
7345
|
+
|
|
7346
|
+
/**
|
|
7347
|
+
* Array of all DomainForwardProtocolSetRequest property keys
|
|
7348
|
+
*
|
|
7349
|
+
* @remarks
|
|
7350
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardProtocolSetRequest objects.
|
|
7351
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7352
|
+
*
|
|
7353
|
+
* @example
|
|
7354
|
+
* ```typescript
|
|
7355
|
+
* // Iterating through all keys
|
|
7356
|
+
* for (const key of KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST) {
|
|
7357
|
+
* console.log(`Property: ${key}, Value: ${domainforwardprotocolsetrequest[key]}`);
|
|
7358
|
+
* }
|
|
7359
|
+
*
|
|
7360
|
+
* // Validation
|
|
7361
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST.includes(someKey);
|
|
7362
|
+
* ```
|
|
7363
|
+
*
|
|
7364
|
+
* @see {@link DomainForwardProtocolSetRequest} - The TypeScript type definition
|
|
7365
|
+
*/
|
|
7366
|
+
export const KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST = [
|
|
7367
|
+
KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_REDIRECTS,
|
|
7368
|
+
] as const satisfies (keyof DomainForwardProtocolSetRequest)[];
|
|
7369
|
+
|
|
7370
|
+
/**
|
|
7371
|
+
* Created On
|
|
7372
|
+
*
|
|
7373
|
+
*
|
|
7374
|
+
* @type {string}
|
|
7375
|
+
*
|
|
7376
|
+
*
|
|
7377
|
+
* @remarks
|
|
7378
|
+
* This key constant provides type-safe access to the `created_on` property of DomainForwardProtocolSet objects.
|
|
7379
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7380
|
+
*
|
|
7381
|
+
* @example
|
|
7382
|
+
* ```typescript
|
|
7383
|
+
* // Direct property access
|
|
7384
|
+
* const value = domainforwardprotocolset[KEY_DOMAIN_FORWARD_PROTOCOL_SET_CREATED_ON];
|
|
7385
|
+
*
|
|
7386
|
+
* // Dynamic property access
|
|
7387
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_CREATED_ON;
|
|
7042
7388
|
* const value = domainforwardprotocolset[propertyName];
|
|
7043
7389
|
* ```
|
|
7044
7390
|
*
|
|
7045
7391
|
* @see {@link DomainForwardProtocolSet} - The TypeScript type definition
|
|
7046
7392
|
* @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET} - Array of all keys for this type
|
|
7047
7393
|
*/
|
|
7048
|
-
export const
|
|
7394
|
+
export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_CREATED_ON: keyof DomainForwardProtocolSet = 'created_on';
|
|
7049
7395
|
/**
|
|
7050
|
-
*
|
|
7396
|
+
* Redirects
|
|
7051
7397
|
*
|
|
7052
7398
|
*
|
|
7053
|
-
* @type {
|
|
7399
|
+
* @type {array}
|
|
7054
7400
|
*
|
|
7055
7401
|
*
|
|
7056
7402
|
* @remarks
|
|
7057
|
-
* This key constant provides type-safe access to the `
|
|
7403
|
+
* This key constant provides type-safe access to the `redirects` property of DomainForwardProtocolSet objects.
|
|
7058
7404
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7059
7405
|
*
|
|
7060
7406
|
* @example
|
|
7061
7407
|
* ```typescript
|
|
7062
7408
|
* // Direct property access
|
|
7063
|
-
* const value = domainforwardprotocolset[
|
|
7409
|
+
* const value = domainforwardprotocolset[KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS];
|
|
7064
7410
|
*
|
|
7065
7411
|
* // Dynamic property access
|
|
7066
|
-
* const propertyName =
|
|
7412
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS;
|
|
7067
7413
|
* const value = domainforwardprotocolset[propertyName];
|
|
7068
7414
|
* ```
|
|
7069
7415
|
*
|
|
7070
7416
|
* @see {@link DomainForwardProtocolSet} - The TypeScript type definition
|
|
7071
7417
|
* @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET} - Array of all keys for this type
|
|
7072
7418
|
*/
|
|
7073
|
-
export const
|
|
7419
|
+
export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS: keyof DomainForwardProtocolSet = 'redirects';
|
|
7420
|
+
/**
|
|
7421
|
+
* Updated On
|
|
7422
|
+
*
|
|
7423
|
+
*
|
|
7424
|
+
* @type {string}
|
|
7425
|
+
*
|
|
7426
|
+
*
|
|
7427
|
+
* @remarks
|
|
7428
|
+
* This key constant provides type-safe access to the `updated_on` property of DomainForwardProtocolSet objects.
|
|
7429
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7430
|
+
*
|
|
7431
|
+
* @example
|
|
7432
|
+
* ```typescript
|
|
7433
|
+
* // Direct property access
|
|
7434
|
+
* const value = domainforwardprotocolset[KEY_DOMAIN_FORWARD_PROTOCOL_SET_UPDATED_ON];
|
|
7435
|
+
*
|
|
7436
|
+
* // Dynamic property access
|
|
7437
|
+
* const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_UPDATED_ON;
|
|
7438
|
+
* const value = domainforwardprotocolset[propertyName];
|
|
7439
|
+
* ```
|
|
7440
|
+
*
|
|
7441
|
+
* @see {@link DomainForwardProtocolSet} - The TypeScript type definition
|
|
7442
|
+
* @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET} - Array of all keys for this type
|
|
7443
|
+
*/
|
|
7444
|
+
export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_UPDATED_ON: keyof DomainForwardProtocolSet = 'updated_on';
|
|
7074
7445
|
|
|
7075
7446
|
/**
|
|
7076
7447
|
* Array of all DomainForwardProtocolSet property keys
|
|
@@ -7096,133 +7467,132 @@ export const KEYS_DOMAIN_FORWARD_PROTOCOL_SET = [
|
|
|
7096
7467
|
KEY_DOMAIN_FORWARD_PROTOCOL_SET_CREATED_ON,
|
|
7097
7468
|
KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS,
|
|
7098
7469
|
KEY_DOMAIN_FORWARD_PROTOCOL_SET_UPDATED_ON,
|
|
7099
|
-
KEY_DOMAIN_FORWARD_PROTOCOL_SET_WILDCARD,
|
|
7100
7470
|
] as const satisfies (keyof DomainForwardProtocolSet)[];
|
|
7101
7471
|
|
|
7102
7472
|
/**
|
|
7103
|
-
*
|
|
7473
|
+
* Results
|
|
7104
7474
|
*
|
|
7105
7475
|
*
|
|
7106
|
-
* @type {
|
|
7476
|
+
* @type {array}
|
|
7107
7477
|
*
|
|
7108
7478
|
*
|
|
7109
7479
|
* @remarks
|
|
7110
|
-
* This key constant provides type-safe access to the `
|
|
7480
|
+
* This key constant provides type-safe access to the `results` property of DomainForwardReferrerStats objects.
|
|
7111
7481
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7112
7482
|
*
|
|
7113
7483
|
* @example
|
|
7114
7484
|
* ```typescript
|
|
7115
7485
|
* // Direct property access
|
|
7116
|
-
* const value =
|
|
7486
|
+
* const value = domainforwardreferrerstats[KEY_DOMAIN_FORWARD_REFERRER_STATS_RESULTS];
|
|
7117
7487
|
*
|
|
7118
7488
|
* // Dynamic property access
|
|
7119
|
-
* const propertyName =
|
|
7120
|
-
* const value =
|
|
7489
|
+
* const propertyName = KEY_DOMAIN_FORWARD_REFERRER_STATS_RESULTS;
|
|
7490
|
+
* const value = domainforwardreferrerstats[propertyName];
|
|
7121
7491
|
* ```
|
|
7122
7492
|
*
|
|
7123
|
-
* @see {@link
|
|
7124
|
-
* @see {@link
|
|
7493
|
+
* @see {@link DomainForwardReferrerStats} - The TypeScript type definition
|
|
7494
|
+
* @see {@link KEYS_DOMAIN_FORWARD_REFERRER_STATS} - Array of all keys for this type
|
|
7125
7495
|
*/
|
|
7126
|
-
export const
|
|
7496
|
+
export const KEY_DOMAIN_FORWARD_REFERRER_STATS_RESULTS: keyof DomainForwardReferrerStats = 'results';
|
|
7497
|
+
|
|
7127
7498
|
/**
|
|
7128
|
-
*
|
|
7129
|
-
*
|
|
7130
|
-
*
|
|
7131
|
-
*
|
|
7499
|
+
* Array of all DomainForwardReferrerStats property keys
|
|
7132
7500
|
*
|
|
7133
7501
|
* @remarks
|
|
7134
|
-
* This
|
|
7135
|
-
*
|
|
7502
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardReferrerStats objects.
|
|
7503
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7136
7504
|
*
|
|
7137
7505
|
* @example
|
|
7138
7506
|
* ```typescript
|
|
7139
|
-
* //
|
|
7140
|
-
* const
|
|
7507
|
+
* // Iterating through all keys
|
|
7508
|
+
* for (const key of KEYS_DOMAIN_FORWARD_REFERRER_STATS) {
|
|
7509
|
+
* console.log(`Property: ${key}, Value: ${domainforwardreferrerstats[key]}`);
|
|
7510
|
+
* }
|
|
7141
7511
|
*
|
|
7142
|
-
* //
|
|
7143
|
-
* const
|
|
7144
|
-
* const value = domainforwardrequest[propertyName];
|
|
7512
|
+
* // Validation
|
|
7513
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_REFERRER_STATS.includes(someKey);
|
|
7145
7514
|
* ```
|
|
7146
7515
|
*
|
|
7147
|
-
* @see {@link
|
|
7148
|
-
* @see {@link KEYS_DOMAIN_FORWARD_REQUEST} - Array of all keys for this type
|
|
7516
|
+
* @see {@link DomainForwardReferrerStats} - The TypeScript type definition
|
|
7149
7517
|
*/
|
|
7150
|
-
export const
|
|
7518
|
+
export const KEYS_DOMAIN_FORWARD_REFERRER_STATS = [
|
|
7519
|
+
KEY_DOMAIN_FORWARD_REFERRER_STATS_RESULTS,
|
|
7520
|
+
] as const satisfies (keyof DomainForwardReferrerStats)[];
|
|
7521
|
+
|
|
7151
7522
|
/**
|
|
7152
|
-
*
|
|
7523
|
+
* protocol property
|
|
7153
7524
|
*
|
|
7154
7525
|
*
|
|
7155
7526
|
*
|
|
7156
7527
|
*
|
|
7157
7528
|
* @remarks
|
|
7158
|
-
* This key constant provides type-safe access to the `
|
|
7529
|
+
* This key constant provides type-safe access to the `protocol` property of DomainForwardSetCreateRequest objects.
|
|
7159
7530
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7160
7531
|
*
|
|
7161
7532
|
* @example
|
|
7162
7533
|
* ```typescript
|
|
7163
7534
|
* // Direct property access
|
|
7164
|
-
* const value =
|
|
7535
|
+
* const value = domainforwardsetcreaterequest[KEY_DOMAIN_FORWARD_SET_CREATE_REQUEST_PROTOCOL];
|
|
7165
7536
|
*
|
|
7166
7537
|
* // Dynamic property access
|
|
7167
|
-
* const propertyName =
|
|
7168
|
-
* const value =
|
|
7538
|
+
* const propertyName = KEY_DOMAIN_FORWARD_SET_CREATE_REQUEST_PROTOCOL;
|
|
7539
|
+
* const value = domainforwardsetcreaterequest[propertyName];
|
|
7169
7540
|
* ```
|
|
7170
7541
|
*
|
|
7171
|
-
* @see {@link
|
|
7172
|
-
* @see {@link
|
|
7542
|
+
* @see {@link DomainForwardSetCreateRequest} - The TypeScript type definition
|
|
7543
|
+
* @see {@link KEYS_DOMAIN_FORWARD_SET_CREATE_REQUEST} - Array of all keys for this type
|
|
7173
7544
|
*/
|
|
7174
|
-
export const
|
|
7545
|
+
export const KEY_DOMAIN_FORWARD_SET_CREATE_REQUEST_PROTOCOL: keyof DomainForwardSetCreateRequest = 'protocol';
|
|
7175
7546
|
/**
|
|
7176
|
-
*
|
|
7547
|
+
* Redirects
|
|
7177
7548
|
*
|
|
7178
7549
|
*
|
|
7550
|
+
* @type {array}
|
|
7179
7551
|
*
|
|
7180
7552
|
*
|
|
7181
7553
|
* @remarks
|
|
7182
|
-
* This key constant provides type-safe access to the `
|
|
7554
|
+
* This key constant provides type-safe access to the `redirects` property of DomainForwardSetCreateRequest objects.
|
|
7183
7555
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7184
7556
|
*
|
|
7185
7557
|
* @example
|
|
7186
7558
|
* ```typescript
|
|
7187
7559
|
* // Direct property access
|
|
7188
|
-
* const value =
|
|
7560
|
+
* const value = domainforwardsetcreaterequest[KEY_DOMAIN_FORWARD_SET_CREATE_REQUEST_REDIRECTS];
|
|
7189
7561
|
*
|
|
7190
7562
|
* // Dynamic property access
|
|
7191
|
-
* const propertyName =
|
|
7192
|
-
* const value =
|
|
7563
|
+
* const propertyName = KEY_DOMAIN_FORWARD_SET_CREATE_REQUEST_REDIRECTS;
|
|
7564
|
+
* const value = domainforwardsetcreaterequest[propertyName];
|
|
7193
7565
|
* ```
|
|
7194
7566
|
*
|
|
7195
|
-
* @see {@link
|
|
7196
|
-
* @see {@link
|
|
7567
|
+
* @see {@link DomainForwardSetCreateRequest} - The TypeScript type definition
|
|
7568
|
+
* @see {@link KEYS_DOMAIN_FORWARD_SET_CREATE_REQUEST} - Array of all keys for this type
|
|
7197
7569
|
*/
|
|
7198
|
-
export const
|
|
7570
|
+
export const KEY_DOMAIN_FORWARD_SET_CREATE_REQUEST_REDIRECTS: keyof DomainForwardSetCreateRequest = 'redirects';
|
|
7199
7571
|
|
|
7200
7572
|
/**
|
|
7201
|
-
* Array of all
|
|
7573
|
+
* Array of all DomainForwardSetCreateRequest property keys
|
|
7202
7574
|
*
|
|
7203
7575
|
* @remarks
|
|
7204
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
7576
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardSetCreateRequest objects.
|
|
7205
7577
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7206
7578
|
*
|
|
7207
7579
|
* @example
|
|
7208
7580
|
* ```typescript
|
|
7209
7581
|
* // Iterating through all keys
|
|
7210
|
-
* for (const key of
|
|
7211
|
-
* console.log(`Property: ${key}, Value: ${
|
|
7582
|
+
* for (const key of KEYS_DOMAIN_FORWARD_SET_CREATE_REQUEST) {
|
|
7583
|
+
* console.log(`Property: ${key}, Value: ${domainforwardsetcreaterequest[key]}`);
|
|
7212
7584
|
* }
|
|
7213
7585
|
*
|
|
7214
7586
|
* // Validation
|
|
7215
|
-
* const isValidKey =
|
|
7587
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_SET_CREATE_REQUEST.includes(someKey);
|
|
7216
7588
|
* ```
|
|
7217
7589
|
*
|
|
7218
|
-
* @see {@link
|
|
7590
|
+
* @see {@link DomainForwardSetCreateRequest} - The TypeScript type definition
|
|
7219
7591
|
*/
|
|
7220
|
-
export const
|
|
7221
|
-
|
|
7222
|
-
|
|
7223
|
-
|
|
7224
|
-
KEY_DOMAIN_FORWARD_REQUEST_WILDCARD,
|
|
7225
|
-
] as const satisfies (keyof DomainForwardRequest)[];
|
|
7592
|
+
export const KEYS_DOMAIN_FORWARD_SET_CREATE_REQUEST = [
|
|
7593
|
+
KEY_DOMAIN_FORWARD_SET_CREATE_REQUEST_PROTOCOL,
|
|
7594
|
+
KEY_DOMAIN_FORWARD_SET_CREATE_REQUEST_REDIRECTS,
|
|
7595
|
+
] as const satisfies (keyof DomainForwardSetCreateRequest)[];
|
|
7226
7596
|
|
|
7227
7597
|
/**
|
|
7228
7598
|
* Redirects
|
|
@@ -7347,111 +7717,235 @@ export const KEY_DOMAIN_FORWARD_SET_HOSTNAME: keyof DomainForwardSet = 'hostname
|
|
|
7347
7717
|
* @see {@link DomainForwardSet} - The TypeScript type definition
|
|
7348
7718
|
* @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
|
|
7349
7719
|
*/
|
|
7350
|
-
export const KEY_DOMAIN_FORWARD_SET_PROTOCOL: keyof DomainForwardSet = 'protocol';
|
|
7720
|
+
export const KEY_DOMAIN_FORWARD_SET_PROTOCOL: keyof DomainForwardSet = 'protocol';
|
|
7721
|
+
/**
|
|
7722
|
+
* Redirects
|
|
7723
|
+
*
|
|
7724
|
+
*
|
|
7725
|
+
* @type {array}
|
|
7726
|
+
*
|
|
7727
|
+
*
|
|
7728
|
+
* @remarks
|
|
7729
|
+
* This key constant provides type-safe access to the `redirects` property of DomainForwardSet objects.
|
|
7730
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7731
|
+
*
|
|
7732
|
+
* @example
|
|
7733
|
+
* ```typescript
|
|
7734
|
+
* // Direct property access
|
|
7735
|
+
* const value = domainforwardset[KEY_DOMAIN_FORWARD_SET_REDIRECTS];
|
|
7736
|
+
*
|
|
7737
|
+
* // Dynamic property access
|
|
7738
|
+
* const propertyName = KEY_DOMAIN_FORWARD_SET_REDIRECTS;
|
|
7739
|
+
* const value = domainforwardset[propertyName];
|
|
7740
|
+
* ```
|
|
7741
|
+
*
|
|
7742
|
+
* @see {@link DomainForwardSet} - The TypeScript type definition
|
|
7743
|
+
* @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
|
|
7744
|
+
*/
|
|
7745
|
+
export const KEY_DOMAIN_FORWARD_SET_REDIRECTS: keyof DomainForwardSet = 'redirects';
|
|
7746
|
+
/**
|
|
7747
|
+
* Updated On
|
|
7748
|
+
*
|
|
7749
|
+
*
|
|
7750
|
+
* @type {string}
|
|
7751
|
+
*
|
|
7752
|
+
*
|
|
7753
|
+
* @remarks
|
|
7754
|
+
* This key constant provides type-safe access to the `updated_on` property of DomainForwardSet objects.
|
|
7755
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7756
|
+
*
|
|
7757
|
+
* @example
|
|
7758
|
+
* ```typescript
|
|
7759
|
+
* // Direct property access
|
|
7760
|
+
* const value = domainforwardset[KEY_DOMAIN_FORWARD_SET_UPDATED_ON];
|
|
7761
|
+
*
|
|
7762
|
+
* // Dynamic property access
|
|
7763
|
+
* const propertyName = KEY_DOMAIN_FORWARD_SET_UPDATED_ON;
|
|
7764
|
+
* const value = domainforwardset[propertyName];
|
|
7765
|
+
* ```
|
|
7766
|
+
*
|
|
7767
|
+
* @see {@link DomainForwardSet} - The TypeScript type definition
|
|
7768
|
+
* @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
|
|
7769
|
+
*/
|
|
7770
|
+
export const KEY_DOMAIN_FORWARD_SET_UPDATED_ON: keyof DomainForwardSet = 'updated_on';
|
|
7771
|
+
|
|
7772
|
+
/**
|
|
7773
|
+
* Array of all DomainForwardSet property keys
|
|
7774
|
+
*
|
|
7775
|
+
* @remarks
|
|
7776
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardSet objects.
|
|
7777
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7778
|
+
*
|
|
7779
|
+
* @example
|
|
7780
|
+
* ```typescript
|
|
7781
|
+
* // Iterating through all keys
|
|
7782
|
+
* for (const key of KEYS_DOMAIN_FORWARD_SET) {
|
|
7783
|
+
* console.log(`Property: ${key}, Value: ${domainforwardset[key]}`);
|
|
7784
|
+
* }
|
|
7785
|
+
*
|
|
7786
|
+
* // Validation
|
|
7787
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_SET.includes(someKey);
|
|
7788
|
+
* ```
|
|
7789
|
+
*
|
|
7790
|
+
* @see {@link DomainForwardSet} - The TypeScript type definition
|
|
7791
|
+
*/
|
|
7792
|
+
export const KEYS_DOMAIN_FORWARD_SET = [
|
|
7793
|
+
KEY_DOMAIN_FORWARD_SET_CREATED_ON,
|
|
7794
|
+
KEY_DOMAIN_FORWARD_SET_HOSTNAME,
|
|
7795
|
+
KEY_DOMAIN_FORWARD_SET_PROTOCOL,
|
|
7796
|
+
KEY_DOMAIN_FORWARD_SET_REDIRECTS,
|
|
7797
|
+
KEY_DOMAIN_FORWARD_SET_UPDATED_ON,
|
|
7798
|
+
] as const satisfies (keyof DomainForwardSet)[];
|
|
7799
|
+
|
|
7800
|
+
/**
|
|
7801
|
+
* Results
|
|
7802
|
+
*
|
|
7803
|
+
*
|
|
7804
|
+
* @type {array}
|
|
7805
|
+
*
|
|
7806
|
+
*
|
|
7807
|
+
* @remarks
|
|
7808
|
+
* This key constant provides type-safe access to the `results` property of DomainForwardStatusCodeStats objects.
|
|
7809
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7810
|
+
*
|
|
7811
|
+
* @example
|
|
7812
|
+
* ```typescript
|
|
7813
|
+
* // Direct property access
|
|
7814
|
+
* const value = domainforwardstatuscodestats[KEY_DOMAIN_FORWARD_STATUS_CODE_STATS_RESULTS];
|
|
7815
|
+
*
|
|
7816
|
+
* // Dynamic property access
|
|
7817
|
+
* const propertyName = KEY_DOMAIN_FORWARD_STATUS_CODE_STATS_RESULTS;
|
|
7818
|
+
* const value = domainforwardstatuscodestats[propertyName];
|
|
7819
|
+
* ```
|
|
7820
|
+
*
|
|
7821
|
+
* @see {@link DomainForwardStatusCodeStats} - The TypeScript type definition
|
|
7822
|
+
* @see {@link KEYS_DOMAIN_FORWARD_STATUS_CODE_STATS} - Array of all keys for this type
|
|
7823
|
+
*/
|
|
7824
|
+
export const KEY_DOMAIN_FORWARD_STATUS_CODE_STATS_RESULTS: keyof DomainForwardStatusCodeStats = 'results';
|
|
7825
|
+
|
|
7826
|
+
/**
|
|
7827
|
+
* Array of all DomainForwardStatusCodeStats property keys
|
|
7828
|
+
*
|
|
7829
|
+
* @remarks
|
|
7830
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardStatusCodeStats objects.
|
|
7831
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7832
|
+
*
|
|
7833
|
+
* @example
|
|
7834
|
+
* ```typescript
|
|
7835
|
+
* // Iterating through all keys
|
|
7836
|
+
* for (const key of KEYS_DOMAIN_FORWARD_STATUS_CODE_STATS) {
|
|
7837
|
+
* console.log(`Property: ${key}, Value: ${domainforwardstatuscodestats[key]}`);
|
|
7838
|
+
* }
|
|
7839
|
+
*
|
|
7840
|
+
* // Validation
|
|
7841
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_STATUS_CODE_STATS.includes(someKey);
|
|
7842
|
+
* ```
|
|
7843
|
+
*
|
|
7844
|
+
* @see {@link DomainForwardStatusCodeStats} - The TypeScript type definition
|
|
7845
|
+
*/
|
|
7846
|
+
export const KEYS_DOMAIN_FORWARD_STATUS_CODE_STATS = [
|
|
7847
|
+
KEY_DOMAIN_FORWARD_STATUS_CODE_STATS_RESULTS,
|
|
7848
|
+
] as const satisfies (keyof DomainForwardStatusCodeStats)[];
|
|
7849
|
+
|
|
7351
7850
|
/**
|
|
7352
|
-
*
|
|
7851
|
+
* Results
|
|
7353
7852
|
*
|
|
7354
7853
|
*
|
|
7355
7854
|
* @type {array}
|
|
7356
7855
|
*
|
|
7357
7856
|
*
|
|
7358
7857
|
* @remarks
|
|
7359
|
-
* This key constant provides type-safe access to the `
|
|
7858
|
+
* This key constant provides type-safe access to the `results` property of DomainForwardUserAgentStats objects.
|
|
7360
7859
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7361
7860
|
*
|
|
7362
7861
|
* @example
|
|
7363
7862
|
* ```typescript
|
|
7364
7863
|
* // Direct property access
|
|
7365
|
-
* const value =
|
|
7864
|
+
* const value = domainforwarduseragentstats[KEY_DOMAIN_FORWARD_USER_AGENT_STATS_RESULTS];
|
|
7366
7865
|
*
|
|
7367
7866
|
* // Dynamic property access
|
|
7368
|
-
* const propertyName =
|
|
7369
|
-
* const value =
|
|
7867
|
+
* const propertyName = KEY_DOMAIN_FORWARD_USER_AGENT_STATS_RESULTS;
|
|
7868
|
+
* const value = domainforwarduseragentstats[propertyName];
|
|
7370
7869
|
* ```
|
|
7371
7870
|
*
|
|
7372
|
-
* @see {@link
|
|
7373
|
-
* @see {@link
|
|
7871
|
+
* @see {@link DomainForwardUserAgentStats} - The TypeScript type definition
|
|
7872
|
+
* @see {@link KEYS_DOMAIN_FORWARD_USER_AGENT_STATS} - Array of all keys for this type
|
|
7374
7873
|
*/
|
|
7375
|
-
export const
|
|
7874
|
+
export const KEY_DOMAIN_FORWARD_USER_AGENT_STATS_RESULTS: keyof DomainForwardUserAgentStats = 'results';
|
|
7875
|
+
|
|
7376
7876
|
/**
|
|
7377
|
-
*
|
|
7378
|
-
*
|
|
7379
|
-
*
|
|
7380
|
-
* @type {string}
|
|
7381
|
-
*
|
|
7877
|
+
* Array of all DomainForwardUserAgentStats property keys
|
|
7382
7878
|
*
|
|
7383
7879
|
* @remarks
|
|
7384
|
-
* This
|
|
7385
|
-
*
|
|
7880
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardUserAgentStats objects.
|
|
7881
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7386
7882
|
*
|
|
7387
7883
|
* @example
|
|
7388
7884
|
* ```typescript
|
|
7389
|
-
* //
|
|
7390
|
-
* const
|
|
7885
|
+
* // Iterating through all keys
|
|
7886
|
+
* for (const key of KEYS_DOMAIN_FORWARD_USER_AGENT_STATS) {
|
|
7887
|
+
* console.log(`Property: ${key}, Value: ${domainforwarduseragentstats[key]}`);
|
|
7888
|
+
* }
|
|
7391
7889
|
*
|
|
7392
|
-
* //
|
|
7393
|
-
* const
|
|
7394
|
-
* const value = domainforwardset[propertyName];
|
|
7890
|
+
* // Validation
|
|
7891
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_USER_AGENT_STATS.includes(someKey);
|
|
7395
7892
|
* ```
|
|
7396
7893
|
*
|
|
7397
|
-
* @see {@link
|
|
7398
|
-
* @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
|
|
7894
|
+
* @see {@link DomainForwardUserAgentStats} - The TypeScript type definition
|
|
7399
7895
|
*/
|
|
7400
|
-
export const
|
|
7896
|
+
export const KEYS_DOMAIN_FORWARD_USER_AGENT_STATS = [
|
|
7897
|
+
KEY_DOMAIN_FORWARD_USER_AGENT_STATS_RESULTS,
|
|
7898
|
+
] as const satisfies (keyof DomainForwardUserAgentStats)[];
|
|
7899
|
+
|
|
7401
7900
|
/**
|
|
7402
|
-
*
|
|
7901
|
+
* Results
|
|
7403
7902
|
*
|
|
7404
7903
|
*
|
|
7405
|
-
* @type {
|
|
7904
|
+
* @type {array}
|
|
7406
7905
|
*
|
|
7407
7906
|
*
|
|
7408
7907
|
* @remarks
|
|
7409
|
-
* This key constant provides type-safe access to the `
|
|
7908
|
+
* This key constant provides type-safe access to the `results` property of DomainForwardVisitsByKey objects.
|
|
7410
7909
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
7411
7910
|
*
|
|
7412
7911
|
* @example
|
|
7413
7912
|
* ```typescript
|
|
7414
7913
|
* // Direct property access
|
|
7415
|
-
* const value =
|
|
7914
|
+
* const value = domainforwardvisitsbykey[KEY_DOMAIN_FORWARD_VISITS_BY_KEY_RESULTS];
|
|
7416
7915
|
*
|
|
7417
7916
|
* // Dynamic property access
|
|
7418
|
-
* const propertyName =
|
|
7419
|
-
* const value =
|
|
7917
|
+
* const propertyName = KEY_DOMAIN_FORWARD_VISITS_BY_KEY_RESULTS;
|
|
7918
|
+
* const value = domainforwardvisitsbykey[propertyName];
|
|
7420
7919
|
* ```
|
|
7421
7920
|
*
|
|
7422
|
-
* @see {@link
|
|
7423
|
-
* @see {@link
|
|
7921
|
+
* @see {@link DomainForwardVisitsByKey} - The TypeScript type definition
|
|
7922
|
+
* @see {@link KEYS_DOMAIN_FORWARD_VISITS_BY_KEY} - Array of all keys for this type
|
|
7424
7923
|
*/
|
|
7425
|
-
export const
|
|
7924
|
+
export const KEY_DOMAIN_FORWARD_VISITS_BY_KEY_RESULTS: keyof DomainForwardVisitsByKey = 'results';
|
|
7426
7925
|
|
|
7427
7926
|
/**
|
|
7428
|
-
* Array of all
|
|
7927
|
+
* Array of all DomainForwardVisitsByKey property keys
|
|
7429
7928
|
*
|
|
7430
7929
|
* @remarks
|
|
7431
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
7930
|
+
* This constant provides a readonly array containing all valid property keys for DomainForwardVisitsByKey objects.
|
|
7432
7931
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
7433
7932
|
*
|
|
7434
7933
|
* @example
|
|
7435
7934
|
* ```typescript
|
|
7436
7935
|
* // Iterating through all keys
|
|
7437
|
-
* for (const key of
|
|
7438
|
-
* console.log(`Property: ${key}, Value: ${
|
|
7936
|
+
* for (const key of KEYS_DOMAIN_FORWARD_VISITS_BY_KEY) {
|
|
7937
|
+
* console.log(`Property: ${key}, Value: ${domainforwardvisitsbykey[key]}`);
|
|
7439
7938
|
* }
|
|
7440
7939
|
*
|
|
7441
7940
|
* // Validation
|
|
7442
|
-
* const isValidKey =
|
|
7941
|
+
* const isValidKey = KEYS_DOMAIN_FORWARD_VISITS_BY_KEY.includes(someKey);
|
|
7443
7942
|
* ```
|
|
7444
7943
|
*
|
|
7445
|
-
* @see {@link
|
|
7944
|
+
* @see {@link DomainForwardVisitsByKey} - The TypeScript type definition
|
|
7446
7945
|
*/
|
|
7447
|
-
export const
|
|
7448
|
-
|
|
7449
|
-
|
|
7450
|
-
KEY_DOMAIN_FORWARD_SET_PROTOCOL,
|
|
7451
|
-
KEY_DOMAIN_FORWARD_SET_REDIRECTS,
|
|
7452
|
-
KEY_DOMAIN_FORWARD_SET_UPDATED_ON,
|
|
7453
|
-
KEY_DOMAIN_FORWARD_SET_WILDCARD,
|
|
7454
|
-
] as const satisfies (keyof DomainForwardSet)[];
|
|
7946
|
+
export const KEYS_DOMAIN_FORWARD_VISITS_BY_KEY = [
|
|
7947
|
+
KEY_DOMAIN_FORWARD_VISITS_BY_KEY_RESULTS,
|
|
7948
|
+
] as const satisfies (keyof DomainForwardVisitsByKey)[];
|
|
7455
7949
|
|
|
7456
7950
|
/**
|
|
7457
7951
|
* Domain Forwards
|
|
@@ -12457,6 +12951,82 @@ export const KEYS_GENERAL_AVAILABILITY_BASE = [
|
|
|
12457
12951
|
KEY_GENERAL_AVAILABILITY_BASE_START_DATE,
|
|
12458
12952
|
] as const satisfies (keyof GeneralAvailabilityBase)[];
|
|
12459
12953
|
|
|
12954
|
+
/**
|
|
12955
|
+
* Key
|
|
12956
|
+
*
|
|
12957
|
+
*
|
|
12958
|
+
* @type {string}
|
|
12959
|
+
*
|
|
12960
|
+
*
|
|
12961
|
+
* @remarks
|
|
12962
|
+
* This key constant provides type-safe access to the `key` property of GeoStatsBucket objects.
|
|
12963
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
12964
|
+
*
|
|
12965
|
+
* @example
|
|
12966
|
+
* ```typescript
|
|
12967
|
+
* // Direct property access
|
|
12968
|
+
* const value = geostatsbucket[KEY_GEO_STATS_BUCKET_KEY];
|
|
12969
|
+
*
|
|
12970
|
+
* // Dynamic property access
|
|
12971
|
+
* const propertyName = KEY_GEO_STATS_BUCKET_KEY;
|
|
12972
|
+
* const value = geostatsbucket[propertyName];
|
|
12973
|
+
* ```
|
|
12974
|
+
*
|
|
12975
|
+
* @see {@link GeoStatsBucket} - The TypeScript type definition
|
|
12976
|
+
* @see {@link KEYS_GEO_STATS_BUCKET} - Array of all keys for this type
|
|
12977
|
+
*/
|
|
12978
|
+
export const KEY_GEO_STATS_BUCKET_KEY: keyof GeoStatsBucket = 'key';
|
|
12979
|
+
/**
|
|
12980
|
+
* Total
|
|
12981
|
+
*
|
|
12982
|
+
*
|
|
12983
|
+
* @type {integer}
|
|
12984
|
+
*
|
|
12985
|
+
*
|
|
12986
|
+
* @remarks
|
|
12987
|
+
* This key constant provides type-safe access to the `total` property of GeoStatsBucket objects.
|
|
12988
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
12989
|
+
*
|
|
12990
|
+
* @example
|
|
12991
|
+
* ```typescript
|
|
12992
|
+
* // Direct property access
|
|
12993
|
+
* const value = geostatsbucket[KEY_GEO_STATS_BUCKET_TOTAL];
|
|
12994
|
+
*
|
|
12995
|
+
* // Dynamic property access
|
|
12996
|
+
* const propertyName = KEY_GEO_STATS_BUCKET_TOTAL;
|
|
12997
|
+
* const value = geostatsbucket[propertyName];
|
|
12998
|
+
* ```
|
|
12999
|
+
*
|
|
13000
|
+
* @see {@link GeoStatsBucket} - The TypeScript type definition
|
|
13001
|
+
* @see {@link KEYS_GEO_STATS_BUCKET} - Array of all keys for this type
|
|
13002
|
+
*/
|
|
13003
|
+
export const KEY_GEO_STATS_BUCKET_TOTAL: keyof GeoStatsBucket = 'total';
|
|
13004
|
+
|
|
13005
|
+
/**
|
|
13006
|
+
* Array of all GeoStatsBucket property keys
|
|
13007
|
+
*
|
|
13008
|
+
* @remarks
|
|
13009
|
+
* This constant provides a readonly array containing all valid property keys for GeoStatsBucket objects.
|
|
13010
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
13011
|
+
*
|
|
13012
|
+
* @example
|
|
13013
|
+
* ```typescript
|
|
13014
|
+
* // Iterating through all keys
|
|
13015
|
+
* for (const key of KEYS_GEO_STATS_BUCKET) {
|
|
13016
|
+
* console.log(`Property: ${key}, Value: ${geostatsbucket[key]}`);
|
|
13017
|
+
* }
|
|
13018
|
+
*
|
|
13019
|
+
* // Validation
|
|
13020
|
+
* const isValidKey = KEYS_GEO_STATS_BUCKET.includes(someKey);
|
|
13021
|
+
* ```
|
|
13022
|
+
*
|
|
13023
|
+
* @see {@link GeoStatsBucket} - The TypeScript type definition
|
|
13024
|
+
*/
|
|
13025
|
+
export const KEYS_GEO_STATS_BUCKET = [
|
|
13026
|
+
KEY_GEO_STATS_BUCKET_KEY,
|
|
13027
|
+
KEY_GEO_STATS_BUCKET_TOTAL,
|
|
13028
|
+
] as const satisfies (keyof GeoStatsBucket)[];
|
|
13029
|
+
|
|
12460
13030
|
/**
|
|
12461
13031
|
* Prices
|
|
12462
13032
|
*
|
|
@@ -18148,6 +18718,108 @@ export const KEYS_PERMISSION_SET = [
|
|
|
18148
18718
|
KEY_PERMISSION_SET_PERMISSIONS,
|
|
18149
18719
|
] as const satisfies (keyof PermissionSet)[];
|
|
18150
18720
|
|
|
18721
|
+
/**
|
|
18722
|
+
* Key
|
|
18723
|
+
*
|
|
18724
|
+
*
|
|
18725
|
+
* @type {string}
|
|
18726
|
+
*
|
|
18727
|
+
*
|
|
18728
|
+
* @remarks
|
|
18729
|
+
* This key constant provides type-safe access to the `key` property of PlatformStatsBucket objects.
|
|
18730
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
18731
|
+
*
|
|
18732
|
+
* @example
|
|
18733
|
+
* ```typescript
|
|
18734
|
+
* // Direct property access
|
|
18735
|
+
* const value = platformstatsbucket[KEY_PLATFORM_STATS_BUCKET_KEY];
|
|
18736
|
+
*
|
|
18737
|
+
* // Dynamic property access
|
|
18738
|
+
* const propertyName = KEY_PLATFORM_STATS_BUCKET_KEY;
|
|
18739
|
+
* const value = platformstatsbucket[propertyName];
|
|
18740
|
+
* ```
|
|
18741
|
+
*
|
|
18742
|
+
* @see {@link PlatformStatsBucket} - The TypeScript type definition
|
|
18743
|
+
* @see {@link KEYS_PLATFORM_STATS_BUCKET} - Array of all keys for this type
|
|
18744
|
+
*/
|
|
18745
|
+
export const KEY_PLATFORM_STATS_BUCKET_KEY: keyof PlatformStatsBucket = 'key';
|
|
18746
|
+
/**
|
|
18747
|
+
* Total
|
|
18748
|
+
*
|
|
18749
|
+
*
|
|
18750
|
+
* @type {integer}
|
|
18751
|
+
*
|
|
18752
|
+
*
|
|
18753
|
+
* @remarks
|
|
18754
|
+
* This key constant provides type-safe access to the `total` property of PlatformStatsBucket objects.
|
|
18755
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
18756
|
+
*
|
|
18757
|
+
* @example
|
|
18758
|
+
* ```typescript
|
|
18759
|
+
* // Direct property access
|
|
18760
|
+
* const value = platformstatsbucket[KEY_PLATFORM_STATS_BUCKET_TOTAL];
|
|
18761
|
+
*
|
|
18762
|
+
* // Dynamic property access
|
|
18763
|
+
* const propertyName = KEY_PLATFORM_STATS_BUCKET_TOTAL;
|
|
18764
|
+
* const value = platformstatsbucket[propertyName];
|
|
18765
|
+
* ```
|
|
18766
|
+
*
|
|
18767
|
+
* @see {@link PlatformStatsBucket} - The TypeScript type definition
|
|
18768
|
+
* @see {@link KEYS_PLATFORM_STATS_BUCKET} - Array of all keys for this type
|
|
18769
|
+
*/
|
|
18770
|
+
export const KEY_PLATFORM_STATS_BUCKET_TOTAL: keyof PlatformStatsBucket = 'total';
|
|
18771
|
+
/**
|
|
18772
|
+
* Unique
|
|
18773
|
+
*
|
|
18774
|
+
*
|
|
18775
|
+
* @type {integer}
|
|
18776
|
+
*
|
|
18777
|
+
*
|
|
18778
|
+
* @remarks
|
|
18779
|
+
* This key constant provides type-safe access to the `unique` property of PlatformStatsBucket objects.
|
|
18780
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
18781
|
+
*
|
|
18782
|
+
* @example
|
|
18783
|
+
* ```typescript
|
|
18784
|
+
* // Direct property access
|
|
18785
|
+
* const value = platformstatsbucket[KEY_PLATFORM_STATS_BUCKET_UNIQUE];
|
|
18786
|
+
*
|
|
18787
|
+
* // Dynamic property access
|
|
18788
|
+
* const propertyName = KEY_PLATFORM_STATS_BUCKET_UNIQUE;
|
|
18789
|
+
* const value = platformstatsbucket[propertyName];
|
|
18790
|
+
* ```
|
|
18791
|
+
*
|
|
18792
|
+
* @see {@link PlatformStatsBucket} - The TypeScript type definition
|
|
18793
|
+
* @see {@link KEYS_PLATFORM_STATS_BUCKET} - Array of all keys for this type
|
|
18794
|
+
*/
|
|
18795
|
+
export const KEY_PLATFORM_STATS_BUCKET_UNIQUE: keyof PlatformStatsBucket = 'unique';
|
|
18796
|
+
|
|
18797
|
+
/**
|
|
18798
|
+
* Array of all PlatformStatsBucket property keys
|
|
18799
|
+
*
|
|
18800
|
+
* @remarks
|
|
18801
|
+
* This constant provides a readonly array containing all valid property keys for PlatformStatsBucket objects.
|
|
18802
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
18803
|
+
*
|
|
18804
|
+
* @example
|
|
18805
|
+
* ```typescript
|
|
18806
|
+
* // Iterating through all keys
|
|
18807
|
+
* for (const key of KEYS_PLATFORM_STATS_BUCKET) {
|
|
18808
|
+
* console.log(`Property: ${key}, Value: ${platformstatsbucket[key]}`);
|
|
18809
|
+
* }
|
|
18810
|
+
*
|
|
18811
|
+
* // Validation
|
|
18812
|
+
* const isValidKey = KEYS_PLATFORM_STATS_BUCKET.includes(someKey);
|
|
18813
|
+
* ```
|
|
18814
|
+
*
|
|
18815
|
+
* @see {@link PlatformStatsBucket} - The TypeScript type definition
|
|
18816
|
+
*/
|
|
18817
|
+
export const KEYS_PLATFORM_STATS_BUCKET = [
|
|
18818
|
+
KEY_PLATFORM_STATS_BUCKET_KEY,
|
|
18819
|
+
KEY_PLATFORM_STATS_BUCKET_TOTAL,
|
|
18820
|
+
KEY_PLATFORM_STATS_BUCKET_UNIQUE,
|
|
18821
|
+
] as const satisfies (keyof PlatformStatsBucket)[];
|
|
18822
|
+
|
|
18151
18823
|
/**
|
|
18152
18824
|
* Affects
|
|
18153
18825
|
*
|
|
@@ -18752,41 +19424,143 @@ export const KEYS_PUBLIC_AUTH_REQUEST_FORM = [
|
|
|
18752
19424
|
* @example
|
|
18753
19425
|
* ```typescript
|
|
18754
19426
|
* // Direct property access
|
|
18755
|
-
* const value = rdapbase[KEY_RDAP_BASE_RDAP_SERVER];
|
|
19427
|
+
* const value = rdapbase[KEY_RDAP_BASE_RDAP_SERVER];
|
|
19428
|
+
*
|
|
19429
|
+
* // Dynamic property access
|
|
19430
|
+
* const propertyName = KEY_RDAP_BASE_RDAP_SERVER;
|
|
19431
|
+
* const value = rdapbase[propertyName];
|
|
19432
|
+
* ```
|
|
19433
|
+
*
|
|
19434
|
+
* @see {@link RdapBase} - The TypeScript type definition
|
|
19435
|
+
* @see {@link KEYS_RDAP_BASE} - Array of all keys for this type
|
|
19436
|
+
*/
|
|
19437
|
+
export const KEY_RDAP_BASE_RDAP_SERVER: keyof RdapBase = 'rdap_server';
|
|
19438
|
+
|
|
19439
|
+
/**
|
|
19440
|
+
* Array of all RdapBase property keys
|
|
19441
|
+
*
|
|
19442
|
+
* @remarks
|
|
19443
|
+
* This constant provides a readonly array containing all valid property keys for RdapBase objects.
|
|
19444
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
19445
|
+
*
|
|
19446
|
+
* @example
|
|
19447
|
+
* ```typescript
|
|
19448
|
+
* // Iterating through all keys
|
|
19449
|
+
* for (const key of KEYS_RDAP_BASE) {
|
|
19450
|
+
* console.log(`Property: ${key}, Value: ${rdapbase[key]}`);
|
|
19451
|
+
* }
|
|
19452
|
+
*
|
|
19453
|
+
* // Validation
|
|
19454
|
+
* const isValidKey = KEYS_RDAP_BASE.includes(someKey);
|
|
19455
|
+
* ```
|
|
19456
|
+
*
|
|
19457
|
+
* @see {@link RdapBase} - The TypeScript type definition
|
|
19458
|
+
*/
|
|
19459
|
+
export const KEYS_RDAP_BASE = [
|
|
19460
|
+
KEY_RDAP_BASE_RDAP_SERVER,
|
|
19461
|
+
] as const satisfies (keyof RdapBase)[];
|
|
19462
|
+
|
|
19463
|
+
/**
|
|
19464
|
+
* Key
|
|
19465
|
+
*
|
|
19466
|
+
*
|
|
19467
|
+
* @type {string}
|
|
19468
|
+
*
|
|
19469
|
+
*
|
|
19470
|
+
* @remarks
|
|
19471
|
+
* This key constant provides type-safe access to the `key` property of ReferrerStatsBucket objects.
|
|
19472
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
19473
|
+
*
|
|
19474
|
+
* @example
|
|
19475
|
+
* ```typescript
|
|
19476
|
+
* // Direct property access
|
|
19477
|
+
* const value = referrerstatsbucket[KEY_REFERRER_STATS_BUCKET_KEY];
|
|
19478
|
+
*
|
|
19479
|
+
* // Dynamic property access
|
|
19480
|
+
* const propertyName = KEY_REFERRER_STATS_BUCKET_KEY;
|
|
19481
|
+
* const value = referrerstatsbucket[propertyName];
|
|
19482
|
+
* ```
|
|
19483
|
+
*
|
|
19484
|
+
* @see {@link ReferrerStatsBucket} - The TypeScript type definition
|
|
19485
|
+
* @see {@link KEYS_REFERRER_STATS_BUCKET} - Array of all keys for this type
|
|
19486
|
+
*/
|
|
19487
|
+
export const KEY_REFERRER_STATS_BUCKET_KEY: keyof ReferrerStatsBucket = 'key';
|
|
19488
|
+
/**
|
|
19489
|
+
* Total
|
|
19490
|
+
*
|
|
19491
|
+
*
|
|
19492
|
+
* @type {integer}
|
|
19493
|
+
*
|
|
19494
|
+
*
|
|
19495
|
+
* @remarks
|
|
19496
|
+
* This key constant provides type-safe access to the `total` property of ReferrerStatsBucket objects.
|
|
19497
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
19498
|
+
*
|
|
19499
|
+
* @example
|
|
19500
|
+
* ```typescript
|
|
19501
|
+
* // Direct property access
|
|
19502
|
+
* const value = referrerstatsbucket[KEY_REFERRER_STATS_BUCKET_TOTAL];
|
|
19503
|
+
*
|
|
19504
|
+
* // Dynamic property access
|
|
19505
|
+
* const propertyName = KEY_REFERRER_STATS_BUCKET_TOTAL;
|
|
19506
|
+
* const value = referrerstatsbucket[propertyName];
|
|
19507
|
+
* ```
|
|
19508
|
+
*
|
|
19509
|
+
* @see {@link ReferrerStatsBucket} - The TypeScript type definition
|
|
19510
|
+
* @see {@link KEYS_REFERRER_STATS_BUCKET} - Array of all keys for this type
|
|
19511
|
+
*/
|
|
19512
|
+
export const KEY_REFERRER_STATS_BUCKET_TOTAL: keyof ReferrerStatsBucket = 'total';
|
|
19513
|
+
/**
|
|
19514
|
+
* Unique
|
|
19515
|
+
*
|
|
19516
|
+
*
|
|
19517
|
+
* @type {integer}
|
|
19518
|
+
*
|
|
19519
|
+
*
|
|
19520
|
+
* @remarks
|
|
19521
|
+
* This key constant provides type-safe access to the `unique` property of ReferrerStatsBucket objects.
|
|
19522
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
19523
|
+
*
|
|
19524
|
+
* @example
|
|
19525
|
+
* ```typescript
|
|
19526
|
+
* // Direct property access
|
|
19527
|
+
* const value = referrerstatsbucket[KEY_REFERRER_STATS_BUCKET_UNIQUE];
|
|
18756
19528
|
*
|
|
18757
19529
|
* // Dynamic property access
|
|
18758
|
-
* const propertyName =
|
|
18759
|
-
* const value =
|
|
19530
|
+
* const propertyName = KEY_REFERRER_STATS_BUCKET_UNIQUE;
|
|
19531
|
+
* const value = referrerstatsbucket[propertyName];
|
|
18760
19532
|
* ```
|
|
18761
19533
|
*
|
|
18762
|
-
* @see {@link
|
|
18763
|
-
* @see {@link
|
|
19534
|
+
* @see {@link ReferrerStatsBucket} - The TypeScript type definition
|
|
19535
|
+
* @see {@link KEYS_REFERRER_STATS_BUCKET} - Array of all keys for this type
|
|
18764
19536
|
*/
|
|
18765
|
-
export const
|
|
19537
|
+
export const KEY_REFERRER_STATS_BUCKET_UNIQUE: keyof ReferrerStatsBucket = 'unique';
|
|
18766
19538
|
|
|
18767
19539
|
/**
|
|
18768
|
-
* Array of all
|
|
19540
|
+
* Array of all ReferrerStatsBucket property keys
|
|
18769
19541
|
*
|
|
18770
19542
|
* @remarks
|
|
18771
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
19543
|
+
* This constant provides a readonly array containing all valid property keys for ReferrerStatsBucket objects.
|
|
18772
19544
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
18773
19545
|
*
|
|
18774
19546
|
* @example
|
|
18775
19547
|
* ```typescript
|
|
18776
19548
|
* // Iterating through all keys
|
|
18777
|
-
* for (const key of
|
|
18778
|
-
* console.log(`Property: ${key}, Value: ${
|
|
19549
|
+
* for (const key of KEYS_REFERRER_STATS_BUCKET) {
|
|
19550
|
+
* console.log(`Property: ${key}, Value: ${referrerstatsbucket[key]}`);
|
|
18779
19551
|
* }
|
|
18780
19552
|
*
|
|
18781
19553
|
* // Validation
|
|
18782
|
-
* const isValidKey =
|
|
19554
|
+
* const isValidKey = KEYS_REFERRER_STATS_BUCKET.includes(someKey);
|
|
18783
19555
|
* ```
|
|
18784
19556
|
*
|
|
18785
|
-
* @see {@link
|
|
19557
|
+
* @see {@link ReferrerStatsBucket} - The TypeScript type definition
|
|
18786
19558
|
*/
|
|
18787
|
-
export const
|
|
18788
|
-
|
|
18789
|
-
|
|
19559
|
+
export const KEYS_REFERRER_STATS_BUCKET = [
|
|
19560
|
+
KEY_REFERRER_STATS_BUCKET_KEY,
|
|
19561
|
+
KEY_REFERRER_STATS_BUCKET_TOTAL,
|
|
19562
|
+
KEY_REFERRER_STATS_BUCKET_UNIQUE,
|
|
19563
|
+
] as const satisfies (keyof ReferrerStatsBucket)[];
|
|
18790
19564
|
|
|
18791
19565
|
/**
|
|
18792
19566
|
* Prevents
|
|
@@ -19695,6 +20469,158 @@ export const KEYS_SPICE_DB_RELATIONSHIP_UPDATE = [
|
|
|
19695
20469
|
KEY_SPICE_DB_RELATIONSHIP_UPDATE_REMOVE,
|
|
19696
20470
|
] as const satisfies (keyof SpiceDbRelationshipUpdate)[];
|
|
19697
20471
|
|
|
20472
|
+
/**
|
|
20473
|
+
* Key
|
|
20474
|
+
*
|
|
20475
|
+
*
|
|
20476
|
+
* @type {string}
|
|
20477
|
+
*
|
|
20478
|
+
*
|
|
20479
|
+
* @remarks
|
|
20480
|
+
* This key constant provides type-safe access to the `key` property of StatusCodeStatsBucket objects.
|
|
20481
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
20482
|
+
*
|
|
20483
|
+
* @example
|
|
20484
|
+
* ```typescript
|
|
20485
|
+
* // Direct property access
|
|
20486
|
+
* const value = statuscodestatsbucket[KEY_STATUS_CODE_STATS_BUCKET_KEY];
|
|
20487
|
+
*
|
|
20488
|
+
* // Dynamic property access
|
|
20489
|
+
* const propertyName = KEY_STATUS_CODE_STATS_BUCKET_KEY;
|
|
20490
|
+
* const value = statuscodestatsbucket[propertyName];
|
|
20491
|
+
* ```
|
|
20492
|
+
*
|
|
20493
|
+
* @see {@link StatusCodeStatsBucket} - The TypeScript type definition
|
|
20494
|
+
* @see {@link KEYS_STATUS_CODE_STATS_BUCKET} - Array of all keys for this type
|
|
20495
|
+
*/
|
|
20496
|
+
export const KEY_STATUS_CODE_STATS_BUCKET_KEY: keyof StatusCodeStatsBucket = 'key';
|
|
20497
|
+
/**
|
|
20498
|
+
* Total
|
|
20499
|
+
*
|
|
20500
|
+
*
|
|
20501
|
+
* @type {integer}
|
|
20502
|
+
*
|
|
20503
|
+
*
|
|
20504
|
+
* @remarks
|
|
20505
|
+
* This key constant provides type-safe access to the `total` property of StatusCodeStatsBucket objects.
|
|
20506
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
20507
|
+
*
|
|
20508
|
+
* @example
|
|
20509
|
+
* ```typescript
|
|
20510
|
+
* // Direct property access
|
|
20511
|
+
* const value = statuscodestatsbucket[KEY_STATUS_CODE_STATS_BUCKET_TOTAL];
|
|
20512
|
+
*
|
|
20513
|
+
* // Dynamic property access
|
|
20514
|
+
* const propertyName = KEY_STATUS_CODE_STATS_BUCKET_TOTAL;
|
|
20515
|
+
* const value = statuscodestatsbucket[propertyName];
|
|
20516
|
+
* ```
|
|
20517
|
+
*
|
|
20518
|
+
* @see {@link StatusCodeStatsBucket} - The TypeScript type definition
|
|
20519
|
+
* @see {@link KEYS_STATUS_CODE_STATS_BUCKET} - Array of all keys for this type
|
|
20520
|
+
*/
|
|
20521
|
+
export const KEY_STATUS_CODE_STATS_BUCKET_TOTAL: keyof StatusCodeStatsBucket = 'total';
|
|
20522
|
+
|
|
20523
|
+
/**
|
|
20524
|
+
* Array of all StatusCodeStatsBucket property keys
|
|
20525
|
+
*
|
|
20526
|
+
* @remarks
|
|
20527
|
+
* This constant provides a readonly array containing all valid property keys for StatusCodeStatsBucket objects.
|
|
20528
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
20529
|
+
*
|
|
20530
|
+
* @example
|
|
20531
|
+
* ```typescript
|
|
20532
|
+
* // Iterating through all keys
|
|
20533
|
+
* for (const key of KEYS_STATUS_CODE_STATS_BUCKET) {
|
|
20534
|
+
* console.log(`Property: ${key}, Value: ${statuscodestatsbucket[key]}`);
|
|
20535
|
+
* }
|
|
20536
|
+
*
|
|
20537
|
+
* // Validation
|
|
20538
|
+
* const isValidKey = KEYS_STATUS_CODE_STATS_BUCKET.includes(someKey);
|
|
20539
|
+
* ```
|
|
20540
|
+
*
|
|
20541
|
+
* @see {@link StatusCodeStatsBucket} - The TypeScript type definition
|
|
20542
|
+
*/
|
|
20543
|
+
export const KEYS_STATUS_CODE_STATS_BUCKET = [
|
|
20544
|
+
KEY_STATUS_CODE_STATS_BUCKET_KEY,
|
|
20545
|
+
KEY_STATUS_CODE_STATS_BUCKET_TOTAL,
|
|
20546
|
+
] as const satisfies (keyof StatusCodeStatsBucket)[];
|
|
20547
|
+
|
|
20548
|
+
/**
|
|
20549
|
+
* Timestamp
|
|
20550
|
+
*
|
|
20551
|
+
*
|
|
20552
|
+
* @type {string}
|
|
20553
|
+
*
|
|
20554
|
+
*
|
|
20555
|
+
* @remarks
|
|
20556
|
+
* This key constant provides type-safe access to the `timestamp` property of TimeSeriesBucket objects.
|
|
20557
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
20558
|
+
*
|
|
20559
|
+
* @example
|
|
20560
|
+
* ```typescript
|
|
20561
|
+
* // Direct property access
|
|
20562
|
+
* const value = timeseriesbucket[KEY_TIME_SERIES_BUCKET_TIMESTAMP];
|
|
20563
|
+
*
|
|
20564
|
+
* // Dynamic property access
|
|
20565
|
+
* const propertyName = KEY_TIME_SERIES_BUCKET_TIMESTAMP;
|
|
20566
|
+
* const value = timeseriesbucket[propertyName];
|
|
20567
|
+
* ```
|
|
20568
|
+
*
|
|
20569
|
+
* @see {@link TimeSeriesBucket} - The TypeScript type definition
|
|
20570
|
+
* @see {@link KEYS_TIME_SERIES_BUCKET} - Array of all keys for this type
|
|
20571
|
+
*/
|
|
20572
|
+
export const KEY_TIME_SERIES_BUCKET_TIMESTAMP: keyof TimeSeriesBucket = 'timestamp';
|
|
20573
|
+
/**
|
|
20574
|
+
* Total
|
|
20575
|
+
*
|
|
20576
|
+
*
|
|
20577
|
+
* @type {integer}
|
|
20578
|
+
*
|
|
20579
|
+
*
|
|
20580
|
+
* @remarks
|
|
20581
|
+
* This key constant provides type-safe access to the `total` property of TimeSeriesBucket objects.
|
|
20582
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
20583
|
+
*
|
|
20584
|
+
* @example
|
|
20585
|
+
* ```typescript
|
|
20586
|
+
* // Direct property access
|
|
20587
|
+
* const value = timeseriesbucket[KEY_TIME_SERIES_BUCKET_TOTAL];
|
|
20588
|
+
*
|
|
20589
|
+
* // Dynamic property access
|
|
20590
|
+
* const propertyName = KEY_TIME_SERIES_BUCKET_TOTAL;
|
|
20591
|
+
* const value = timeseriesbucket[propertyName];
|
|
20592
|
+
* ```
|
|
20593
|
+
*
|
|
20594
|
+
* @see {@link TimeSeriesBucket} - The TypeScript type definition
|
|
20595
|
+
* @see {@link KEYS_TIME_SERIES_BUCKET} - Array of all keys for this type
|
|
20596
|
+
*/
|
|
20597
|
+
export const KEY_TIME_SERIES_BUCKET_TOTAL: keyof TimeSeriesBucket = 'total';
|
|
20598
|
+
|
|
20599
|
+
/**
|
|
20600
|
+
* Array of all TimeSeriesBucket property keys
|
|
20601
|
+
*
|
|
20602
|
+
* @remarks
|
|
20603
|
+
* This constant provides a readonly array containing all valid property keys for TimeSeriesBucket objects.
|
|
20604
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
20605
|
+
*
|
|
20606
|
+
* @example
|
|
20607
|
+
* ```typescript
|
|
20608
|
+
* // Iterating through all keys
|
|
20609
|
+
* for (const key of KEYS_TIME_SERIES_BUCKET) {
|
|
20610
|
+
* console.log(`Property: ${key}, Value: ${timeseriesbucket[key]}`);
|
|
20611
|
+
* }
|
|
20612
|
+
*
|
|
20613
|
+
* // Validation
|
|
20614
|
+
* const isValidKey = KEYS_TIME_SERIES_BUCKET.includes(someKey);
|
|
20615
|
+
* ```
|
|
20616
|
+
*
|
|
20617
|
+
* @see {@link TimeSeriesBucket} - The TypeScript type definition
|
|
20618
|
+
*/
|
|
20619
|
+
export const KEYS_TIME_SERIES_BUCKET = [
|
|
20620
|
+
KEY_TIME_SERIES_BUCKET_TIMESTAMP,
|
|
20621
|
+
KEY_TIME_SERIES_BUCKET_TOTAL,
|
|
20622
|
+
] as const satisfies (keyof TimeSeriesBucket)[];
|
|
20623
|
+
|
|
19698
20624
|
/**
|
|
19699
20625
|
* Name
|
|
19700
20626
|
*
|
|
@@ -21431,6 +22357,108 @@ export const KEYS_USER = [
|
|
|
21431
22357
|
KEY_USER_USERNAME,
|
|
21432
22358
|
] as const satisfies (keyof User)[];
|
|
21433
22359
|
|
|
22360
|
+
/**
|
|
22361
|
+
* Key
|
|
22362
|
+
*
|
|
22363
|
+
*
|
|
22364
|
+
* @type {string}
|
|
22365
|
+
*
|
|
22366
|
+
*
|
|
22367
|
+
* @remarks
|
|
22368
|
+
* This key constant provides type-safe access to the `key` property of UserAgentStatsBucket objects.
|
|
22369
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
22370
|
+
*
|
|
22371
|
+
* @example
|
|
22372
|
+
* ```typescript
|
|
22373
|
+
* // Direct property access
|
|
22374
|
+
* const value = useragentstatsbucket[KEY_USER_AGENT_STATS_BUCKET_KEY];
|
|
22375
|
+
*
|
|
22376
|
+
* // Dynamic property access
|
|
22377
|
+
* const propertyName = KEY_USER_AGENT_STATS_BUCKET_KEY;
|
|
22378
|
+
* const value = useragentstatsbucket[propertyName];
|
|
22379
|
+
* ```
|
|
22380
|
+
*
|
|
22381
|
+
* @see {@link UserAgentStatsBucket} - The TypeScript type definition
|
|
22382
|
+
* @see {@link KEYS_USER_AGENT_STATS_BUCKET} - Array of all keys for this type
|
|
22383
|
+
*/
|
|
22384
|
+
export const KEY_USER_AGENT_STATS_BUCKET_KEY: keyof UserAgentStatsBucket = 'key';
|
|
22385
|
+
/**
|
|
22386
|
+
* Total
|
|
22387
|
+
*
|
|
22388
|
+
*
|
|
22389
|
+
* @type {integer}
|
|
22390
|
+
*
|
|
22391
|
+
*
|
|
22392
|
+
* @remarks
|
|
22393
|
+
* This key constant provides type-safe access to the `total` property of UserAgentStatsBucket objects.
|
|
22394
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
22395
|
+
*
|
|
22396
|
+
* @example
|
|
22397
|
+
* ```typescript
|
|
22398
|
+
* // Direct property access
|
|
22399
|
+
* const value = useragentstatsbucket[KEY_USER_AGENT_STATS_BUCKET_TOTAL];
|
|
22400
|
+
*
|
|
22401
|
+
* // Dynamic property access
|
|
22402
|
+
* const propertyName = KEY_USER_AGENT_STATS_BUCKET_TOTAL;
|
|
22403
|
+
* const value = useragentstatsbucket[propertyName];
|
|
22404
|
+
* ```
|
|
22405
|
+
*
|
|
22406
|
+
* @see {@link UserAgentStatsBucket} - The TypeScript type definition
|
|
22407
|
+
* @see {@link KEYS_USER_AGENT_STATS_BUCKET} - Array of all keys for this type
|
|
22408
|
+
*/
|
|
22409
|
+
export const KEY_USER_AGENT_STATS_BUCKET_TOTAL: keyof UserAgentStatsBucket = 'total';
|
|
22410
|
+
/**
|
|
22411
|
+
* Unique
|
|
22412
|
+
*
|
|
22413
|
+
*
|
|
22414
|
+
* @type {integer}
|
|
22415
|
+
*
|
|
22416
|
+
*
|
|
22417
|
+
* @remarks
|
|
22418
|
+
* This key constant provides type-safe access to the `unique` property of UserAgentStatsBucket objects.
|
|
22419
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
22420
|
+
*
|
|
22421
|
+
* @example
|
|
22422
|
+
* ```typescript
|
|
22423
|
+
* // Direct property access
|
|
22424
|
+
* const value = useragentstatsbucket[KEY_USER_AGENT_STATS_BUCKET_UNIQUE];
|
|
22425
|
+
*
|
|
22426
|
+
* // Dynamic property access
|
|
22427
|
+
* const propertyName = KEY_USER_AGENT_STATS_BUCKET_UNIQUE;
|
|
22428
|
+
* const value = useragentstatsbucket[propertyName];
|
|
22429
|
+
* ```
|
|
22430
|
+
*
|
|
22431
|
+
* @see {@link UserAgentStatsBucket} - The TypeScript type definition
|
|
22432
|
+
* @see {@link KEYS_USER_AGENT_STATS_BUCKET} - Array of all keys for this type
|
|
22433
|
+
*/
|
|
22434
|
+
export const KEY_USER_AGENT_STATS_BUCKET_UNIQUE: keyof UserAgentStatsBucket = 'unique';
|
|
22435
|
+
|
|
22436
|
+
/**
|
|
22437
|
+
* Array of all UserAgentStatsBucket property keys
|
|
22438
|
+
*
|
|
22439
|
+
* @remarks
|
|
22440
|
+
* This constant provides a readonly array containing all valid property keys for UserAgentStatsBucket objects.
|
|
22441
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
22442
|
+
*
|
|
22443
|
+
* @example
|
|
22444
|
+
* ```typescript
|
|
22445
|
+
* // Iterating through all keys
|
|
22446
|
+
* for (const key of KEYS_USER_AGENT_STATS_BUCKET) {
|
|
22447
|
+
* console.log(`Property: ${key}, Value: ${useragentstatsbucket[key]}`);
|
|
22448
|
+
* }
|
|
22449
|
+
*
|
|
22450
|
+
* // Validation
|
|
22451
|
+
* const isValidKey = KEYS_USER_AGENT_STATS_BUCKET.includes(someKey);
|
|
22452
|
+
* ```
|
|
22453
|
+
*
|
|
22454
|
+
* @see {@link UserAgentStatsBucket} - The TypeScript type definition
|
|
22455
|
+
*/
|
|
22456
|
+
export const KEYS_USER_AGENT_STATS_BUCKET = [
|
|
22457
|
+
KEY_USER_AGENT_STATS_BUCKET_KEY,
|
|
22458
|
+
KEY_USER_AGENT_STATS_BUCKET_TOTAL,
|
|
22459
|
+
KEY_USER_AGENT_STATS_BUCKET_UNIQUE,
|
|
22460
|
+
] as const satisfies (keyof UserAgentStatsBucket)[];
|
|
22461
|
+
|
|
21434
22462
|
/**
|
|
21435
22463
|
* Key
|
|
21436
22464
|
*
|
|
@@ -23414,6 +24442,108 @@ export const KEYS_VALIDATION_ERROR = [
|
|
|
23414
24442
|
KEY_VALIDATION_ERROR_TYPE,
|
|
23415
24443
|
] as const satisfies (keyof ValidationError)[];
|
|
23416
24444
|
|
|
24445
|
+
/**
|
|
24446
|
+
* Key
|
|
24447
|
+
*
|
|
24448
|
+
*
|
|
24449
|
+
* @type {string}
|
|
24450
|
+
*
|
|
24451
|
+
*
|
|
24452
|
+
* @remarks
|
|
24453
|
+
* This key constant provides type-safe access to the `key` property of VisitsByKeyBucket objects.
|
|
24454
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
24455
|
+
*
|
|
24456
|
+
* @example
|
|
24457
|
+
* ```typescript
|
|
24458
|
+
* // Direct property access
|
|
24459
|
+
* const value = visitsbykeybucket[KEY_VISITS_BY_KEY_BUCKET_KEY];
|
|
24460
|
+
*
|
|
24461
|
+
* // Dynamic property access
|
|
24462
|
+
* const propertyName = KEY_VISITS_BY_KEY_BUCKET_KEY;
|
|
24463
|
+
* const value = visitsbykeybucket[propertyName];
|
|
24464
|
+
* ```
|
|
24465
|
+
*
|
|
24466
|
+
* @see {@link VisitsByKeyBucket} - The TypeScript type definition
|
|
24467
|
+
* @see {@link KEYS_VISITS_BY_KEY_BUCKET} - Array of all keys for this type
|
|
24468
|
+
*/
|
|
24469
|
+
export const KEY_VISITS_BY_KEY_BUCKET_KEY: keyof VisitsByKeyBucket = 'key';
|
|
24470
|
+
/**
|
|
24471
|
+
* Total
|
|
24472
|
+
*
|
|
24473
|
+
*
|
|
24474
|
+
* @type {integer}
|
|
24475
|
+
*
|
|
24476
|
+
*
|
|
24477
|
+
* @remarks
|
|
24478
|
+
* This key constant provides type-safe access to the `total` property of VisitsByKeyBucket objects.
|
|
24479
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
24480
|
+
*
|
|
24481
|
+
* @example
|
|
24482
|
+
* ```typescript
|
|
24483
|
+
* // Direct property access
|
|
24484
|
+
* const value = visitsbykeybucket[KEY_VISITS_BY_KEY_BUCKET_TOTAL];
|
|
24485
|
+
*
|
|
24486
|
+
* // Dynamic property access
|
|
24487
|
+
* const propertyName = KEY_VISITS_BY_KEY_BUCKET_TOTAL;
|
|
24488
|
+
* const value = visitsbykeybucket[propertyName];
|
|
24489
|
+
* ```
|
|
24490
|
+
*
|
|
24491
|
+
* @see {@link VisitsByKeyBucket} - The TypeScript type definition
|
|
24492
|
+
* @see {@link KEYS_VISITS_BY_KEY_BUCKET} - Array of all keys for this type
|
|
24493
|
+
*/
|
|
24494
|
+
export const KEY_VISITS_BY_KEY_BUCKET_TOTAL: keyof VisitsByKeyBucket = 'total';
|
|
24495
|
+
/**
|
|
24496
|
+
* Unique
|
|
24497
|
+
*
|
|
24498
|
+
*
|
|
24499
|
+
* @type {integer}
|
|
24500
|
+
*
|
|
24501
|
+
*
|
|
24502
|
+
* @remarks
|
|
24503
|
+
* This key constant provides type-safe access to the `unique` property of VisitsByKeyBucket objects.
|
|
24504
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
24505
|
+
*
|
|
24506
|
+
* @example
|
|
24507
|
+
* ```typescript
|
|
24508
|
+
* // Direct property access
|
|
24509
|
+
* const value = visitsbykeybucket[KEY_VISITS_BY_KEY_BUCKET_UNIQUE];
|
|
24510
|
+
*
|
|
24511
|
+
* // Dynamic property access
|
|
24512
|
+
* const propertyName = KEY_VISITS_BY_KEY_BUCKET_UNIQUE;
|
|
24513
|
+
* const value = visitsbykeybucket[propertyName];
|
|
24514
|
+
* ```
|
|
24515
|
+
*
|
|
24516
|
+
* @see {@link VisitsByKeyBucket} - The TypeScript type definition
|
|
24517
|
+
* @see {@link KEYS_VISITS_BY_KEY_BUCKET} - Array of all keys for this type
|
|
24518
|
+
*/
|
|
24519
|
+
export const KEY_VISITS_BY_KEY_BUCKET_UNIQUE: keyof VisitsByKeyBucket = 'unique';
|
|
24520
|
+
|
|
24521
|
+
/**
|
|
24522
|
+
* Array of all VisitsByKeyBucket property keys
|
|
24523
|
+
*
|
|
24524
|
+
* @remarks
|
|
24525
|
+
* This constant provides a readonly array containing all valid property keys for VisitsByKeyBucket objects.
|
|
24526
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
24527
|
+
*
|
|
24528
|
+
* @example
|
|
24529
|
+
* ```typescript
|
|
24530
|
+
* // Iterating through all keys
|
|
24531
|
+
* for (const key of KEYS_VISITS_BY_KEY_BUCKET) {
|
|
24532
|
+
* console.log(`Property: ${key}, Value: ${visitsbykeybucket[key]}`);
|
|
24533
|
+
* }
|
|
24534
|
+
*
|
|
24535
|
+
* // Validation
|
|
24536
|
+
* const isValidKey = KEYS_VISITS_BY_KEY_BUCKET.includes(someKey);
|
|
24537
|
+
* ```
|
|
24538
|
+
*
|
|
24539
|
+
* @see {@link VisitsByKeyBucket} - The TypeScript type definition
|
|
24540
|
+
*/
|
|
24541
|
+
export const KEYS_VISITS_BY_KEY_BUCKET = [
|
|
24542
|
+
KEY_VISITS_BY_KEY_BUCKET_KEY,
|
|
24543
|
+
KEY_VISITS_BY_KEY_BUCKET_TOTAL,
|
|
24544
|
+
KEY_VISITS_BY_KEY_BUCKET_UNIQUE,
|
|
24545
|
+
] as const satisfies (keyof VisitsByKeyBucket)[];
|
|
24546
|
+
|
|
23417
24547
|
/**
|
|
23418
24548
|
* Whois Server
|
|
23419
24549
|
*
|