@opusdns/api 0.140.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.
@@ -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';
84
+ import { DomainForwardReferrerStats } from './schemas';
78
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
  *
@@ -6620,6 +6739,56 @@ export const KEYS_DOMAIN_FORWARD = [
6620
6739
  KEY_DOMAIN_FORWARD_UPDATED_ON,
6621
6740
  ] as const satisfies (keyof DomainForward)[];
6622
6741
 
6742
+ /**
6743
+ * Results
6744
+ *
6745
+ *
6746
+ * @type {array}
6747
+ *
6748
+ *
6749
+ * @remarks
6750
+ * This key constant provides type-safe access to the `results` property of DomainForwardBrowserStats objects.
6751
+ * Use this constant when you need to access properties dynamically or ensure type safety.
6752
+ *
6753
+ * @example
6754
+ * ```typescript
6755
+ * // Direct property access
6756
+ * const value = domainforwardbrowserstats[KEY_DOMAIN_FORWARD_BROWSER_STATS_RESULTS];
6757
+ *
6758
+ * // Dynamic property access
6759
+ * const propertyName = KEY_DOMAIN_FORWARD_BROWSER_STATS_RESULTS;
6760
+ * const value = domainforwardbrowserstats[propertyName];
6761
+ * ```
6762
+ *
6763
+ * @see {@link DomainForwardBrowserStats} - The TypeScript type definition
6764
+ * @see {@link KEYS_DOMAIN_FORWARD_BROWSER_STATS} - Array of all keys for this type
6765
+ */
6766
+ export const KEY_DOMAIN_FORWARD_BROWSER_STATS_RESULTS: keyof DomainForwardBrowserStats = 'results';
6767
+
6768
+ /**
6769
+ * Array of all DomainForwardBrowserStats property keys
6770
+ *
6771
+ * @remarks
6772
+ * This constant provides a readonly array containing all valid property keys for DomainForwardBrowserStats objects.
6773
+ * Useful for iteration, validation, and generating dynamic UI components.
6774
+ *
6775
+ * @example
6776
+ * ```typescript
6777
+ * // Iterating through all keys
6778
+ * for (const key of KEYS_DOMAIN_FORWARD_BROWSER_STATS) {
6779
+ * console.log(`Property: ${key}, Value: ${domainforwardbrowserstats[key]}`);
6780
+ * }
6781
+ *
6782
+ * // Validation
6783
+ * const isValidKey = KEYS_DOMAIN_FORWARD_BROWSER_STATS.includes(someKey);
6784
+ * ```
6785
+ *
6786
+ * @see {@link DomainForwardBrowserStats} - The TypeScript type definition
6787
+ */
6788
+ export const KEYS_DOMAIN_FORWARD_BROWSER_STATS = [
6789
+ KEY_DOMAIN_FORWARD_BROWSER_STATS_RESULTS,
6790
+ ] as const satisfies (keyof DomainForwardBrowserStats)[];
6791
+
6623
6792
  /**
6624
6793
  * Enabled
6625
6794
  *
@@ -6747,235 +6916,513 @@ export const KEYS_DOMAIN_FORWARD_CREATE_REQUEST = [
6747
6916
  ] as const satisfies (keyof DomainForwardCreateRequest)[];
6748
6917
 
6749
6918
  /**
6750
- * op property
6919
+ * Results
6751
6920
  *
6752
6921
  *
6922
+ * @type {array}
6753
6923
  *
6754
6924
  *
6755
6925
  * @remarks
6756
- * This key constant provides type-safe access to the `op` property of DomainForwardPatchOp objects.
6926
+ * This key constant provides type-safe access to the `results` property of DomainForwardGeoStats objects.
6757
6927
  * Use this constant when you need to access properties dynamically or ensure type safety.
6758
6928
  *
6759
6929
  * @example
6760
6930
  * ```typescript
6761
6931
  * // Direct property access
6762
- * const value = domainforwardpatchop[KEY_DOMAIN_FORWARD_PATCH_OP_OP];
6932
+ * const value = domainforwardgeostats[KEY_DOMAIN_FORWARD_GEO_STATS_RESULTS];
6763
6933
  *
6764
6934
  * // Dynamic property access
6765
- * const propertyName = KEY_DOMAIN_FORWARD_PATCH_OP_OP;
6766
- * const value = domainforwardpatchop[propertyName];
6935
+ * const propertyName = KEY_DOMAIN_FORWARD_GEO_STATS_RESULTS;
6936
+ * const value = domainforwardgeostats[propertyName];
6767
6937
  * ```
6768
6938
  *
6769
- * @see {@link DomainForwardPatchOp} - The TypeScript type definition
6770
- * @see {@link KEYS_DOMAIN_FORWARD_PATCH_OP} - Array of all keys for this type
6939
+ * @see {@link DomainForwardGeoStats} - The TypeScript type definition
6940
+ * @see {@link KEYS_DOMAIN_FORWARD_GEO_STATS} - Array of all keys for this type
6771
6941
  */
