@koralabs/kora-labs-common 4.3.2 → 4.3.3

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.
@@ -134,7 +134,7 @@ export interface IHandle {
134
134
  policy?: string;
135
135
  handle_type: HandleType;
136
136
  virtual?: {
137
- expires_slot: number;
137
+ expires_time: number;
138
138
  public_mint: boolean;
139
139
  };
140
140
  original_address?: string;
@@ -185,7 +185,7 @@ export interface IHandleMetadata {
185
185
  }
186
186
  export interface IPzDatum {
187
187
  virtual?: {
188
- expires_slot: number;
188
+ expires_time: number;
189
189
  public_mint: BoolInt;
190
190
  };
191
191
  resolved_addresses?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koralabs/kora-labs-common",
3
- "version": "4.3.2",
3
+ "version": "4.3.3",
4
4
  "description": "Kora Labs Common Utilities",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -30,7 +30,7 @@ export declare const handleDatumSchema: {
30
30
  nsfw: string;
31
31
  svg_version: string;
32
32
  virtual: {
33
- expires_slot: string;
33
+ expires_time: string;
34
34
  public_mint: string;
35
35
  };
36
36
  original_address: string;
@@ -33,7 +33,7 @@ exports.handleDatumSchema = {
33
33
  nsfw: 'bool',
34
34
  svg_version: 'string',
35
35
  virtual: {
36
- expires_slot: 'number',
36
+ expires_time: 'number',
37
37
  public_mint: 'bool'
38
38
  },
39
39
  original_address: 'hex'