@koralabs/kora-labs-common 6.1.4 → 6.1.5

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.
@@ -93,6 +93,7 @@ export interface IGetAllQueryParams extends IHandleSearchParams {
93
93
  page?: string;
94
94
  sort?: Sort;
95
95
  slot_number?: string;
96
+ minting_type?: 'nft' | 'virtual';
96
97
  type?: 'bech32stake' | 'holder' | 'stakekeyhash' | 'assetname' | 'handlehex' | 'paymentkeyhash' | 'bech32address' | 'hexaddress';
97
98
  }
98
99
  export type ISearchBody = string[];
@@ -13,6 +13,7 @@ export interface IHandlesProvider {
13
13
  setHandle: (key: string, value: StoredHandle) => void;
14
14
  removeHandle: (handleName: string) => void;
15
15
  getIndex: (index: IndexNames) => Map<string | number, Set<string> | Holder | ISlotHistory | StoredHandle>;
16
+ getKeysFromIndex: (index: IndexNames) => (string | number)[];
16
17
  getValueFromIndex: (index: IndexNames, key: string | number) => Set<string> | Holder | ISlotHistory | StoredHandle | undefined;
17
18
  setValueOnIndex: (index: IndexNames, key: string | number, value: Set<string> | Holder | ISlotHistory | StoredHandle) => void;
18
19
  removeKeyFromIndex: (index: IndexNames, key: string | number) => void;
@@ -8,7 +8,6 @@ export declare class HandleSearchModel implements IHandleSearchInput {
8
8
  holder_address?: string;
9
9
  personalized?: boolean;
10
10
  handle_type?: string;
11
- public_subhandles?: boolean;
12
11
  og?: 'true' | 'false';
13
12
  handles?: string[];
14
13
  constructor(input?: IHandleSearchInput);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koralabs/kora-labs-common",
3
- "version": "6.1.4",
3
+ "version": "6.1.5",
4
4
  "description": "Kora Labs Common Utilities",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",