6772
- export const KEY_DOMAIN_FORWARD_PATCH_OP_OP: keyof DomainForwardPatchOp = 'op';
6942
+ export const KEY_DOMAIN_FORWARD_GEO_STATS_RESULTS: keyof DomainForwardGeoStats = 'results';
6943
+
6773
6944
  /**
6774
- * Redirect
6945
+ * Array of all DomainForwardGeoStats property keys
6946
+ *
6947
+ * @remarks
6948
+ * This constant provides a readonly array containing all valid property keys for DomainForwardGeoStats objects.
6949
+ * Useful for iteration, validation, and generating dynamic UI components.
6950
+ *
6951
+ * @example
6952
+ * ```typescript
6953
+ * // Iterating through all keys
6954
+ * for (const key of KEYS_DOMAIN_FORWARD_GEO_STATS) {
6955
+ * console.log(`Property: ${key}, Value: ${domainforwardgeostats[key]}`);
6956
+ * }
6957
+ *
6958
+ * // Validation
6959
+ * const isValidKey = KEYS_DOMAIN_FORWARD_GEO_STATS.includes(someKey);
6960
+ * ```
6961
+ *
6962
+ * @see {@link DomainForwardGeoStats} - The TypeScript type definition
6963
+ */
6964
+ export const KEYS_DOMAIN_FORWARD_GEO_STATS = [
6965
+ KEY_DOMAIN_FORWARD_GEO_STATS_RESULTS,
6966
+ ] as const satisfies (keyof DomainForwardGeoStats)[];
6967
+
6968
+ /**
6969
+ * Configured Forwards
6775
6970
  *
6776
6971
  *
6972
+ * @type {integer}
6777
6973
  *
6778
6974
  *
6779
6975
  * @remarks
6780
- * This key constant provides type-safe access to the `redirect` property of DomainForwardPatchOp objects.
6976
+ * This key constant provides type-safe access to the `configured_forwards` property of DomainForwardMetrics objects.
6781
6977
  * Use this constant when you need to access properties dynamically or ensure type safety.
6782
6978
  *
6783
6979
  * @example
6784
6980
  * ```typescript
6785
6981
  * // Direct property access
6786
- * const value = domainforwardpatchop[KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT];
6982
+ * const value = domainforwardmetrics[KEY_DOMAIN_FORWARD_METRICS_CONFIGURED_FORWARDS];
6787
6983
  *
6788
6984
  * // Dynamic property access
6789
- * const propertyName = KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT;
6790
- * const value = domainforwardpatchop[propertyName];
6985
+ * const propertyName = KEY_DOMAIN_FORWARD_METRICS_CONFIGURED_FORWARDS;
6986
+ * const value = domainforwardmetrics[propertyName];
6791
6987
  * ```
6792
6988
  *
6793
- * @see {@link DomainForwardPatchOp} - The TypeScript type definition
6794
- * @see {@link KEYS_DOMAIN_FORWARD_PATCH_OP} - Array of all keys for this type
6989
+ * @see {@link DomainForwardMetrics} - The TypeScript type definition
6990
+ * @see {@link KEYS_DOMAIN_FORWARD_METRICS} - Array of all keys for this type
6795
6991
  */
6796
- export const KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT: keyof DomainForwardPatchOp = 'redirect';
6797
-
6992
+ export const KEY_DOMAIN_FORWARD_METRICS_CONFIGURED_FORWARDS: keyof DomainForwardMetrics = 'configured_forwards';
6798
6993
  /**
6799
- * Array of all DomainForwardPatchOp property keys
6994
+ * Invoked Forwards
6995
+ *
6996
+ *
6997
+ * @type {integer}
6998
+ *
6800
6999
  *
6801
7000
  * @remarks
6802
- * This constant provides a readonly array containing all valid property keys for DomainForwardPatchOp objects.
6803
- * Useful for iteration, validation, and generating dynamic UI components.
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.
6804
7003
  *
6805
7004
  * @example
6806
7005
  * ```typescript
6807
- * // Iterating through all keys
6808
- * for (const key of KEYS_DOMAIN_FORWARD_PATCH_OP) {
6809
- * console.log(`Property: ${key}, Value: ${domainforwardpatchop[key]}`);
6810
- * }
7006
+ * // Direct property access
7007
+ * const value = domainforwardmetrics[KEY_DOMAIN_FORWARD_METRICS_INVOKED_FORWARDS];
6811
7008
  *
6812
- * // Validation
6813
- * const isValidKey = KEYS_DOMAIN_FORWARD_PATCH_OP.includes(someKey);
7009
+ * // Dynamic property access
7010
+ * const propertyName = KEY_DOMAIN_FORWARD_METRICS_INVOKED_FORWARDS;
7011
+ * const value = domainforwardmetrics[propertyName];
6814
7012
  * ```
6815
7013
  *
6816
- * @see {@link DomainForwardPatchOp} - The TypeScript type definition
7014
+ * @see {@link DomainForwardMetrics} - The TypeScript type definition
7015
+ * @see {@link KEYS_DOMAIN_FORWARD_METRICS} - Array of all keys for this type
6817
7016
  */
