MindPeeker Logo
Developers

Changelog

Version history and updates for MindPeeker developer platform

Version 2.4.0 - January 2025

🚀 New Features

Enhanced Remote Viewing Capabilities

  • Multi-modal Sessions: Now support combined visual, kinesthetic, and auditory modalities in a single session
  • Real-time Collaboration: Multiple analysts can work on the same session simultaneously
  • Advanced Targeting: New geospatial targeting with coordinate precision up to 1 meter
  • Session Templates: Pre-configured session templates for common use cases (missing persons, archaeology, business intelligence)

AI-Powered Analysis

  • Automated Pattern Recognition: AI algorithms identify patterns in psychic data across multiple sessions
  • Confidence Scoring: Enhanced confidence scoring with statistical validation
  • Cross-Reference Analysis: Automatic cross-referencing with historical data and known cases

Enhanced Dowsing Features

  • 3D Dowsing Charts: Interactive 3D visualization of dowsing results
  • Temporal Dowsing: Query across different time periods with temporal accuracy indicators
  • Multi-Query Batch Processing: Process multiple dowsing queries simultaneously

🔧 API Updates

New Endpoints

POST /v2/sessions/collaborative
POST /v2/analysis/pattern-recognition
POST /v2/dowsing/batch
GET /v2/sessions/templates
POST /v2/sessions/{id}/merge

Enhanced Response Format

{
  "session_id": "sess_123456789",
  "status": "completed",
  "confidence_score": 0.92,
  "statistical_validation": {
    "p_value": 0.001,
    "confidence_interval": [0.88, 0.96],
    "sample_size": 150
  },
  "collaborative_insights": [
    {
      "analyst_id": "analyst_456",
      "contribution_weight": 0.35,
      "key_insights": ["urban environment", "water proximity"]
    }
  ]
}

📊 Performance Improvements

  • 50% faster session processing through optimized neural network algorithms
  • Reduced latency with new edge computing locations in Asia and South America
  • Improved accuracy with enhanced training datasets (15% improvement in location accuracy)

🛠️ Developer Tools

CLI Enhancements

mindpeeker sessions collaborative create --template missing_person
mindpeeker sessions collaborative invite --analyst analyst_456 --role lead

mindpeeker dowsing batch --file queries.json --parallel 5

mindpeeker analysis patterns --session-ids sess_1,sess_2,sess_3

SDK Updates

  • Python SDK v2.4.0: Added async support for all endpoints
  • JavaScript SDK v1.8.0: React hooks for collaborative sessions
  • Java SDK v1.5.0: Spring Boot starter with auto-configuration
  • Go SDK v1.2.0: Context-aware request handling

🔒 Security Enhancements

  • End-to-end encryption for all session data
  • Enhanced audit logging with immutable audit trails
  • Zero-knowledge architecture for sensitive investigations
  • Biometric authentication support for enterprise accounts

📚 Documentation

  • Interactive API explorer with live testing capabilities
  • Code examples for all new features
  • Migration guide from v2.3 to v2.4
  • Best practices guide for collaborative sessions

Version 2.3.0 - November 2024

🚀 New Features

Advanced Analytics Dashboard

  • Real-time metrics: Live monitoring of session performance and accuracy
  • Custom reports: Automated report generation with customizable templates
  • Trend analysis: Long-term accuracy tracking and improvement recommendations
  • Comparative analysis: Compare performance across different analysts and modalities

Enhanced Webhook System

  • Event filtering: Subscribe to specific event types with advanced filtering
  • Retry policies: Configurable retry strategies with exponential backoff
  • Webhook authentication: Support for OAuth 2.0 and custom authentication
  • Event replay: Replay missed webhook events from the last 7 days

Mobile SDK

  • React Native SDK: Full-featured mobile SDK for iOS and Android
  • Offline capabilities: Cache sessions and sync when connection restored
  • Push notifications: Real-time notifications for session completion
  • Biometric security: Touch ID/Face ID authentication for mobile apps

🔧 API Updates

New Endpoints

GET /v2/analytics/dashboard
POST /v2/reports/generate
GET /v2/webhooks/events/replay
POST /v2/mobile/sessions/create

