@honeypot-run/core
Advanced tools
Comparing version 0.1.2 to 0.1.3
import { honeypot } from "./Honeypot"; | ||
export type IdentityType = "account" | "email" | "web3_wallet"; | ||
export type IdentityType = "account" | "email" | "merchant_id" | "partner_id" | "web3_wallet"; | ||
export interface IHoneypot { | ||
@@ -4,0 +4,0 @@ identify(id: string, props?: Record<string, any> | null, type?: IdentityType | null): Promise<void>; |
@@ -5,3 +5,3 @@ { | ||
"author": "https://honeypot.run", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"license": "BUSL-1.1", | ||
@@ -37,3 +37,3 @@ "keywords": [ | ||
"build": "npm run test && tsc", | ||
"build-api": "npm run test && esbuild src/index.js --bundle --minify --outfile=../../../honeypot-fastapi/static/js-template.js", | ||
"build-api": "npm run update-version && npm run test && esbuild src/index.js --bundle --minify --outfile=../../../honeypot-fastapi/static/js-template.js", | ||
"build-worker": "esbuild ./creepjs/src/creep_worker.js --bundle --minify --outfile=../../../honeypot-fastapi/static/js-worker.js", | ||
@@ -44,3 +44,3 @@ "test": "jest" | ||
"devDependencies": { | ||
"@fingerprintjs/botd": "^1.3.1", | ||
"@fingerprintjs/botd": "1.7.0", | ||
"@fingerprintjs/fingerprintjs-pro": "^3.8.6", | ||
@@ -47,0 +47,0 @@ "axios": "^1.6.2", |
7449