6818
- export const KEYS_DOMAIN_FORWARD_PATCH_OP = [
6819
- KEY_DOMAIN_FORWARD_PATCH_OP_OP,
6820
- KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT,
6821
- ] as const satisfies (keyof DomainForwardPatchOp)[];
6822
-
7017
+ export const KEY_DOMAIN_FORWARD_METRICS_INVOKED_FORWARDS: keyof DomainForwardMetrics = 'invoked_forwards';
6823
7018
  /**
6824
- * Ops
7019
+ * Total Visits
6825
7020
  *
6826
7021
  *
6827
- * @type {array}
7022
+ * @type {integer}
6828
7023
  *
6829
7024
  *
6830
7025
  * @remarks
6831
- * This key constant provides type-safe access to the `ops` property of DomainForwardPatchOps objects.
7026
+ * This key constant provides type-safe access to the `total_visits` property of DomainForwardMetrics objects.
6832
7027
  * Use this constant when you need to access properties dynamically or ensure type safety.
6833
7028
  *
6834
7029
  * @example
6835
7030
  * ```typescript
6836
7031
  * // Direct property access
6837
- * const value = domainforwardpatchops[KEY_DOMAIN_FORWARD_PATCH_OPS_OPS];
7032
+ * const value = domainforwardmetrics[KEY_DOMAIN_FORWARD_METRICS_TOTAL_VISITS];
6838
7033
  *
6839
7034
  * // Dynamic property access
6840
- * const propertyName = KEY_DOMAIN_FORWARD_PATCH_OPS_OPS;
6841
- * const value = domainforwardpatchops[propertyName];
7035
+ * const propertyName = KEY_DOMAIN_FORWARD_METRICS_TOTAL_VISITS;
7036
+ * const value = domainforwardmetrics[propertyName];
6842
7037
  * ```
6843
7038
  *
6844
- * @see {@link DomainForwardPatchOps} - The TypeScript type definition
6845
- * @see {@link KEYS_DOMAIN_FORWARD_PATCH_OPS} - Array of all keys for this type
7039
+ * @see {@link DomainForwardMetrics} - The TypeScript type definition
7040
+ * @see {@link KEYS_DOMAIN_FORWARD_METRICS} - Array of all keys for this type
6846
7041
  */
6847
- export const KEY_DOMAIN_FORWARD_PATCH_OPS_OPS: keyof DomainForwardPatchOps = 'ops';
7042
+ export const KEY_DOMAIN_FORWARD_METRICS_TOTAL_VISITS: keyof DomainForwardMetrics = 'total_visits';
7043
+ /**
7044
+ * Unique Visits
7045
+ *
7046
+ *
7047
+ * @type {integer}
7048
+ *
7049
+ *
7050
+ * @remarks
7051
+ * This key constant provides type-safe access to the `unique_visits` property of DomainForwardMetrics objects.
7052
+ * Use this constant when you need to access properties dynamically or ensure type safety.
7053
+ *
7054
+ * @example
7055
+ * ```typescript
7056
+ * // Direct property access
7057
+ * const value = domainforwardmetrics[KEY_DOMAIN_FORWARD_METRICS_UNIQUE_VISITS];
7058
+ *
7059
+ * // Dynamic property access
7060
+ * const propertyName = KEY_DOMAIN_FORWARD_METRICS_UNIQUE_VISITS;
7061
+ * const value = domainforwardmetrics[propertyName];
7062
+ * ```
7063
+ *
7064
+ * @see {@link DomainForwardMetrics} - The TypeScript type definition
7065
+ * @see {@link KEYS_DOMAIN_FORWARD_METRICS} - Array of all keys for this type
7066
+ */
7067
+ export const KEY_DOMAIN_FORWARD_METRICS_UNIQUE_VISITS: keyof DomainForwardMetrics = 'unique_visits';
6848
7068
 
6849
7069
  /**
6850
- * Array of all DomainForwardPatchOps property keys
7070
+ * Array of all DomainForwardMetrics property keys
6851
7071
  *
6852
7072
  * @remarks
6853
- * This constant provides a readonly array containing all valid property keys for DomainForwardPatchOps objects.
7073
+ * This constant provides a readonly array containing all valid property keys for DomainForwardMetrics objects.
6854
7074
  * Useful for iteration, validation, and generating dynamic UI components.
6855
7075
  *
6856
7076
  * @example
6857
7077
  * ```typescript
6858
7078
  * // Iterating through all keys
6859
- * for (const key of KEYS_DOMAIN_FORWARD_PATCH_OPS) {
6860
- * console.log(`Property: ${key}, Value: ${domainforwardpatchops[key]}`);
7079
+ * for (const key of KEYS_DOMAIN_FORWARD_METRICS) {
7080
+ * console.log(`Property: ${key}, Value: ${domainforwardmetrics[key]}`);
6861
7081
  * }
6862
7082
  *
6863
7083
  * // Validation
6864
- * const isValidKey = KEYS_DOMAIN_FORWARD_PATCH_OPS.includes(someKey);
7084
+ * const isValidKey = KEYS_DOMAIN_FORWARD_METRICS.includes(someKey);
6865
7085
  * ```
6866
7086
  *
6867
- * @see {@link DomainForwardPatchOps} - The TypeScript type definition
7087
+ * @see {@link DomainForwardMetrics} - The TypeScript type definition
6868
7088
  */