Enhanced Error Handling

{
  "error": {
    "code": "VALIDATION_ERROR",
    "message": "Invalid session parameters",
    "details": {
      "field": "duration_minutes",
      "issue": "Value must be between 5 and 180",
      "suggested_value": 30
    },
    "request_id": "req_123456789",
    "help_url": "https://docs.mindpeeker.com/errors/validation"
  }
}

📊 Performance Improvements

  • 30% faster API response times through database optimization
  • Reduced memory usage by 40% with improved data structures
  • Enhanced caching with intelligent cache invalidation
  • Better load balancing across global infrastructure

🛠️ Developer Tools

Testing Framework

// New testing utilities
import { MindPeekerTestClient } from '@mindpeeker/testing';

const testClient = new MindPeekerTestClient({
  mockResponses: true,
  latencySimulation: true,
  errorSimulation: true
});

// Test with simulated network conditions
await testClient.simulateLatency(1000); // 1 second delay
await testClient.simulateError('rate_limit', 0.1); // 10% error rate

Debug Mode

mindpeeker config set debug true

mindpeeker sessions create --debug --target "Test session"

🔒 Security Enhancements

  • API key rotation: Automated key rotation with zero downtime
  • IP whitelisting: Enhanced IP-based access control
  • Request signing: HMAC-SHA256 request signing for additional security
  • Audit logs: Comprehensive audit logging with 7-year retention

Version 2.2.0 - September 2024

🚀 New Features

Historical Analysis Engine

  • Pattern recognition: AI-powered pattern detection across historical sessions
  • Success prediction: Predict likelihood of success based on historical data
  • Similarity matching: Find similar cases from the database of 10,000+ historical sessions
  • Trend identification: Identify emerging patterns and trends in psychic intelligence

Enterprise Features

  • Multi-tenant architecture: Support for multiple organizations within a single account
  • Role-based access control: Granular permissions for different user roles
  • SSO integration: SAML and OAuth 2.0 integration for enterprise authentication
  • Compliance reporting: Automated compliance reports for GDPR, HIPAA, and other regulations

Advanced Dowsing Capabilities

  • Multi-frequency dowsing: Support for different energy frequencies and wavelengths
  • Geographic heat maps: Visual representation of dowsing results over geographic areas
  • Temporal analysis: Analyze changes in energy patterns over time
  • Comparative dowsing: Compare results across different locations and time periods

🔧 API Updates

New Endpoints

GET /v2/history/patterns
POST /v2/history/similarity-search
GET /v2/enterprise/organizations
POST /v2/dowsing/heatmap
GET /v2/dowsing/temporal-analysis

Enhanced Pagination

{
  "data": [...],
  "pagination": {
    "page": 1,
    "per_page": 20,
    "total": 156,
    "total_pages": 8,
    "has_next": true,
    "has_prev": false,
    "next_cursor": "eyJpZCI6IjEyMyJ9"
  }
}

📊 Performance Improvements

  • 25% faster session processing through algorithm optimization
  • Improved accuracy with enhanced training datasets
  • Better scalability with horizontal scaling support
  • Reduced costs through optimized resource utilization

🛠️ Developer Tools

Configuration Management

project:
  name: "my-psychic-app"
  version: "1.0.0"

environments:
  development:
    api_key: "${MINDPEEKER_DEV_API_KEY}"
    api_url: "https://dev-api.mindpeeker.com/v2"
  
  production:
    api_key: "${MINDPEEKER_PROD_API_KEY}"
    api_url: "https://api.mindpeeker.com/v2"
    retry_attempts: 3
    timeout: 30000

features:
  webhooks: true
  analytics: true
  historical_analysis: true

Environment Management

mindpeeker env use development
mindpeeker env use production

mindpeeker sessions create --env development

🔒 Security Enhancements

  • Zero-trust architecture: Implement zero-trust security model
  • Enhanced monitoring: Real-time security monitoring and alerting
  • Data encryption: Client-side encryption for sensitive data
  • Access logs: Detailed access logging with IP geolocation

Version 2.1.0 - July 2024

🚀 New Features

