@koralabs/kora-labs-common 5.1.5 → 5.1.6

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.
@@ -219,6 +219,7 @@ export interface IPzDatum {
219
219
  migrate_sig_required: BoolInt;
220
220
  original_address?: HexStringOrEmpty;
221
221
  pz_enabled?: BoolInt;
222
+ id_hash?: string;
222
223
  }
223
224
  /**
224
225
  * Comes from handleDatumSchema[2]
@@ -1,4 +1,5 @@
1
1
  import { HandleType, IHandleMetadata, Rarity } from './interfaces';
2
+ import { IDrep } from './interfaces/api';
2
3
  export declare const getRarity: (name: string) => Rarity;
3
4
  export declare const buildCharacters: (name: string) => string;
4
5
  export declare const buildNumericModifiers: (name: string) => string;
@@ -12,4 +13,4 @@ export declare const checkHandlePattern: (handle: string, root?: string) => {
12
13
  valid: boolean;
13
14
  message: string;
14
15
  };
15
- export declare const buildDrep: (address: string, id_hash?: string) => any;
16
+ export declare const buildDrep: (address: string, id_hash?: string) => IDrep | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koralabs/kora-labs-common",
3
- "version": "5.1.5",
3
+ "version": "5.1.6",
4
4
  "description": "Kora Labs Common Utilities",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",