6869
- export const KEYS_DOMAIN_FORWARD_PATCH_OPS = [
6870
- KEY_DOMAIN_FORWARD_PATCH_OPS_OPS,
6871
- ] as const satisfies (keyof DomainForwardPatchOps)[];
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)[];
6872
7095
 
6873
7096
  /**
6874
- * Redirects
7097
+ * Results
6875
7098
  *
6876
7099
  *
6877
7100
  * @type {array}
6878
7101
  *
6879
7102
  *
6880
7103
  * @remarks
6881
- * This key constant provides type-safe access to the `redirects` property of DomainForwardProtocolSetRequest objects.
7104
+ * This key constant provides type-safe access to the `results` property of DomainForwardMetricsTimeSeries objects.
6882
7105
  * Use this constant when you need to access properties dynamically or ensure type safety.
6883
7106
  *
6884
7107
  * @example
6885
7108
  * ```typescript
6886
7109
  * // Direct property access
6887
- * const value = domainforwardprotocolsetrequest[KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_REDIRECTS];
7110
+ * const value = domainforwardmetricstimeseries[KEY_DOMAIN_FORWARD_METRICS_TIME_SERIES_RESULTS];
6888
7111
  *
6889
7112
  * // Dynamic property access
6890
- * const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_REDIRECTS;
6891
- * const value = domainforwardprotocolsetrequest[propertyName];
7113
+ * const propertyName = KEY_DOMAIN_FORWARD_METRICS_TIME_SERIES_RESULTS;
7114
+ * const value = domainforwardmetricstimeseries[propertyName];
6892
7115
  * ```
6893
7116
  *
6894
- * @see {@link DomainForwardProtocolSetRequest} - The TypeScript type definition
6895
- * @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST} - Array of all keys for this type
7117
+ * @see {@link DomainForwardMetricsTimeSeries} - The TypeScript type definition
7118
+ * @see {@link KEYS_DOMAIN_FORWARD_METRICS_TIME_SERIES} - Array of all keys for this type
6896
7119
  */
6897
- export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_REDIRECTS: keyof DomainForwardProtocolSetRequest = 'redirects';
7120
+ export const KEY_DOMAIN_FORWARD_METRICS_TIME_SERIES_RESULTS: keyof DomainForwardMetricsTimeSeries = 'results';
6898
7121
 
6899
7122
  /**
6900
- * Array of all DomainForwardProtocolSetRequest property keys
7123
+ * Array of all DomainForwardMetricsTimeSeries property keys
6901
7124
  *
6902
7125
  * @remarks
6903
- * This constant provides a readonly array containing all valid property keys for DomainForwardProtocolSetRequest objects.
7126
+ * This constant provides a readonly array containing all valid property keys for DomainForwardMetricsTimeSeries objects.
6904
7127
  * Useful for iteration, validation, and generating dynamic UI components.
6905
7128
  *
6906
7129
  * @example
6907
7130
  * ```typescript
6908
7131
  * // Iterating through all keys
6909
- * for (const key of KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST) {
6910
- * console.log(`Property: ${key}, Value: ${domainforwardprotocolsetrequest[key]}`);
7132
+ * for (const key of KEYS_DOMAIN_FORWARD_METRICS_TIME_SERIES) {
7133
+ * console.log(`Property: ${key}, Value: ${domainforwardmetricstimeseries[key]}`);
6911
7134
  * }
6912
7135
  *
6913
7136
  * // Validation
6914
- * const isValidKey = KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST.includes(someKey);
7137
+ * const isValidKey = KEYS_DOMAIN_FORWARD_METRICS_TIME_SERIES.includes(someKey);
6915
7138
  * ```
6916
7139
  *
6917
- * @see {@link DomainForwardProtocolSetRequest} - The TypeScript type definition
7140
+ * @see {@link DomainForwardMetricsTimeSeries} - The TypeScript type definition
6918
7141
  */
6919
- export const KEYS_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST = [
6920
- KEY_DOMAIN_FORWARD_PROTOCOL_SET_REQUEST_REDIRECTS,
6921
- ] as const satisfies (keyof DomainForwardProtocolSetRequest)[];
7142
+ export const KEYS_DOMAIN_FORWARD_METRICS_TIME_SERIES = [
7143
+ KEY_DOMAIN_FORWARD_METRICS_TIME_SERIES_RESULTS,
7144
+ ] as const satisfies (keyof DomainForwardMetricsTimeSeries)[];
6922
7145
 
6923
7146
  /**
6924
- * Created On
7147
+ * op property
6925
7148
  *
6926
7149
  *
6927
- * @type {string}
6928
7150
  *
6929
7151
  *
6930
7152
  * @remarks
6931
- * This key constant provides type-safe access to the `created_on` property of DomainForwardProtocolSet objects.
7153
+ * This key constant provides type-safe access to the `op` property of DomainForwardPatchOp objects.
6932
7154
  * Use this constant when you need to access properties dynamically or ensure type safety.
6933
7155
  *
6934
7156
  * @example
6935
7157
  * ```typescript
6936
7158
  * // Direct property access
6937
- * const value = domainforwardprotocolset[KEY_DOMAIN_FORWARD_PROTOCOL_SET_CREATED_ON];
7159
+ * const value = domainforwardpatchop[KEY_DOMAIN_FORWARD_PATCH_OP_OP];
6938
7160
  *
6939
7161
  * // Dynamic property access
6940
- * const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_CREATED_ON;
6941
- * const value = domainforwardprotocolset[propertyName];
7162
+ * const propertyName = KEY_DOMAIN_FORWARD_PATCH_OP_OP;
7163
+ * const value = domainforwardpatchop[propertyName];
6942
7164
  * ```
6943
7165
  *
6944
- * @see {@link DomainForwardProtocolSet} - The TypeScript type definition
6945
- * @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET} - Array of all keys for this type
7166
+ * @see {@link DomainForwardPatchOp} - The TypeScript type definition
7167
+ * @see {@link KEYS_DOMAIN_FORWARD_PATCH_OP} - Array of all keys for this type
6946
7168
  */
