@koralabs/kora-labs-common 4.1.6 → 4.2.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.
@@ -199,7 +199,7 @@ export interface IPzDatum {
199
199
  migrate_sig_required: BoolInt;
200
200
  original_address?: HexStringOrEmpty;
201
201
  }
202
- export interface ISubHandleSettingsCreatorDefaults extends ICreatorDefaults {
202
+ export interface ISubHandleSettingsDefaultStyles extends ICreatorDefaults {
203
203
  bg_image?: string;
204
204
  expires_slot?: number;
205
205
  }
@@ -233,7 +233,8 @@ export interface ISubHandleTypeSettings {
233
233
  public_minting_enabled?: boolean;
234
234
  pz_enabled?: boolean;
235
235
  tier_pricing?: [number, number][];
236
- creator_defaults?: ISubHandleSettingsCreatorDefaults;
236
+ default_styles?: ISubHandleSettingsDefaultStyles;
237
+ save_original_address?: boolean;
237
238
  }
238
239
  export interface ISubHandleSettings {
239
240
  nft?: ISubHandleTypeSettings;
@@ -252,7 +253,8 @@ export type ISubHandleSettingsItemDatumStruct = [
252
253
  number,
253
254
  number
254
255
  ][],
255
- ISubHandleSettingsCreatorDefaults
256
+ ISubHandleSettingsDefaultStyles,
257
+ BoolInt
256
258
  ];
257
259
  /**
258
260
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koralabs/kora-labs-common",
3
- "version": "4.1.6",
3
+ "version": "4.2.0",
4
4
  "description": "Kora Labs Common Utilities",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",