Real-time Collaboration

  • Live session sharing: Share sessions with team members in real-time
  • Collaborative annotations: Add notes and insights to shared sessions
  • Role-based permissions: Different permission levels for viewers, editors, and admins
  • Activity feeds: Real-time activity feeds showing session updates and team actions

Advanced Visualization

  • 3D coordinate visualization: Interactive 3D maps for location-based results
  • Timeline visualization: Visual representation of temporal data and predictions
  • Confidence heat maps: Visual representation of confidence levels across geographic areas
  • Comparative charts: Side-by-side comparison of multiple sessions or analyses

Enhanced Mobile Support

  • Progressive Web App: PWA support for offline functionality
  • Touch gestures: Intuitive touch gestures for mobile interaction
  • Responsive design: Optimized UI for all screen sizes
  • Push notifications: Native push notifications for session updates

🔧 API Updates

WebSocket Support

// Real-time session updates
const ws = new WebSocket('wss://api.mindpeeker.com/v2/sessions/ws');

ws.onmessage = (event) => {
  const data = JSON.parse(event.data);
  
  switch (data.type) {
    case 'session.progress':
      updateProgressBar(data.progress);
      break;
    case 'session.completed':
      displayResults(data.results);
      break;
    case 'session.error':
      handleError(data.error);
      break;
  }
};

Enhanced Filtering

GET /v2/sessions?status=completed&confidence_score>0.8&created_after=2024-07-01&analyst_id=analyst_456

📊 Performance Improvements

  • 40% faster WebSocket connections with optimized message handling
  • Improved mobile performance with reduced bundle sizes
  • Better caching with service worker support
  • Enhanced offline capabilities with intelligent sync

🛠️ Developer Tools

Mobile Development Tools

mindpeeker mobile init --platform react-native
mindpeeker mobile build --platform ios
mindpeeker mobile test --platform android

mindpeeker mobile test-device --device-id iPhone-12

Performance Profiling

mindpeeker profile --endpoint sessions/create --iterations 100

mindpeeker profile memory --duration 300

🔒 Security Enhancements

  • Device authentication: Device-based authentication for mobile apps
  • Biometric integration: Support for fingerprint and face recognition
  • Certificate pinning: SSL certificate pinning for enhanced security
  • App integrity checks: Verify app integrity before processing requests

Version 2.0.0 - May 2024

🚀 Major Release Highlights

Complete Platform Redesign

  • New API architecture: RESTful API with GraphQL support
  • Enhanced performance: 3x faster processing with new neural network architecture
  • Improved accuracy: 20% improvement in prediction accuracy
  • Better scalability: Support for 10x more concurrent sessions

New Modalities

  • Automatic Writing: Text-based psychic communication
  • Precognition: Future event prediction with confidence intervals
  • Retrocognition: Past event analysis with temporal accuracy
  • Clairvoyance: Remote viewing with enhanced visual clarity

Enterprise-Grade Features

  • Multi-region deployment: Deploy in multiple geographic regions
  • High availability: 99.9% uptime SLA with automatic failover
  • Advanced analytics: Comprehensive analytics and reporting
  • Custom integrations: API-first architecture for custom integrations

🔧 Breaking Changes

API Endpoint Changes

POST /v1/sessions
GET /v1/sessions/:id

POST /v2/sessions/create
GET /v2/sessions/{id}
POST /v2/sessions/{id}/results

Authentication Changes

// Old authentication (deprecated)
const client = new MindPeekerClient('api_key_here');

// New authentication
const client = new MindPeekerClient({
  apiKey: 'api_key_here',
  apiVersion: 'v2',
  environment: 'production'
});

📊 Migration Guide

Automatic Migration Tool

mindpeeker migrate --from-version 1.0 --to-version 2.0

mindpeeker migrate validate

Manual Migration Steps

  1. Update API endpoints to v2 format
  2. Update authentication method
  3. Migrate session data format
  4. Update webhook handlers
  5. Test all integrations

🛠️ Developer Tools

Migration Assistant

import { MigrationAssistant } from '@mindpeeker/migration';

const assistant = new MigrationAssistant({
  fromVersion: '1.0',
  toVersion: '2.0',
  autoFix: true
});

// Migrate code automatically
const migratedCode = await assistant.migrateFile('./src/sessions.js');