6947
- export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_CREATED_ON: keyof DomainForwardProtocolSet = 'created_on';
7169
+ export const KEY_DOMAIN_FORWARD_PATCH_OP_OP: keyof DomainForwardPatchOp = 'op';
6948
7170
  /**
6949
- * Redirects
7171
+ * Redirect
6950
7172
  *
6951
7173
  *
6952
- * @type {array}
6953
7174
  *
6954
7175
  *
6955
7176
  * @remarks
6956
- * This key constant provides type-safe access to the `redirects` property of DomainForwardProtocolSet objects.
7177
+ * This key constant provides type-safe access to the `redirect` property of DomainForwardPatchOp objects.
6957
7178
  * Use this constant when you need to access properties dynamically or ensure type safety.
6958
7179
  *
6959
7180
  * @example
6960
7181
  * ```typescript
6961
7182
  * // Direct property access
6962
- * const value = domainforwardprotocolset[KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS];
7183
+ * const value = domainforwardpatchop[KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT];
6963
7184
  *
6964
7185
  * // Dynamic property access
6965
- * const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS;
6966
- * const value = domainforwardprotocolset[propertyName];
7186
+ * const propertyName = KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT;
7187
+ * const value = domainforwardpatchop[propertyName];
6967
7188
  * ```
6968
7189
  *
6969
- * @see {@link DomainForwardProtocolSet} - The TypeScript type definition
6970
- * @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET} - Array of all keys for this type
7190
+ * @see {@link DomainForwardPatchOp} - The TypeScript type definition
7191
+ * @see {@link KEYS_DOMAIN_FORWARD_PATCH_OP} - Array of all keys for this type
6971
7192
  */
