@morseai/sdk 0.1.0-beta.4 → 0.1.0-beta.5

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.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  TypeScript SDK for creating and accessing encrypted signals in the MORSE platform.
4
4
 
5
- **Version:** 0.1.0-beta.4 (Beta Release)
5
+ **Version:** 0.1.0-beta.5 (Beta Release)
6
6
 
7
7
  > ⚠️ **Beta Notice**: This is a beta release. The API is stable but may have minor changes before the 1.0.0 release. Please report any issues you encounter.
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morseai/sdk",
3
- "version": "0.1.0-beta.4",
3
+ "version": "0.1.0-beta.5",
4
4
  "description": "MORSE SDK - TypeScript SDK for creating and accessing encrypted signals",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -22,7 +22,8 @@
22
22
  "build": "tsup",
23
23
  "dev": "tsup --watch",
24
24
  "typecheck": "tsc --noEmit",
25
- "prepublishOnly": "npm run build"
25
+ "prepublishOnly": "npm run build",
26
+ "deploy": "powershell -ExecutionPolicy Bypass -File ./publish.ps1"
26
27
  },
27
28
  "keywords": [
28
29
  "morse",
package/CHANGELOG.md DELETED
@@ -1,43 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [0.1.0-beta.4] - 2025-01-XX
9
-
10
- ### Changed
11
- - Updated homepage URL to https://morseai.tech
12
-
13
- ## [0.1.0-beta.3] - 2025-01-XX
14
-
15
- ### Changed
16
- - Updated package name to @morseai/sdk
17
- - Updated repository URL to https://github.com/morseaitech/sdk.git
18
-
19
- ## [0.1.0-beta.1] - 2025-01-XX
20
-
21
- ### Added
22
- - Initial beta release of MORSE SDK
23
- - TypeScript SDK for creating and accessing encrypted signals
24
- - Support for private and shared wallet signals
25
- - X25519 + XChaCha20-Poly1305 encryption for shared signals
26
- - AES-GCM-256 encryption for private signals
27
- - Wallet authentication (browser, private key, custom)
28
- - Automatic encryption/decryption
29
- - Rate limiting support
30
- - Request retry logic
31
- - Comprehensive error handling
32
- - Input validation
33
- - Expiration utilities and constants
34
- - File upload support
35
- - Key certificate management (EIP-712)
36
- - Deterministic key derivation from wallet signatures
37
-
38
- ### Security
39
- - Zero-knowledge architecture (server never sees plaintext)
40
- - One-time access enforcement (signals burned after opening)
41
- - Atomic operations prevent race conditions
42
- - Certificate signature verification prevents key substitution attacks
43
-