@koralabs/kora-labs-common 5.1.29 → 5.1.31

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.
@@ -112,6 +112,7 @@ export interface SavePersonalizationInput {
112
112
  hex: string;
113
113
  name: string;
114
114
  personalization: IPersonalization;
115
+ policy: string;
115
116
  reference_token: IReferenceToken;
116
117
  personalizationDatum: IPzDatumConvertedUsingSchema | null;
117
118
  metadata: IHandleMetadata | null;
@@ -71,7 +71,11 @@ export interface IPersonalizationPortal {
71
71
  export declare enum ScriptType {
72
72
  PZ_CONTRACT = "pz_contract",
73
73
  SUB_HANDLE_SETTINGS = "sub_handle_settings",
74
- MARKETPLACE_CONTRACT = "marketplace_contract"
74
+ MARKETPLACE_CONTRACT = "marketplace_contract",
75
+ DEMI_MINT = "demi_mint",
76
+ DEMI_MINT_PROXY = "demi_mint_proxy",
77
+ DEMI_MINTING_DATA = "demi_minting_data",
78
+ DEMI_ORDERS = "demi_orders"
75
79
  }
76
80
  export interface ScriptDetails {
77
81
  handle: string;
@@ -14,6 +14,10 @@ var ScriptType;
14
14
  ScriptType["PZ_CONTRACT"] = "pz_contract";
15
15
  ScriptType["SUB_HANDLE_SETTINGS"] = "sub_handle_settings";
16
16
  ScriptType["MARKETPLACE_CONTRACT"] = "marketplace_contract";
17
+ ScriptType["DEMI_MINT"] = "demi_mint";
18
+ ScriptType["DEMI_MINT_PROXY"] = "demi_mint_proxy";
19
+ ScriptType["DEMI_MINTING_DATA"] = "demi_minting_data";
20
+ ScriptType["DEMI_ORDERS"] = "demi_orders";
17
21
  })(ScriptType = exports.ScriptType || (exports.ScriptType = {}));
18
22
  var HandleType;
19
23
  (function (HandleType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koralabs/kora-labs-common",
3
- "version": "5.1.29",
3
+ "version": "5.1.31",
4
4
  "description": "Kora Labs Common Utilities",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  export { designerSchema } from './schema/designer';
3
4
  export { handleDatumSchema } from './schema/handleData';
4
5
  export { marketplaceDatumSchema } from './schema/marketplaceDatum';