@hraness/peopleblade 0.1.0 → 0.1.1
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 +16 -6
- package/THIRD_PARTY_NOTICES.md +3 -3
- package/dist/migrations/015_phone_identity_normalization.sql +15 -0
- package/dist/peopleblade.js +9136 -4698
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ and sync are optional.
|
|
|
13
13
|
## Install
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
bun add --global @hraness/peopleblade@0.1.
|
|
16
|
+
bun add --global @hraness/peopleblade@0.1.1
|
|
17
17
|
peopleblade --version
|
|
18
18
|
peopleblade init
|
|
19
19
|
peopleblade stats --json
|
|
@@ -41,13 +41,23 @@ The package does not install Wrench, browser automation, KB, native model runtim
|
|
|
41
41
|
or provider credentials. Beeper, Google, and WhatsApp live sync commands delegate
|
|
42
42
|
through a separately reviewed `wrench` executable on `PATH` (or the absolute
|
|
43
43
|
`PEOPLEBLADE_WRENCH_EXECUTABLE` path). PeopleBlade bundles only the pinned Wrench
|
|
44
|
-
0.
|
|
44
|
+
0.16.7 client validators needed to fence requests and receipts; it does not bundle
|
|
45
45
|
or silently download Wrench's execution runtime.
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
47
|
+
PeopleBlade 0.1.1 contains the reviewed Wrench-backed Beeper, Google, and WhatsApp
|
|
48
|
+
live sync commands. Running them requires the separately installed public
|
|
49
|
+
`@hraness/wrench` 0.16.7 package. Beeper support is bounded to account-aware
|
|
50
|
+
`contacts.list@3` reads, `contacts.search@1`, `messaging.search@2`, and the separate
|
|
51
|
+
body-free interaction exporter. `contacts.search@1` executes the official Beeper
|
|
52
|
+
CLI 0.6.2 executable pinned by Wrench; `contacts.list@3` and `messaging.search@2`
|
|
53
|
+
use Wrench's bounded Desktop-loopback read paths. The exporter is macOS arm64 only
|
|
54
|
+
and reports lower-bound interaction counts from complete one-to-one conversations
|
|
55
|
+
only. See
|
|
56
|
+
[peopleblade.com/sources](https://peopleblade.com/sources) for the complete provider
|
|
57
|
+
guide. PeopleBlade calls no
|
|
58
|
+
Beeper interface directly and exposes none of Wrench's Beeper send or action
|
|
59
|
+
operations. Archive imports, Apple Contacts, iMessage, notes, identity review,
|
|
60
|
+
backups, and optional PeopleBlade cloud commands do not require Wrench.
|
|
51
61
|
|
|
52
62
|
## Privacy boundary
|
|
53
63
|
|
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# Third-party notices
|
|
2
2
|
|
|
3
3
|
The PeopleBlade CLI bundle includes reviewed client-boundary code from
|
|
4
|
-
`@hraness/wrench` 0.
|
|
5
|
-
`
|
|
6
|
-
from `@hraness/message-like-me` 0.
|
|
4
|
+
`@hraness/wrench` 0.16.7 (commit
|
|
5
|
+
`a2b321081335ac28e5df0ccbb67ebea0424d49f5`) and message-bundle contract code
|
|
6
|
+
from `@hraness/message-like-me` 0.7.0. Those portions are provided under the
|
|
7
7
|
following license. The PeopleBlade CLI package has its own MIT grant in
|
|
8
8
|
`LICENSE`; this notice preserves the attribution for the bundled portions.
|
|
9
9
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
PRAGMA foreign_keys = ON;
|
|
2
|
+
|
|
3
|
+
-- Schema hook for one-shot application-layer phone identity renormalization.
|
|
4
|
+
-- initializeLocalDatabase / rolodex import rewrite contact_methods.normalized_value
|
|
5
|
+
-- with normalizePhoneIdentity and record completion here. Duplicate
|
|
6
|
+
-- (person_id,kind,normalized_value,label) rows are deactivated, not deleted.
|
|
7
|
+
CREATE TABLE phone_identity_renormalization (
|
|
8
|
+
singleton INTEGER PRIMARY KEY CHECK(singleton = 1),
|
|
9
|
+
algorithm_version TEXT NOT NULL CHECK(length(algorithm_version) BETWEEN 1 AND 64),
|
|
10
|
+
applied_at TEXT NOT NULL,
|
|
11
|
+
methods_scanned INTEGER NOT NULL CHECK(methods_scanned >= 0),
|
|
12
|
+
methods_updated INTEGER NOT NULL CHECK(methods_updated >= 0),
|
|
13
|
+
methods_deactivated INTEGER NOT NULL CHECK(methods_deactivated >= 0),
|
|
14
|
+
methods_inserted INTEGER NOT NULL CHECK(methods_inserted >= 0)
|
|
15
|
+
) STRICT;
|