@morseai/sdk 0.1.0-beta.3 → 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.3 (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.3",
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",
@@ -45,7 +46,7 @@
45
46
  "type": "git",
46
47
  "url": "https://github.com/morseaitech/sdk.git"
47
48
  },
48
- "homepage": "https://morse.app",
49
+ "homepage": "https://morseai.tech",
49
50
  "bugs": {
50
51
  "url": "https://github.com/morseaitech/sdk/issues"
51
52
  },
package/CHANGELOG.md DELETED
@@ -1,38 +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.3] - 2025-01-XX
9
-
10
- ### Changed
11
- - Updated package name to @morseai/sdk
12
- - Updated repository URL to https://github.com/morseaitech/sdk.git
13
-
14
- ## [0.1.0-beta.1] - 2025-01-XX
15
-
16
- ### Added
17
- - Initial beta release of MORSE SDK
18
- - TypeScript SDK for creating and accessing encrypted signals
19
- - Support for private and shared wallet signals
20
- - X25519 + XChaCha20-Poly1305 encryption for shared signals
21
- - AES-GCM-256 encryption for private signals
22
- - Wallet authentication (browser, private key, custom)
23
- - Automatic encryption/decryption
24
- - Rate limiting support
25
- - Request retry logic
26
- - Comprehensive error handling
27
- - Input validation
28
- - Expiration utilities and constants
29
- - File upload support
30
- - Key certificate management (EIP-712)
31
- - Deterministic key derivation from wallet signatures
32
-
33
- ### Security
34
- - Zero-knowledge architecture (server never sees plaintext)
35
- - One-time access enforcement (signals burned after opening)
36
- - Atomic operations prevent race conditions
37
- - Certificate signature verification prevents key substitution attacks
38
-