personal-data-wallet-sdk
Version:
TypeScript SDK for Personal Data Wallet - Decentralized memory system with AI embeddings, HNSW vector search, SEAL encryption and Walrus storage
14 lines (12 loc) • 523 B
text/typescript
/**
* Core TypeScript types for Personal Data Wallet SDK
*
* @deprecated This module is deprecated. Import from '@personal-data-wallet/sdk/core/types' instead.
* This file now re-exports from the core module for backward compatibility.
*
* Migration guide:
* - Old: import { PDWConfig } from '@personal-data-wallet/sdk/types'
* - New: import { PDWConfig } from '@personal-data-wallet/sdk/core/types'
*/
// Re-export all types from core for backward compatibility
export * from '../core/types/index';