@koralabs/kora-labs-common 6.4.10 → 6.4.11
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.
|
@@ -158,12 +158,15 @@ export type INormalizedQueryParams = {
|
|
|
158
158
|
export declare enum IndexNames {
|
|
159
159
|
ADDRESS = "address",
|
|
160
160
|
CHARACTER = "characters",
|
|
161
|
+
DEFAULT_HANDLE = "defaulthandle",
|
|
161
162
|
HANDLE = "handle",
|
|
163
|
+
HANDLE_TYPE = "handle_type",
|
|
162
164
|
HASH_OF_STAKE_KEY_HASH = "hashofstakekeyhash",
|
|
163
165
|
HOLDER = "holder",
|
|
164
|
-
|
|
166
|
+
HOLDER_COUNT = "holdercount",
|
|
165
167
|
LENGTH = "length",
|
|
166
168
|
LISTINGS = "listings",
|
|
169
|
+
MINT = "mint",
|
|
167
170
|
NUMERIC_MODIFIER = "numericmodifiers",
|
|
168
171
|
OG = "og",
|
|
169
172
|
PAYMENT_KEY_HASH = "paymentkeyhashes",
|
|
@@ -171,10 +174,8 @@ export declare enum IndexNames {
|
|
|
171
174
|
RARITY = "rarity",
|
|
172
175
|
SLOT = "slot",
|
|
173
176
|
SUBHANDLE = "subhandle",
|
|
174
|
-
HANDLE_TYPE = "handle_type",
|
|
175
|
-
UTXO_SLOT = "utxo_slot",
|
|
176
177
|
UTXO = "utxo",
|
|
177
|
-
|
|
178
|
+
UTXO_SLOT = "utxo_slot"
|
|
178
179
|
}
|
|
179
180
|
export type CharacterAttribute = 'letters' | 'numbers' | 'special' | 'letters,numbers' | 'numbers,special' | 'letters,special' | 'letters,numbers,special';
|
|
180
181
|
export type NumericModifiersAttribute = 'negative' | 'decimal' | 'negative,decimal' | '';
|
|
@@ -11,12 +11,15 @@ var IndexNames;
|
|
|
11
11
|
(function (IndexNames) {
|
|
12
12
|
IndexNames["ADDRESS"] = "address";
|
|
13
13
|
IndexNames["CHARACTER"] = "characters";
|
|
14
|
+
IndexNames["DEFAULT_HANDLE"] = "defaulthandle";
|
|
14
15
|
IndexNames["HANDLE"] = "handle";
|
|
16
|
+
IndexNames["HANDLE_TYPE"] = "handle_type";
|
|
15
17
|
IndexNames["HASH_OF_STAKE_KEY_HASH"] = "hashofstakekeyhash";
|
|
16
18
|
IndexNames["HOLDER"] = "holder";
|
|
17
|
-
IndexNames["
|
|
19
|
+
IndexNames["HOLDER_COUNT"] = "holdercount";
|
|
18
20
|
IndexNames["LENGTH"] = "length";
|
|
19
21
|
IndexNames["LISTINGS"] = "listings";
|
|
22
|
+
IndexNames["MINT"] = "mint";
|
|
20
23
|
IndexNames["NUMERIC_MODIFIER"] = "numericmodifiers";
|
|
21
24
|
IndexNames["OG"] = "og";
|
|
22
25
|
IndexNames["PAYMENT_KEY_HASH"] = "paymentkeyhashes";
|
|
@@ -24,8 +27,6 @@ var IndexNames;
|
|
|
24
27
|
IndexNames["RARITY"] = "rarity";
|
|
25
28
|
IndexNames["SLOT"] = "slot";
|
|
26
29
|
IndexNames["SUBHANDLE"] = "subhandle";
|
|
27
|
-
IndexNames["HANDLE_TYPE"] = "handle_type";
|
|
28
|
-
IndexNames["UTXO_SLOT"] = "utxo_slot";
|
|
29
30
|
IndexNames["UTXO"] = "utxo";
|
|
30
|
-
IndexNames["
|
|
31
|
+
IndexNames["UTXO_SLOT"] = "utxo_slot";
|
|
31
32
|
})(IndexNames = exports.IndexNames || (exports.IndexNames = {}));
|