6972
- export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS: keyof DomainForwardProtocolSet = 'redirects';
7193
+ export const KEY_DOMAIN_FORWARD_PATCH_OP_REDIRECT: keyof DomainForwardPatchOp = 'redirect';
7194
+
6973
7195
  /**
6974
- * Updated On
6975
- *
6976
- *
6977
- * @type {string}
6978
- *
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;
7388
+ * const value = domainforwardprotocolset[propertyName];
7389
+ * ```
7390
+ *
7391
+ * @see {@link DomainForwardProtocolSet} - The TypeScript type definition
7392
+ * @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET} - Array of all keys for this type
7393
+ */
7394
+ export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_CREATED_ON: keyof DomainForwardProtocolSet = 'created_on';
7395
+ /**
7396
+ * Redirects
7397
+ *
7398
+ *
7399
+ * @type {array}
7400
+ *
7401
+ *
7402
+ * @remarks
7403
+ * This key constant provides type-safe access to the `redirects` property of DomainForwardProtocolSet objects.
7404
+ * Use this constant when you need to access properties dynamically or ensure type safety.
7405
+ *
7406
+ * @example
7407
+ * ```typescript
7408
+ * // Direct property access
7409
+ * const value = domainforwardprotocolset[KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS];
7410
+ *
7411
+ * // Dynamic property access
7412
+ * const propertyName = KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS;
7413
+ * const value = domainforwardprotocolset[propertyName];
7414
+ * ```
7415
+ *
7416
+ * @see {@link DomainForwardProtocolSet} - The TypeScript type definition
7417
+ * @see {@link KEYS_DOMAIN_FORWARD_PROTOCOL_SET} - Array of all keys for this type
7418
+ */
7419
+ export const KEY_DOMAIN_FORWARD_PROTOCOL_SET_REDIRECTS: keyof DomainForwardProtocolSet = 'redirects';
7420
+ /**
7421
+ * Updated On
7422
+ *
7423
+ *
7424
+ * @type {string}
7425
+ *
6979
7426
  *
6980
7427
  * @remarks
6981
7428
  * This key constant provides type-safe access to the `updated_on` property of DomainForwardProtocolSet objects.
@@ -7022,6 +7469,56 @@ export const KEYS_DOMAIN_FORWARD_PROTOCOL_SET = [
7022
7469
  KEY_DOMAIN_FORWARD_PROTOCOL_SET_UPDATED_ON,
7023
7470
  ] as const satisfies (keyof DomainForwardProtocolSet)[];
7024
7471
 
7472
+ /**
7473
+ * Results
7474
+ *
7475
+ *
7476
+ * @type {array}
7477
+ *
7478
+ *
7479
+ * @remarks
7480
+ * This key constant provides type-safe access to the `results` property of DomainForwardReferrerStats objects.
7481
+ * Use this constant when you need to access properties dynamically or ensure type safety.
7482
+ *
7483
+ * @example
7484
+ * ```typescript
7485
+ * // Direct property access
7486
+ * const value = domainforwardreferrerstats[KEY_DOMAIN_FORWARD_REFERRER_STATS_RESULTS];
7487
+ *
7488
+ * // Dynamic property access
7489
+ * const propertyName = KEY_DOMAIN_FORWARD_REFERRER_STATS_RESULTS;
7490
+ * const value = domainforwardreferrerstats[propertyName];
7491
+ * ```
7492
+ *
7493
+ * @see {@link DomainForwardReferrerStats} - The TypeScript type definition
7494
+ * @see {@link KEYS_DOMAIN_FORWARD_REFERRER_STATS} - Array of all keys for this type
7495
+ */
7496
+ export const KEY_DOMAIN_FORWARD_REFERRER_STATS_RESULTS: keyof DomainForwardReferrerStats = 'results';
7497
+
7498
+ /**
7499
+ * Array of all DomainForwardReferrerStats property keys
7500
+ *
7501
+ * @remarks
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.
7504
+ *
7505
+ * @example
7506
+ * ```typescript
7507
+ * // Iterating through all keys
7508
+ * for (const key of KEYS_DOMAIN_FORWARD_REFERRER_STATS) {
7509
+ * console.log(`Property: ${key}, Value: ${domainforwardreferrerstats[key]}`);
7510
+ * }
7511
+ *
7512
+ * // Validation
7513
+ * const isValidKey = KEYS_DOMAIN_FORWARD_REFERRER_STATS.includes(someKey);
7514
+ * ```
7515
+ *
7516
+ * @see {@link DomainForwardReferrerStats} - The TypeScript type definition
7517
+ */
7518
+ export const KEYS_DOMAIN_FORWARD_REFERRER_STATS = [
7519
+ KEY_DOMAIN_FORWARD_REFERRER_STATS_RESULTS,
7520
+ ] as const satisfies (keyof DomainForwardReferrerStats)[];
7521
+
7025
7522
  /**
7026
7523
  * protocol property
7027
7524
  *
@@ -7210,95 +7707,245 @@ export const KEY_DOMAIN_FORWARD_SET_HOSTNAME: keyof DomainForwardSet = 'hostname
7210
7707
  * @example
7211
7708
  * ```typescript
7212
7709
  * // Direct property access
7213
- * const value = domainforwardset[KEY_DOMAIN_FORWARD_SET_PROTOCOL];
7710
+ * const value = domainforwardset[KEY_DOMAIN_FORWARD_SET_PROTOCOL];
7711
+ *
7712
+ * // Dynamic property access
7713
+ * const propertyName = KEY_DOMAIN_FORWARD_SET_PROTOCOL;
7714
+ * const value = domainforwardset[propertyName];
7715
+ * ```
7716
+ *
7717
+ * @see {@link DomainForwardSet} - The TypeScript type definition
7718
+ * @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
7719
+ */
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
+
7850
+ /**
7851
+ * Results
7852
+ *
7853
+ *
7854
+ * @type {array}
7855
+ *
7856
+ *
7857
+ * @remarks
7858
+ * This key constant provides type-safe access to the `results` property of DomainForwardUserAgentStats objects.
7859
+ * Use this constant when you need to access properties dynamically or ensure type safety.
7860
+ *
7861
+ * @example
7862
+ * ```typescript
7863
+ * // Direct property access
7864
+ * const value = domainforwarduseragentstats[KEY_DOMAIN_FORWARD_USER_AGENT_STATS_RESULTS];
7214
7865
  *
7215
7866
  * // Dynamic property access
7216
- * const propertyName = KEY_DOMAIN_FORWARD_SET_PROTOCOL;
7217
- * const value = domainforwardset[propertyName];
7867
+ * const propertyName = KEY_DOMAIN_FORWARD_USER_AGENT_STATS_RESULTS;
7868
+ * const value = domainforwarduseragentstats[propertyName];
7218
7869
  * ```
7219
7870
  *
7220
- * @see {@link DomainForwardSet} - The TypeScript type definition
7221
- * @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
7871
+ * @see {@link DomainForwardUserAgentStats} - The TypeScript type definition
7872
+ * @see {@link KEYS_DOMAIN_FORWARD_USER_AGENT_STATS} - Array of all keys for this type
7222
7873
  */