Compatibility Checker

mindpeeker compatibility check --version 2.0

mindpeeker compatibility recommendations

Version 1.5.0 - March 2024

🚀 New Features

Enhanced Dowsing

  • Multi-point dowsing: Query multiple locations simultaneously
  • Energy mapping: Map energy fields and ley lines
  • Depth analysis: Determine depth of underground features
  • Material identification: Identify materials and compositions

Improved Accuracy

  • Statistical validation: Statistical significance testing for results
  • Confidence intervals: Mathematical confidence intervals for predictions
  • Cross-validation: Cross-reference results with multiple analysts
  • Error estimation: Quantify and report potential error margins

🔧 API Updates

New Dowsing Endpoints

POST /v1/dowsing/multi-point
POST /v1/dowsing/energy-map
POST /v1/dowsing/depth-analysis
POST /v1/dowsing/material-identification

Enhanced Response Format

{
  "query_id": "dowse_123456789",
  "result": {
    "locations": [
      {
        "coordinates": { "lat": 40.7128, "lng": -74.0060 },
        "confidence": 0.92,
        "confidence_interval": [0.88, 0.96],
        "energy_signature": "high_positive",
        "depth_meters": 15.5,
        "material_composition": ["iron", "copper", "quartz"]
      }
    ],
    "statistical_significance": {
      "p_value": 0.001,
      "effect_size": 0.85,
      "sample_size": 50
    }
  }
}

📊 Performance Improvements

  • 25% faster dowsing queries with optimized algorithms
  • Improved accuracy with enhanced training datasets
  • Better error handling with detailed error messages
  • Enhanced caching for frequently accessed data

Version 1.4.0 - January 2024

🚀 New Features

Webhook System

  • Real-time notifications: Instant notifications for session completion
  • Event filtering: Subscribe to specific event types
  • Retry logic: Automatic retry with exponential backoff
  • Signature verification: Secure webhook signature verification

Batch Processing

  • Bulk session creation: Create multiple sessions simultaneously
  • Batch analysis: Analyze multiple targets in one request
  • Parallel processing: Process multiple requests in parallel
  • Progress tracking: Track progress of batch operations

🔧 API Updates

Webhook Endpoints

POST /v1/webhooks
GET /v1/webhooks
PUT /v1/webhooks/{id}
DELETE /v1/webhooks/{id}
POST /v1/webhooks/{id}/test

Batch Processing Endpoints

POST /v1/batch/sessions
POST /v1/batch/analysis
GET /v1/batch/{batch_id}/status
GET /v1/batch/{batch_id}/results

🛠️ Developer Tools

CLI Webhook Commands

mindpeeker webhooks create --url https://example.com/webhook
mindpeeker webhooks list
mindpeeker webhooks test webhook_123

mindpeeker batch create --file sessions.json
mindpeeker batch status batch_456

Version 1.3.0 - November 2023

🚀 New Features

Historical Database

  • 10,000+ historical sessions: Access to extensive historical database
  • Pattern matching: Find similar historical cases
  • Success rate analysis: Analyze success rates by modality and target type
  • Trend identification: Identify patterns and trends in psychic data

Enhanced Analytics

  • Performance metrics: Detailed performance analytics
  • Accuracy tracking: Track accuracy over time
  • Comparative analysis: Compare performance across different parameters
  • Predictive insights: AI-powered predictive analytics

🔧 API Updates

Historical Endpoints

GET /v1/history/search
GET /v1/history/similar
GET /v1/history/analytics
GET /v1/history/trends

📊 Performance Improvements

  • 30% faster search with optimized indexing
  • Improved relevance with better search algorithms
  • Enhanced filtering with advanced filter options
  • Better pagination with cursor-based pagination

Version 1.2.0 - September 2023

🚀 New Features

Analysis Engine

  • Comprehensive analysis: Deep analysis of psychic data
  • Pattern recognition: AI-powered pattern detection
  • Anomaly detection: Identify unusual patterns and anomalies
  • Predictive modeling: Predict future outcomes based on patterns

