@koralabs/kora-labs-common 2.5.4 → 2.6.1

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.
@@ -16,6 +16,7 @@ export type HexStringOrEmpty = HexString | '';
16
16
  */
17
17
  export declare enum AssetNameLabel {
18
18
  LABEL_000 = "00000000",
19
+ LABEL_001 = "00001070",
19
20
  LABEL_100 = "000643b0",
20
21
  LABEL_222 = "000de140",
21
22
  LABEL_333 = "0014df10",
@@ -196,6 +197,22 @@ export interface IPzDatum {
196
197
  [key: string]: string;
197
198
  };
198
199
  }
200
+ export interface ISubHandleSettingsCreatorDefaults extends ICreatorDefaults {
201
+ bg_image: string;
202
+ }
203
+ export interface ISubHandleSettings {
204
+ enabled?: BoolInt;
205
+ tierPricing?: [number, number][];
206
+ enablePz?: BoolInt;
207
+ creatorDefaults?: ISubHandleSettingsCreatorDefaults;
208
+ }
209
+ export interface IVirtualSubHandleSettings extends ISubHandleSettings {
210
+ expires_in_days?: number;
211
+ }
212
+ export interface ISubHandleSettingsDatum {
213
+ nft?: ISubHandleSettings;
214
+ virtual?: IVirtualSubHandleSettings;
215
+ }
199
216
  export interface IHandleFileContent {
200
217
  slot: number;
201
218
  hash: string;
@@ -18,6 +18,7 @@ var Rarity;
18
18
  var AssetNameLabel;
19
19
  (function (AssetNameLabel) {
20
20
  AssetNameLabel["LABEL_000"] = "00000000";
21
+ AssetNameLabel["LABEL_001"] = "00001070";
21
22
  AssetNameLabel["LABEL_100"] = "000643b0";
22
23
  AssetNameLabel["LABEL_222"] = "000de140";
23
24
  AssetNameLabel["LABEL_333"] = "0014df10";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koralabs/kora-labs-common",
3
- "version": "2.5.4",
3
+ "version": "2.6.1",
4
4
  "description": "Kora Labs Common Utilities",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",