7223
- export const KEY_DOMAIN_FORWARD_SET_PROTOCOL: keyof DomainForwardSet = 'protocol';
7874
+ export const KEY_DOMAIN_FORWARD_USER_AGENT_STATS_RESULTS: keyof DomainForwardUserAgentStats = 'results';
7875
+
7224
7876
  /**
7225
- * Redirects
7226
- *
7227
- *
7228
- * @type {array}
7229
- *
7877
+ * Array of all DomainForwardUserAgentStats property keys
7230
7878
  *
7231
7879
  * @remarks
7232
- * This key constant provides type-safe access to the `redirects` property of DomainForwardSet objects.
7233
- * Use this constant when you need to access properties dynamically or ensure type safety.
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.
7234
7882
  *
7235
7883
  * @example
7236
7884
  * ```typescript
7237
- * // Direct property access
7238
- * const value = domainforwardset[KEY_DOMAIN_FORWARD_SET_REDIRECTS];
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
+ * }
7239
7889
  *
7240
- * // Dynamic property access
7241
- * const propertyName = KEY_DOMAIN_FORWARD_SET_REDIRECTS;
7242
- * const value = domainforwardset[propertyName];
7890
+ * // Validation
7891
+ * const isValidKey = KEYS_DOMAIN_FORWARD_USER_AGENT_STATS.includes(someKey);
7243
7892
  * ```
7244
7893
  *
7245
- * @see {@link DomainForwardSet} - The TypeScript type definition
7246
- * @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
7894
+ * @see {@link DomainForwardUserAgentStats} - The TypeScript type definition
7247
7895
  */
7248
- export const KEY_DOMAIN_FORWARD_SET_REDIRECTS: keyof DomainForwardSet = 'redirects';
7896
+ export const KEYS_DOMAIN_FORWARD_USER_AGENT_STATS = [
7897
+ KEY_DOMAIN_FORWARD_USER_AGENT_STATS_RESULTS,
7898
+ ] as const satisfies (keyof DomainForwardUserAgentStats)[];
7899
+
7249
7900
  /**
7250
- * Updated On
7901
+ * Results
7251
7902
  *
7252
7903
  *
7253
- * @type {string}
7904
+ * @type {array}
7254
7905
  *
7255
7906
  *
7256
7907
  * @remarks
7257
- * This key constant provides type-safe access to the `updated_on` property of DomainForwardSet objects.
7908
+ * This key constant provides type-safe access to the `results` property of DomainForwardVisitsByKey objects.
7258
7909
  * Use this constant when you need to access properties dynamically or ensure type safety.
7259
7910
  *
7260
7911
  * @example
7261
7912
  * ```typescript
7262
7913
  * // Direct property access
7263
- * const value = domainforwardset[KEY_DOMAIN_FORWARD_SET_UPDATED_ON];
7914
+ * const value = domainforwardvisitsbykey[KEY_DOMAIN_FORWARD_VISITS_BY_KEY_RESULTS];
7264
7915
  *
7265
7916
  * // Dynamic property access
7266
- * const propertyName = KEY_DOMAIN_FORWARD_SET_UPDATED_ON;
7267
- * const value = domainforwardset[propertyName];
7917
+ * const propertyName = KEY_DOMAIN_FORWARD_VISITS_BY_KEY_RESULTS;
7918
+ * const value = domainforwardvisitsbykey[propertyName];
7268
7919
  * ```
7269
7920
  *
7270
- * @see {@link DomainForwardSet} - The TypeScript type definition
7271
- * @see {@link KEYS_DOMAIN_FORWARD_SET} - Array of all keys for this type
7921
+ * @see {@link DomainForwardVisitsByKey} - The TypeScript type definition
7922
+ * @see {@link KEYS_DOMAIN_FORWARD_VISITS_BY_KEY} - Array of all keys for this type
7272
7923
  */
7273
- export const KEY_DOMAIN_FORWARD_SET_UPDATED_ON: keyof DomainForwardSet = 'updated_on';
7924
+ export const KEY_DOMAIN_FORWARD_VISITS_BY_KEY_RESULTS: keyof DomainForwardVisitsByKey = 'results';
7274
7925
 
7275
7926
  /**
7276
- * Array of all DomainForwardSet property keys
7927
+ * Array of all DomainForwardVisitsByKey property keys
7277
7928
  *
7278
7929
  * @remarks
7279
- * This constant provides a readonly array containing all valid property keys for DomainForwardSet objects.
7930
+ * This constant provides a readonly array containing all valid property keys for DomainForwardVisitsByKey objects.
7280
7931
  * Useful for iteration, validation, and generating dynamic UI components.
7281
7932
  *
7282
7933
  * @example
7283
7934
  * ```typescript
7284
7935
  * // Iterating through all keys
7285
- * for (const key of KEYS_DOMAIN_FORWARD_SET) {
7286
- * console.log(`Property: ${key}, Value: ${domainforwardset[key]}`);
7936
+ * for (const key of KEYS_DOMAIN_FORWARD_VISITS_BY_KEY) {
7937
+ * console.log(`Property: ${key}, Value: ${domainforwardvisitsbykey[key]}`);
7287
7938
  * }
7288
7939
  *
7289
7940
  * // Validation
7290
- * const isValidKey = KEYS_DOMAIN_FORWARD_SET.includes(someKey);
7941
+ * const isValidKey = KEYS_DOMAIN_FORWARD_VISITS_BY_KEY.includes(someKey);
7291
7942
  * ```
7292
7943
  *
7293
- * @see {@link DomainForwardSet} - The TypeScript type definition
7944
+ * @see {@link DomainForwardVisitsByKey} - The TypeScript type definition
7294
7945
  */