Enhanced Security

  • API key rotation: Rotate API keys without downtime
  • IP whitelisting: Restrict access by IP address
  • Rate limiting: Advanced rate limiting with burst protection
  • Audit logging: Comprehensive audit trail

🔧 API Updates

Analysis Endpoints

POST /v1/analysis/submit
GET /v1/analysis/{id}/results
POST /v1/analysis/batch
GET /v1/analytics/performance

🔒 Security Enhancements

  • Enhanced authentication: Multi-factor authentication support
  • Data encryption: End-to-end encryption for sensitive data
  • Access controls: Granular access control permissions
  • Compliance features: GDPR and HIPAA compliance features

Version 1.1.0 - July 2023

🚀 New Features

Dowsing Integration

  • Dowsing queries: Support for traditional dowsing techniques
  • Chart analysis: Analyze dowsing charts and pendulum movements
  • Location finding: Find specific locations and objects
  • Energy detection: Detect and analyze energy fields

SDK Releases

  • Python SDK: Official Python SDK
  • JavaScript SDK: Official JavaScript/Node.js SDK
  • Java SDK: Official Java SDK
  • Go SDK: Official Go SDK

🔧 API Updates

Dowsing Endpoints

POST /v1/dowsing/query
POST /v1/dowsing/chart-analysis
POST /v1/dowsing/location-finding
POST /v1/dowsing/energy-detection

🛠️ Developer Tools

CLI Release

npm install -g @mindpeeker/cli

mindpeeker auth login
mindpeeker sessions create
mindpeeker dowsing query

Version 1.0.0 - May 2023

🚀 Initial Release

Core Features

  • Remote Viewing: Basic remote viewing capabilities
  • Session Management: Create and manage psychic sessions
  • Results API: Retrieve session results
  • Basic Authentication: API key authentication

API Endpoints

POST /v1/sessions
GET /v1/sessions/{id}
GET /v1/sessions/{id}/results
GET /v1/sessions

Platform Capabilities

  • Single modality: Visual remote viewing only
  • Basic accuracy: Standard accuracy levels
  • Limited scale: Support for basic usage levels
  • Simple integration: Easy integration with existing systems

📚 Initial Documentation

  • API reference: Complete API documentation
  • Getting started: Quick start guide
  • SDK documentation: Basic SDK documentation
  • Examples: Code examples and tutorials

Upcoming Releases

Version 2.5.0 - March 2025 (Planned)

Expected Features

  • Quantum-enhanced processing: Quantum computing integration for enhanced accuracy
  • AR/VR visualization: Augmented and virtual reality visualization tools
  • Advanced AI integration: GPT-5 and beyond integration for enhanced analysis
  • Blockchain verification: Blockchain-based verification of psychic data

Platform Improvements

  • Global edge network: Enhanced global infrastructure
  • Real-time translation: Multi-language support with real-time translation
  • Advanced analytics: Machine learning-powered predictive analytics
  • Enhanced mobile: Native mobile apps with offline capabilities

Version 3.0.0 - June 2025 (Planned)

Major Platform Evolution

  • Next-generation architecture: Complete platform redesign
  • Advanced modalities: New psychic modalities and techniques
  • Enterprise features: Advanced enterprise-grade features
  • Global expansion: Expanded global presence and capabilities

Migration Timeline

Deprecated Versions

  • Version 1.x: Deprecated December 2024
  • Version 2.0-2.2: Deprecated June 2025

Support Schedule

  • Version 2.3: Supported until December 2025
  • Version 2.4: Supported until June 2026
  • Version 2.5+: Latest supported versions

Migration Assistance

  • Automatic migration tools: Available for all major versions
  • Migration support: Dedicated migration support team
  • Documentation: Comprehensive migration guides
  • Testing tools: Migration testing and validation tools

Security Updates

Recent Security Patches

  • January 2025: Enhanced webhook signature verification
  • November 2024: Improved API key rotation
  • September 2024: Enhanced data encryption
  • July 2024: Advanced rate limiting protection

Security Best Practices

  • Regular updates: Keep SDKs and dependencies updated
  • Security monitoring: Monitor security advisories
  • Access controls: Implement proper access controls
  • Data protection: Protect sensitive data appropriately

Need Help?

Migration Support

General Support