7295
- export const KEYS_DOMAIN_FORWARD_SET = [
7296
- KEY_DOMAIN_FORWARD_SET_CREATED_ON,
7297
- KEY_DOMAIN_FORWARD_SET_HOSTNAME,
7298
- KEY_DOMAIN_FORWARD_SET_PROTOCOL,
7299
- KEY_DOMAIN_FORWARD_SET_REDIRECTS,
7300
- KEY_DOMAIN_FORWARD_SET_UPDATED_ON,
7301
- ] 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)[];
7302
7949
 
7303
7950
  /**
7304
7951
  * Domain Forwards
@@ -12304,6 +12951,82 @@ export const KEYS_GENERAL_AVAILABILITY_BASE = [
12304
12951
  KEY_GENERAL_AVAILABILITY_BASE_START_DATE,
12305
12952
  ] as const satisfies (keyof GeneralAvailabilityBase)[];
12306
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
+
12307
13030
  /**
12308
13031
  * Prices
12309
13032
  *
@@ -17995,6 +18718,108 @@ export const KEYS_PERMISSION_SET = [
17995
18718
  KEY_PERMISSION_SET_PERMISSIONS,
17996
18719
  ] as const satisfies (keyof PermissionSet)[];
17997
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
+
17998
18823
  /**
17999
18824
  * Affects
18000
18825
  *
@@ -18599,41 +19424,143 @@ export const KEYS_PUBLIC_AUTH_REQUEST_FORM = [
18599
19424
  * @example
18600
19425
  * ```typescript
18601
19426
  * // Direct property access
18602
- * 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];
18603
19528
  *
18604
19529
  * // Dynamic property access
18605
- * const propertyName = KEY_RDAP_BASE_RDAP_SERVER;
18606
- * const value = rdapbase[propertyName];
19530
+ * const propertyName = KEY_REFERRER_STATS_BUCKET_UNIQUE;
19531
+ * const value = referrerstatsbucket[propertyName];
18607
19532
  * ```
18608
19533
  *
18609
- * @see {@link RdapBase} - The TypeScript type definition
18610
- * @see {@link KEYS_RDAP_BASE} - Array of all keys for this type
19534
+ * @see {@link ReferrerStatsBucket} - The TypeScript type definition
19535
+ * @see {@link KEYS_REFERRER_STATS_BUCKET} - Array of all keys for this type
18611
19536
  */
18612
- export const KEY_RDAP_BASE_RDAP_SERVER: keyof RdapBase = 'rdap_server';
19537
+ export const KEY_REFERRER_STATS_BUCKET_UNIQUE: keyof ReferrerStatsBucket = 'unique';
18613
19538
 
18614
19539
  /**
18615
- * Array of all RdapBase property keys
19540
+ * Array of all ReferrerStatsBucket property keys
18616
19541
  *
18617
19542
  * @remarks
18618
- * This constant provides a readonly array containing all valid property keys for RdapBase objects.
19543
+ * This constant provides a readonly array containing all valid property keys for ReferrerStatsBucket objects.
18619
19544
  * Useful for iteration, validation, and generating dynamic UI components.
18620
19545
  *
18621
19546
  * @example
18622
19547
  * ```typescript
18623
19548
  * // Iterating through all keys
18624
- * for (const key of KEYS_RDAP_BASE) {
18625
- * console.log(`Property: ${key}, Value: ${rdapbase[key]}`);
19549
+ * for (const key of KEYS_REFERRER_STATS_BUCKET) {
19550
+ * console.log(`Property: ${key}, Value: ${referrerstatsbucket[key]}`);
18626
19551
  * }
18627
19552
  *
18628
19553
  * // Validation
18629
- * const isValidKey = KEYS_RDAP_BASE.includes(someKey);
19554
+ * const isValidKey = KEYS_REFERRER_STATS_BUCKET.includes(someKey);
18630
19555
  * ```
18631
19556
  *
18632
- * @see {@link RdapBase} - The TypeScript type definition
19557
+ * @see {@link ReferrerStatsBucket} - The TypeScript type definition
18633
19558
  */
18634
- export const KEYS_RDAP_BASE = [
18635
- KEY_RDAP_BASE_RDAP_SERVER,
18636
- ] as const satisfies (keyof RdapBase)[];
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)[];
18637
19564
 
18638
19565
  /**
18639
19566
  * Prevents
@@ -19542,6 +20469,158 @@ export const KEYS_SPICE_DB_RELATIONSHIP_UPDATE = [
19542
20469
  KEY_SPICE_DB_RELATIONSHIP_UPDATE_REMOVE,
19543
20470
  ] as const satisfies (keyof SpiceDbRelationshipUpdate)[];
19544
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
+
19545
20624
  /**
19546
20625
  * Name
19547
20626
  *
@@ -21278,6 +22357,108 @@ export const KEYS_USER = [
21278
22357
  KEY_USER_USERNAME,
21279
22358
  ] as const satisfies (keyof User)[];
21280
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
+
21281
22462
  /**
21282
22463
  * Key
21283
22464
  *
@@ -23261,6 +24442,108 @@ export const KEYS_VALIDATION_ERROR = [
23261
24442
  KEY_VALIDATION_ERROR_TYPE,
23262
24443
  ] as const satisfies (keyof ValidationError)[];
23263
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
+
23264
24547
  /**
23265
24548
  * Whois Server
23266
24549
  *